Index: branches/ErmaC/Enoch/version =================================================================== --- branches/ErmaC/Enoch/version (revision 2456) +++ branches/ErmaC/Enoch/version (revision 2457) @@ -1 +1 @@ -2.2svn +2.3svn Index: branches/ErmaC/Enoch/i386/libsaio/asm.s =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/asm.s (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/asm.s (revision 2457) @@ -522,3 +522,30 @@ ret #endif + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +// computeRand() +// +// Pike R. Alpha - 12 October 2014 +// + +LABEL(_computeRand) + pushl %edx + mov $0xa, %edx + +Repeat: + rdrand %eax + jae Ok + jmp Exit + +Ok: + dec %edx + pause + jne Repeat + mov $0x0, %eax + +Exit: + popl %edx + + ret + Index: branches/ErmaC/Enoch/i386/libsaio/console.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/console.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/console.c (revision 2457) @@ -247,23 +247,24 @@ vprf(fmt, ap); } + // Kabyl: BooterLog + struct putc_info pi; + + if (!msgbuf) { - // Kabyl: BooterLog - struct putc_info pi; + return 0; + } - if (!msgbuf) { - return 0; - } - - if (((cursor - msgbuf) > (BOOTER_LOG_SIZE - SAFE_LOG_SIZE))) { - return 0; - } - pi.str = cursor; - pi.last_str = 0; - prf(fmt, ap, sputc, &pi); - cursor += strlen((char *)cursor); + if (((cursor - msgbuf) > (BOOTER_LOG_SIZE - SAFE_LOG_SIZE))) + { + return 0; } + pi.str = cursor; + pi.last_str = 0; + prf(fmt, ap, sputc, &pi); + cursor += strlen((char *)cursor); + va_end(ap); return(0); } Index: branches/ErmaC/Enoch/i386/libsaio/bootstruct.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/bootstruct.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/bootstruct.c (revision 2457) @@ -27,6 +27,7 @@ */ #include "libsaio.h" +#include "boot.h" #include "bootstruct.h" #ifndef DEBUG_BOOTSTRUCT @@ -44,10 +45,10 @@ * the kernel by the booter. */ -boot_args *bootArgs; +boot_args *bootArgs; boot_args_pre_lion *bootArgsPreLion; PrivateBootInfo_t *bootInfo; -Node *gMemoryMapNode; +Node *gMemoryMapNode; static char platformName[64]; @@ -56,7 +57,7 @@ Node *node; int nameLen; static int init_done = 0; - + if ( !init_done ) { bootArgs = (boot_args *)malloc(sizeof(boot_args)); @@ -64,11 +65,11 @@ bootInfo = (PrivateBootInfo_t *)malloc(sizeof(PrivateBootInfo_t)); if (bootArgs == 0 || bootArgsPreLion == 0 || bootInfo == 0) stop("Couldn't allocate boot info\n"); - + bzero(bootArgs, sizeof(boot_args)); bzero(bootArgsPreLion, sizeof(boot_args_pre_lion)); bzero(bootInfo, sizeof(PrivateBootInfo_t)); - + // Get system memory map. Also update the size of the // conventional/extended memory for backwards compatibility. @@ -76,22 +77,22 @@ getMemoryMap( bootInfo->memoryMap, kMemoryMapCountMax, (unsigned long *) &bootInfo->convmem, (unsigned long *) &bootInfo->extmem ); - + if ( bootInfo->memoryMapCount == 0 ) { // BIOS did not provide a memory map, systems with // discontiguous memory or unusual memory hole locations // may have problems. - - bootInfo->convmem = getConventionalMemorySize(); - bootInfo->extmem = getExtendedMemorySize(); + + bootInfo->convmem = getConventionalMemorySize(); + bootInfo->extmem = getExtendedMemorySize(); } - - bootInfo->configEnd = bootInfo->config; - bootArgs->Video.v_display = VGA_TEXT_MODE; - + + bootInfo->configEnd = bootInfo->config; + bootArgs->Video.v_display = VGA_TEXT_MODE; + DT__Initialize(); - + node = DT__FindNode("/", true); if (node == 0) { stop("Couldn't create root node"); @@ -100,42 +101,42 @@ nameLen = strlen(platformName) + 1; DT__AddProperty(node, "compatible", nameLen, platformName); DT__AddProperty(node, "model", nameLen, platformName); - + gMemoryMapNode = DT__FindNode("/chosen/memory-map", true); - + bootArgs->Version = kBootArgsVersion; bootArgs->Revision = kBootArgsRevision; - + bootArgsPreLion->Version = kBootArgsPreLionVersion; bootArgsPreLion->Revision = kBootArgsPreLionRevision; - + init_done = 1; } } - /* Copy boot args after kernel and record address. */ -void -reserveKernBootStruct(void) +void reserveKernBootStruct(void) { - if ((gMacOSVersion[0] == '1') && (gMacOSVersion[1] == '0') - && (gMacOSVersion[2] == '.') && (gMacOSVersion[3] == '7' || gMacOSVersion[3] == '8' || gMacOSVersion[3] == '9')) + if ( LION || MOUNTAIN_LION || MAVERICKS || YOSEMITE ) { + // for 10.7 10.8 10.9 10.10 void *oldAddr = bootArgs; bootArgs = (boot_args *)AllocateKernelMemory(sizeof(boot_args)); bcopy(oldAddr, bootArgs, sizeof(boot_args)); } else { + // for 10.4 10.5 10.6 void *oldAddr = bootArgsPreLion; bootArgsPreLion = (boot_args_pre_lion *)AllocateKernelMemory(sizeof(boot_args_pre_lion)); bcopy(oldAddr, bootArgsPreLion, sizeof(boot_args_pre_lion)); } } -void -finalizeBootStruct(void) +//============================================================================== + +void finalizeBootStruct(void) { uint32_t size; void *addr; @@ -143,64 +144,76 @@ EfiMemoryRange *memoryMap; MemoryRange *range; int memoryMapCount = bootInfo->memoryMapCount; - - if (memoryMapCount == 0) { + + if (memoryMapCount == 0) + { // XXX could make a two-part map here stop("Unable to convert memory map into proper format\n"); } - + // convert memory map to boot_args memory map memoryMap = (EfiMemoryRange *)AllocateKernelMemory(sizeof(EfiMemoryRange) * memoryMapCount); - bootArgs->MemoryMap = (uint32_t)memoryMap; - bootArgs->MemoryMapSize = sizeof(EfiMemoryRange) * memoryMapCount; - bootArgs->MemoryMapDescriptorSize = sizeof(EfiMemoryRange); - bootArgs->MemoryMapDescriptorVersion = 0; - - for (i = 0; i < memoryMapCount; i++, memoryMap++) { + + bootArgs->MemoryMap = (uint32_t)memoryMap; + bootArgs->MemoryMapSize = sizeof(EfiMemoryRange) * memoryMapCount; + bootArgs->MemoryMapDescriptorSize = sizeof(EfiMemoryRange); + bootArgs->MemoryMapDescriptorVersion = 0; + + for (i = 0; i < memoryMapCount; i++, memoryMap++) + { range = &bootInfo->memoryMap[i]; - switch(range->type) { + + switch(range->type) + { case kMemoryRangeACPI: memoryMap->Type = kEfiACPIReclaimMemory; break; + case kMemoryRangeNVS: memoryMap->Type = kEfiACPIMemoryNVS; break; + case kMemoryRangeUsable: memoryMap->Type = kEfiConventionalMemory; break; + case kMemoryRangeReserved: + default: memoryMap->Type = kEfiReservedMemoryType; break; } - memoryMap->PhysicalStart = range->base; - memoryMap->VirtualStart = range->base; - memoryMap->NumberOfPages = range->length >> I386_PGSHIFT; - memoryMap->Attribute = 0; + + memoryMap->PhysicalStart = range->base; + memoryMap->VirtualStart = range->base; + memoryMap->NumberOfPages = range->length >> I386_PGSHIFT; + memoryMap->Attribute = 0; } - + // copy bootFile into device tree // XXX - + // add PCI info somehow into device tree // XXX - + // Flatten device tree DT__FlattenDeviceTree(0, &size); addr = (void *)AllocateKernelMemory(size); - if (addr == 0) { + + if (addr == 0) + { stop("Couldn't allocate device tree\n"); } - + DT__FlattenDeviceTree((void **)&addr, &size); bootArgs->deviceTreeP = (uint32_t)addr; bootArgs->deviceTreeLength = size; // Copy BootArgs values to older structure - + memcpy(&bootArgsPreLion->CommandLine, &bootArgs->CommandLine, BOOT_LINE_LENGTH); memcpy(&bootArgsPreLion->Video, &bootArgs->Video, sizeof(Boot_Video)); - + bootArgsPreLion->MemoryMap = bootArgs->MemoryMap; bootArgsPreLion->MemoryMapSize = bootArgs->MemoryMapSize; bootArgsPreLion->MemoryMapDescriptorSize = bootArgs->MemoryMapDescriptorSize; @@ -208,16 +221,16 @@ bootArgsPreLion->deviceTreeP = bootArgs->deviceTreeP; bootArgsPreLion->deviceTreeLength = bootArgs->deviceTreeLength; - + bootArgsPreLion->kaddr = bootArgs->kaddr; bootArgsPreLion->ksize = bootArgs->ksize; - + bootArgsPreLion->efiRuntimeServicesPageStart = bootArgs->efiRuntimeServicesPageStart; bootArgsPreLion->efiRuntimeServicesPageCount = bootArgs->efiRuntimeServicesPageCount; bootArgsPreLion->efiSystemTable = bootArgs->efiSystemTable; - + bootArgsPreLion->efiMode = bootArgs->efiMode; - + bootArgsPreLion->performanceDataStart = bootArgs->performanceDataStart; bootArgsPreLion->performanceDataSize = bootArgs->performanceDataSize; bootArgsPreLion->efiRuntimeServicesVirtualPageStart = bootArgs->efiRuntimeServicesVirtualPageStart; Index: branches/ErmaC/Enoch/i386/libsaio/efi.h =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/efi.h (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/efi.h (revision 2457) @@ -231,7 +231,7 @@ // range requires a runtime mapping #define EFI_MEMORY_RUNTIME 0x8000000000000000ULL - +#define EFI_MEMORY_KERN_RESERVED (1ULL << 59) typedef EFI_UINT64 EFI_PHYSICAL_ADDRESS; typedef EFI_UINT64 EFI_VIRTUAL_ADDRESS; @@ -254,7 +254,7 @@ IN EFI_UINTN DescriptorSize, IN EFI_UINT32 DescriptorVersion, IN EFI_MEMORY_DESCRIPTOR * VirtualMap - ) __attribute__((regparm(0))); + ); typedef EFI_RUNTIMESERVICE @@ -262,7 +262,7 @@ (EFIAPI *EFI_CONVERT_POINTER) ( IN EFI_UINTN DebugDisposition, IN OUT VOID **Address - ) __attribute__((regparm(0))); + ); // Variable attributes @@ -281,7 +281,7 @@ OUT EFI_UINT32 * Attributes OPTIONAL, IN OUT EFI_UINTN * DataSize, OUT VOID * Data - ) __attribute__((regparm(0))); + ); typedef EFI_RUNTIMESERVICE @@ -290,7 +290,7 @@ IN OUT EFI_UINTN * VariableNameSize, IN OUT EFI_CHAR16 * VariableName, IN OUT EFI_GUID * VendorGuid - ) __attribute__((regparm(0))); + ); typedef EFI_RUNTIMESERVICE @@ -301,7 +301,7 @@ IN EFI_UINT32 Attributes, IN EFI_UINTN DataSize, IN VOID * Data - ) __attribute__((regparm(0))); + ); // EFI Time @@ -318,14 +318,14 @@ (EFIAPI *EFI_GET_TIME) ( OUT EFI_TIME * Time, OUT EFI_TIME_CAPABILITIES * Capabilities OPTIONAL - ) __attribute__((regparm(0))); + ); typedef EFI_RUNTIMESERVICE EFI_STATUS (EFIAPI *EFI_SET_TIME) ( IN EFI_TIME * Time - ) __attribute__((regparm(0))); + ); typedef EFI_RUNTIMESERVICE @@ -334,7 +334,7 @@ OUT EFI_BOOLEAN * Enabled, OUT EFI_BOOLEAN * Pending, OUT EFI_TIME * Time - ) __attribute__((regparm(0))); + ); typedef EFI_RUNTIMESERVICE @@ -342,7 +342,7 @@ (EFIAPI *EFI_SET_WAKEUP_TIME) ( IN EFI_BOOLEAN Enable, IN EFI_TIME * Time OPTIONAL - ) __attribute((regparm(0))); + ); typedef enum { EfiResetCold, @@ -363,7 +363,7 @@ IN EFI_STATUS ResetStatus, IN EFI_UINTN DataSize, IN EFI_CHAR16 * ResetData OPTIONAL - ) __attribute__((regparm(0))); + ); typedef EFI_RUNTIMESERVICE @@ -391,7 +391,7 @@ IN EFI_UINT32 Instance, IN EFI_GUID * CallerId OPTIONAL, IN EFI_STATUS_CODE_DATA * Data OPTIONAL - ) __attribute__((regparm(0))); + ); #endif // Index: branches/ErmaC/Enoch/i386/libsaio/vbe.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/vbe.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/vbe.c (revision 2457) @@ -33,8 +33,10 @@ static biosBuf_t bb; +#if UNUSED + //============================================================================== - +#if UNUSED static inline void outi (int port, int index, int val) { @@ -66,9 +68,11 @@ outb (port, index); outb (port + 1, (inb (port + 1) & ~clear) | set); } - +#endif /* UNUSED */ //============================================================================== +#endif /* UNUSED */ + int getVBEInfo( void * infoBlock ) { bb.intno = 0x10; Index: branches/ErmaC/Enoch/i386/libsaio/bootstruct.h =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/bootstruct.h (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/bootstruct.h (revision 2457) @@ -47,7 +47,7 @@ /* * Maximum number of boot drivers that can be loaded. */ -#define NDRIVERS 500 +#define NDRIVERS 500 #define CONFIG_SIZE (40 * 4096) @@ -74,10 +74,12 @@ unsigned char BIOSPresent; } PCI_bus_info_t; -typedef struct { - unsigned long address; // address where driver was loaded - unsigned long size; // number of bytes - unsigned long type; // driver type + +typedef struct +{ + unsigned long address; // address where driver was loaded + unsigned long size; // number of bytes + unsigned long type; // driver type } driver_config_t; /* @@ -90,11 +92,12 @@ /* * ACPI defined memory range types. */ -enum { - kMemoryRangeUsable = 1, // RAM usable by the OS. - kMemoryRangeReserved = 2, // Reserved. (Do not use) - kMemoryRangeACPI = 3, // ACPI tables. Can be reclaimed. - kMemoryRangeNVS = 4, // ACPI NVS memory. (Do not use) +enum +{ + kMemoryRangeUsable = 1, // RAM usable by the OS. + kMemoryRangeReserved = 2, // Reserved. (Do not use) + kMemoryRangeACPI = 3, // ACPI tables. Can be reclaimed. + kMemoryRangeNVS = 4, // ACPI NVS memory. (Do not use) /* Undefined types should be treated as kMemoryRangeReserved */ }; Index: branches/ErmaC/Enoch/i386/libsaio/hfs.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/hfs.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/hfs.c (revision 2457) @@ -304,7 +304,7 @@ } dirID = kHFSRootFolderID; - // Skip a lead '\'. Start in the system folder if there are two. + // Skip a lead '/'. Start in the system folder if there are two. if (filePath[0] == '/') { if (filePath[1] == '/') @@ -376,7 +376,7 @@ dirID = kHFSRootFolderID; - // Skip a lead '\'. Start in the system folder if there are two. + // Skip a lead '/'. Start in the system folder if there are two. if (dirPath[0] == '/') { if (dirPath[1] == '/') @@ -1123,7 +1123,7 @@ { if (nextExtent < extentDensity) { - if ((countedBlocks+GetExtentSize(extent, nextExtent)-1)PM_Profile != Platform.Type) { if (value) { // user has overriden the SystemType so take care of it in FACP - verbose("FADT: changing PM_Profile from 0x%02x to 0x%02x\n", fadt_mod->PM_Profile, Platform.Type); + DBG("FADT: changing PM_Profile from 0x%02x to 0x%02x\n", fadt_mod->PM_Profile, Platform.Type); fadt_mod->PM_Profile = Platform.Type; } else { // PM_Profile has a different value and no override has been set, so reflect the user value to ioregs @@ -738,7 +740,7 @@ } } // We now have to write the systemm-type in ioregs: we cannot do it before in setupDeviceTree() - // because we need to take care of facp original content, if it is correct. + // because we need to take care of FACP original content, if it is correct. setupSystemType(); // Patch FADT to fix restart @@ -923,14 +925,15 @@ getBoolForKey(kGenerateCStates, &generate_cstates, &bootInfo->chameleonConfig); //getBoolForKey(kGenerateTStates, &generate_tstates, &bootInfo->chameleonConfig); - DBG("Generating P-States config: %d\n", generate_pstates); - DBG("Generating C-States config: %d\n", generate_cstates); - //DBG("Generating T-States config: %d\n", generate_tstates); + DBG("Generating P-States config: %s\n", generate_pstates ? "YES" : "NO"); + DBG("Generating C-States config: %s\n", generate_cstates ? "YES" : "NO"); + //DBG("Generating T-States config: %s\n", generate_tstates ? "YES" : "NO"); { int i; - for (i = 0; i < 30; i++) { + for (i = 0; i < 30; i++) + { char filename[512]; sprintf(filename, i > 0 ? "SSDT-%d.aml" : "SSDT.aml", i); @@ -998,50 +1001,50 @@ rsdt_entries[i-dropoffset]=rsdt_entries[i]; if (drop_ssdt && tableSign(table, "SSDT")) { - verbose("OEM SSDT tables was dropped\n"); + DBG("OEM SSDT tables was dropped\n"); dropoffset++; continue; } if (drop_hpet && tableSign(table, "HPET")) { - verbose("OEM HPET table was dropped\n"); + DBG("OEM HPET table was dropped\n"); dropoffset++; continue; } if (drop_slic && tableSign(table, "SLIC")) { - verbose("OEM SLIC table was dropped\n"); + DBG("OEM SLIC table was dropped\n"); dropoffset++; continue; } if (drop_sbst && tableSign(table, "SBST")) { - verbose("OEM SBST table was dropped\n"); + DBG("OEM SBST table was dropped\n"); dropoffset++; continue; } if (drop_ecdt && tableSign(table, "ECDT")) { - verbose("OEM ECDT table was dropped\n"); + DBG("OEM ECDT table was dropped\n"); dropoffset++; continue; } if (drop_asft && tableSign(table, "ASF!")) { - verbose("OEM ASF! table was dropped\n"); + DBG("OEM ASF! table was dropped\n"); dropoffset++; continue; } if (drop_dmar && tableSign(table, "DMAR")) { - verbose("OEM DMAR table was dropped\n"); + DBG("OEM DMAR table was dropped\n"); dropoffset++; continue; } if (tableSign(table, "HPET")) { DBG("HPET found\n"); - verbose("Custom HPET table was found\n"); + DBG("Custom HPET table was found\n"); if(new_hpet) { rsdt_entries[i-dropoffset]=(uint32_t)new_hpet; } @@ -1050,7 +1053,7 @@ if (tableSign(table, "SBST")) { DBG("SBST found\n"); - verbose("Custom SBST table was found\n"); + DBG("Custom SBST table was found\n"); if(new_sbst) { rsdt_entries[i-dropoffset]=(uint32_t)new_sbst; } @@ -1059,7 +1062,7 @@ if (tableSign(table, "ECDT")) { DBG("ECDT found\n"); - verbose("Custom ECDT table was found\n"); + DBG("Custom ECDT table was found\n"); if(new_ecdt) { rsdt_entries[i-dropoffset]=(uint32_t)new_ecdt; } @@ -1068,7 +1071,7 @@ if (tableSign(table, "ASF!")) { DBG("ASF! found\n"); - verbose("Custom ASF! table was found\n"); + DBG("Custom ASF! table was found\n"); if(new_asft) { rsdt_entries[i-dropoffset]=(uint32_t)new_asft; } @@ -1077,7 +1080,7 @@ if (tableSign(table, "DMAR")) { DBG("DMAR found\n"); - verbose("Custom DMAR table was found\n"); + DBG("Custom DMAR table was found\n"); if(new_dmar) { rsdt_entries[i-dropoffset]=(uint32_t)new_dmar; } @@ -1086,7 +1089,7 @@ if (tableSign(table, "APIC")) { DBG("APIC found\n"); - verbose("Custom APIC table was found\n"); + DBG("Custom APIC table was found\n"); if(new_apic) { rsdt_entries[i-dropoffset]=(uint32_t)new_apic; } @@ -1095,7 +1098,7 @@ if (tableSign(table, "MCFG")) { DBG("MCFG found\n"); - verbose("Custom MCFG table was found\n"); + DBG("Custom MCFG table was found\n"); if(new_mcfg) { rsdt_entries[i-dropoffset]=(uint32_t)new_mcfg; } @@ -1104,7 +1107,7 @@ } if (tableSign(table, "DSDT")) { DBG("DSDT found\n"); - verbose("Custom DSDT table was found\n"); + DBG("Custom DSDT table was found\n"); if(new_dsdt) { rsdt_entries[i-dropoffset]=(uint32_t)new_dsdt; } @@ -1153,15 +1156,14 @@ rsdt_entries=(uint32_t *)(rsdt_mod+1); // Mozodojo: Insert additional SSDTs into RSDT - if(ssdt_count>0) { + if(ssdt_count > 0) { int j; for (j=0; jRsdtAddress=0; DBG("RSDT not found or RSDT incorrect\n"); } + DBG("\n"); if (version) { struct acpi_2_xsdt *xsdt, *xsdt_mod; @@ -1253,7 +1256,7 @@ } DBG("TABLE %c%c%c%c@%x \n", table[0],table[1],table[2],table[3],xsdt_entries[i]); - + continue; } @@ -1410,10 +1413,13 @@ xsdt_mod->Checksum=256-checksum8(xsdt_mod,xsdt_mod->Length); } else { drop_xsdt: + DBG("About to drop XSDT\n"); + /*FIXME: Now we just hope that if MacOS doesn't find XSDT it reverts to RSDT. * A Better strategy would be to generate */ + rsdp_mod->XsdtAddress=0xffffffffffffffffLL; verbose("XSDT not found or XSDT incorrect\n"); } @@ -1421,6 +1427,7 @@ DBG("\n"); // Correct the checksum of RSDP + DBG("RSDP: Original checksum %d, ", rsdp_mod->Checksum); rsdp_mod->Checksum=0; rsdp_mod->Checksum=256-checksum8(rsdp_mod,20); @@ -1433,11 +1440,14 @@ DBG("New extended checksum %d\n", rsdp_mod->ExtendedChecksum); } - if (version) { + if (version) + { /* XXX aserebln why uint32 cast if pointer is uint64 ? */ acpi20_p = (uint64_t)(uint32_t)rsdp_mod; addConfigurationTable(&gEfiAcpi20TableGuid, &acpi20_p, "ACPI_20"); - } else { + } + else + { /* XXX aserebln why uint32 cast if pointer is uint64 ? */ acpi10_p = (uint64_t)(uint32_t)rsdp_mod; addConfigurationTable(&gEfiAcpiTableGuid, &acpi10_p, "ACPI"); Index: branches/ErmaC/Enoch/i386/libsaio/bootargs.h =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/bootargs.h (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/bootargs.h (revision 2457) @@ -96,6 +96,18 @@ #define GRAPHICS_MODE 1 #define FB_TEXT_MODE 2 + +/* Struct describing an image passed in by the booter */ +struct boot_icon_element { + unsigned int width; + unsigned int height; + int y_offset_from_center; + unsigned int data_size; + unsigned int __reserved1[4]; + unsigned char data[0]; +}; +typedef struct boot_icon_element boot_icon_element; + /* Boot argument structure - passed into Mach kernel at boot time. * "Revision" can be incremented for compatible changes */ @@ -108,10 +120,17 @@ #define kBootArgsPreLionVersion 1 /* Snapshot constants of previous revisions that are supported */ +#define kBootArgsVersion1 1 +#define kBootArgsVersion2 2 +#define kBootArgsRevision2_0 0 -#define kBootArgsEfiMode32 32 -#define kBootArgsEfiMode64 64 +#define kBootArgsEfiMode32 32 +#define kBootArgsEfiMode64 64 +/* Bitfields for boot_args->flags */ +#define kBootArgsFlagRebootOnPanic (1 << 0) +#define kBootArgsFlagHiDPI (1 << 1) +#define kBootArgsFlagBlack (1 << 2) typedef struct boot_args_pre_lion { uint16_t Revision; /* Revision of boot_args structure */ Index: branches/ErmaC/Enoch/i386/libsaio/spd.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/spd.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/spd.c (revision 2457) @@ -382,31 +382,34 @@ static struct smbus_controllers_t smbus_controllers[] = { - {0x8086, 0x1C22, "6 Series", read_smb_intel }, - {0x8086, 0x1D22, "C600/X79 Series", read_smb_intel }, - {0x8086, 0x1D70, "C600/X79 Series", read_smb_intel }, - {0x8086, 0x1D71, "C608/C606/X79 Series", read_smb_intel }, - {0x8086, 0x1D72, "C608", read_smb_intel }, - {0x8086, 0x1E22, "7 Series/C210 Series", read_smb_intel }, - {0x8086, 0x2330, "DH89xxCC", read_smb_intel }, - {0x8086, 0x2413, "82801AA", read_smb_intel }, - {0x8086, 0x2423, "82801BA/BAM", read_smb_intel }, - {0x8086, 0x2443, "82801BA/BAM", read_smb_intel }, - {0x8086, 0x2483, "82801CA/CAM", read_smb_intel }, - {0x8086, 0x24C3, "82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M)", read_smb_intel }, - {0x8086, 0x24D3, "82801EB/ER (ICH5/ICH5R)", read_smb_intel }, - {0x8086, 0x25A4, "6300ESB", read_smb_intel }, - {0x8086, 0x266A, "82801FB/FBM/FR/FW/FRW (ICH6 Family)", read_smb_intel }, - {0x8086, 0x269B, "631xESB/632xESB/3100", read_smb_intel }, - {0x8086, 0x27DA, "N10/ICH 7 Family", read_smb_intel }, - {0x8086, 0x283E, "82801H (ICH8 Family) ", read_smb_intel }, - {0x8086, 0x2930, "82801I (ICH9 Family)", read_smb_intel }, - {0x8086, 0x3A30, "82801JI (ICH10 Family)", read_smb_intel }, - {0x8086, 0x3A60, "82801JD/DO (ICH10 Family)", read_smb_intel }, - {0x8086, 0x3B30, "5 Series/3400 Series", read_smb_intel }, - {0x8086, 0x5032, "EP80579", read_smb_intel }, - {0x8086, 0x8C22, "8 Series/C220", read_smb_intel }, - {0x8086, 0x9C22, "Lynx Point-LP", read_smb_intel } + {0x8086, 0x1C22, "P67", read_smb_intel }, // Z68, Q67 + {0x8086, 0x1D22, "X79", read_smb_intel }, + {0x8086, 0x1D70, "X79", read_smb_intel }, + {0x8086, 0x1D71, "X79", read_smb_intel }, + {0x8086, 0x1D72, "C608", read_smb_intel }, + {0x8086, 0x1E22, "Z77", read_smb_intel }, // H77, Q77 + {0x8086, 0x2330, "DH89xxCC", read_smb_intel }, + {0x8086, 0x2413, "82801AA", read_smb_intel }, + {0x8086, 0x2423, "BAM", read_smb_intel }, + {0x8086, 0x2443, "BAM", read_smb_intel }, + {0x8086, 0x2483, "CAM", read_smb_intel }, + {0x8086, 0x24C3, "ICH4", read_smb_intel }, + {0x8086, 0x24D3, "ICH5", read_smb_intel }, + {0x8086, 0x25A4, "6300ESB", read_smb_intel }, + {0x8086, 0x266A, "ICH6", read_smb_intel }, + {0x8086, 0x269B, "ESB", read_smb_intel }, + {0x8086, 0x27DA, "ICH7", read_smb_intel }, + {0x8086, 0x283E, "ICH8", read_smb_intel }, + {0x8086, 0x2930, "ICH9", read_smb_intel }, + {0x8086, 0x3A30, "ICH10", read_smb_intel }, + {0x8086, 0x3A60, "ICH10", read_smb_intel }, + {0x8086, 0x3B30, "P55", read_smb_intel }, + {0x8086, 0x5032, "EP80579", read_smb_intel }, + {0x8086, 0x8119, "US15W", read_smb_intel }, + {0x8086, 0x8C22, "HSW", read_smb_intel }, // Z87, H87, Q87, H81 + {0x8086, 0x8CA2, "Z97/H97", read_smb_intel }, // new + {0x8086, 0x8D22, "X99", read_smb_intel }, // new + {0x8086, 0x9C22, "HSW-ULT", read_smb_intel } }; Index: branches/ErmaC/Enoch/i386/libsaio/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/Makefile (revision 2457) @@ -51,11 +51,11 @@ all: $(DIRS_NEEDED) $(CONFIG_HEADERS) $(LIBS) all-recursive $(LIBS): $(SAIO_OBJS) - @echo "\t[RM] $@" + @echo " [RM] $@" @rm -f $@ - @echo "\t[AR] $(@F)" + @echo " [AR] $(@F)" @ar q $@ $^ &> /dev/null - @echo "\t[RANLIB] $(@F)" + @echo " [RANLIB] $(@F)" @ranlib $(SYMROOT)/$(@F) clean-local: Index: branches/ErmaC/Enoch/i386/libsaio/gma.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/gma.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/gma.c (revision 2457) @@ -286,10 +286,10 @@ // 0091 /* ??? */ // 0092 /* ??? */ {GMA_HASWELL_D_GT1, HD_GRAPHICS }, - {GMA_HASWELL_D_GT2, HD_GRAPHICS_4600 }, + {GMA_HASWELL_D_GT2, HD_GRAPHICS_4600 }, /* 0412 */ {GMA_HASWELL_D_GT3, HD_GRAPHICS_5000 }, /* ??? */ {GMA_HASWELL_M_GT1, HD_GRAPHICS }, - {GMA_HASWELL_M_GT2, HD_GRAPHICS_4600 }, + {GMA_HASWELL_M_GT2, HD_GRAPHICS_4600 }, /* 0416 */ {GMA_HASWELL_M_GT3, HD_GRAPHICS_5000 }, /* ??? */ {GMA_HASWELL_S_GT1, HD_GRAPHICS }, {GMA_HASWELL_S_GT2, "HD Graphics P4600/P4700" }, @@ -298,45 +298,45 @@ {GMA_HASWELL_B_GT2, HD_GRAPHICS }, /* ??? */ {GMA_HASWELL_B_GT3, HD_GRAPHICS }, /* ??? */ {GMA_HASWELL_E_GT1, HD_GRAPHICS }, - {GMA_HASWELL_E_GT2, HD_GRAPHICS }, /* ??? */ + {GMA_HASWELL_E_GT2, HD_GRAPHICS_4400 }, /* 041e */ {GMA_HASWELL_E_GT3, HD_GRAPHICS }, /* ??? */ {GMA_HASWELL_ULT_D_GT1, HD_GRAPHICS }, /* ??? */ {GMA_HASWELL_ULT_D_GT2, HD_GRAPHICS }, /* ??? */ {GMA_HASWELL_ULT_D_GT3, IRIS_5100 }, {GMA_HASWELL_ULT_M_GT1, HD_GRAPHICS }, - {GMA_HASWELL_ULT_M_GT2, "HD Graphics 4400" }, - {GMA_HASWELL_ULT_M_GT3, HD_GRAPHICS_5000 }, + {GMA_HASWELL_ULT_M_GT2, HD_GRAPHICS_4400 }, /* 0a16 */ + {GMA_HASWELL_ULT_M_GT3, HD_GRAPHICS_5000 }, /* 0a26 */ {GMA_HASWELL_ULT_S_GT1, HD_GRAPHICS }, /* ??? */ {GMA_HASWELL_ULT_S_GT2, HD_GRAPHICS }, /* ??? */ {GMA_HASWELL_ULT_S_GT3, IRIS_5100 }, {GMA_HASWELL_ULT_B_GT1, HD_GRAPHICS }, /* ??? */ {GMA_HASWELL_ULT_B_GT2, HD_GRAPHICS }, /* ??? */ {GMA_HASWELL_ULT_B_GT3, IRIS_5100 }, - {GMA_HASWELL_ULT_E_GT1, HD_GRAPHICS }, - {GMA_HASWELL_ULT_E_GT2, "HD Graphics 4200" }, + {GMA_HASWELL_ULT_E_GT1, HD_GRAPHICS_4400 }, /* 0a0e */ + {GMA_HASWELL_ULT_E_GT2, HD_GRAPHICS_4200 }, /* 0a1e */ // 0A2A /* ??? */ {GMA_HASWELL_ULT_E_GT3, IRIS_5100 }, - // 0C02 /* Intel Haswell HD Graphics - GTL */ - // 0C04 /* ??? */ - // 0C06 /* Intel Haswell HD Graphics - GTL */ - // 0C12 /* Intel Haswell HD Graphics - GTM */ - // 0C16 /* Intel Haswell HD Graphics - GTH */ - // 0C22 /* Intel Haswell HD Graphics - GTH */ - // 0C26 /* Intel Haswell HD Graphics - GTH */ - {GMA_HASWELL_CRW_D_GT1, HD_GRAPHICS }, /* ??? */ + {GMA_HASWELL_SDV_D_GT1_IG, HD_GRAPHICS }, // 0C02 /* Intel Haswell HD Graphics - GTL */ + // 0C04 /* DRAM Controller */ + {GMA_HASWELL_SDV_M_GT1_IG, HD_GRAPHICS }, // 0C06 /* Intel Haswell HD Graphics - GTL */ + {GMA_HASWELL_SDV_D_GT2_IG, HD_GRAPHICS }, // 0C12 /* Intel Haswell HD Graphics - GTM */ + {GMA_HASWELL_SDV_M_GT2_IG, HD_GRAPHICS }, // 0C16 /* Intel Haswell HD Graphics - GTH */ + {GMA_HASWELL_SDV_D_GT2_PLUS_IG, HD_GRAPHICS }, // 0C22 /* Intel Haswell HD Graphics - GTH */ + {GMA_HASWELL_SDV_M_GT2_PLUS_IG, HD_GRAPHICS }, // 0C26 /* Intel Haswell HD Graphics - GTH */ + {GMA_HASWELL_CRW_D_GT1, HD_GRAPHICS }, /* 0d02 */ {GMA_HASWELL_CRW_D_GT2, HD_GRAPHICS_4600 }, - {GMA_HASWELL_CRW_D_GT3, IRIS_5200 }, - {GMA_HASWELL_CRW_M_GT1, HD_GRAPHICS }, /* ??? */ - {GMA_HASWELL_CRW_M_GT2, HD_GRAPHICS_4600 }, - {GMA_HASWELL_CRW_M_GT3, IRIS_5200 }, - {GMA_HASWELL_CRW_S_GT1, HD_GRAPHICS }, /* ??? */ - {GMA_HASWELL_CRW_S_GT2, HD_GRAPHICS }, /* ??? */ + {GMA_HASWELL_CRW_D_GT3, IRIS_5200 }, /* 0d22 */ + {GMA_HASWELL_CRW_M_GT1, HD_GRAPHICS }, /* 0d06 */ + {GMA_HASWELL_CRW_M_GT2, HD_GRAPHICS_4600 }, /* 0d16 */ + {GMA_HASWELL_CRW_M_GT3, IRIS_5200 }, /* 0d26 */ + {GMA_HASWELL_CRW_S_GT1, HD_GRAPHICS }, /* 0d0a */ + {GMA_HASWELL_CRW_S_GT2, HD_GRAPHICS }, /* 0d1a */ {GMA_HASWELL_CRW_S_GT3, IRIS_5200 }, - {GMA_HASWELL_CRW_B_GT1, HD_GRAPHICS }, /* ??? */ - {GMA_HASWELL_CRW_B_GT2, HD_GRAPHICS }, /* ??? */ + {GMA_HASWELL_CRW_B_GT1, HD_GRAPHICS }, /* 0d0b */ + {GMA_HASWELL_CRW_B_GT2, HD_GRAPHICS }, /* 0d1b */ {GMA_HASWELL_CRW_B_GT3, IRIS_5200 }, - {GMA_HASWELL_CRW_E_GT1, HD_GRAPHICS }, /* ??? */ - {GMA_HASWELL_CRW_E_GT2, HD_GRAPHICS }, /* ??? */ + {GMA_HASWELL_CRW_E_GT1, HD_GRAPHICS }, /* 0d0e */ + {GMA_HASWELL_CRW_E_GT2, HD_GRAPHICS }, /* od1e */ {GMA_HASWELL_CRW_E_GT3, IRIS_5200 }, {GMA_HASWELL_CRW_M_GT2_PLUS_IG, HD_GRAPHICS } }; @@ -549,66 +549,66 @@ case GMA_IVYBRIDGE_S_GT4: // 0172 case GMA_IVYBRIDGE_S_GT5: // 0176 - if (getValueForKey(kAAPLCustomIG, &value, &len, &bootInfo->chameleonConfig) && len == AAPL_LEN_IVY * 2) - { - uint8_t new_aapl0[AAPL_LEN_IVY]; - - if (hex2bin(value, new_aapl0, AAPL_LEN_IVY) == 0) - { - memcpy(default_aapl_ivy, new_aapl0, AAPL_LEN_IVY); - - verbose("Using user supplied AAPL,ig-platform-id\n"); - verbose("AAPL,ig-platform-id: %02x%02x%02x%02x\n", - default_aapl_ivy[0], default_aapl_ivy[1], default_aapl_ivy[2], default_aapl_ivy[3]); - } - devprop_add_value(device, "AAPL,ig-platform-id", default_aapl_ivy, AAPL_LEN_IVY); - } - else if (getIntForKey(kIntelCapriFB, &n_igs, &bootInfo->chameleonConfig)) - { - if ((n_igs >= 0) || (n_igs <= 11)) - { - verbose("AAPL,ig-platform-id was set in org.chameleon.Boot.plist with value %d\n", n_igs); - devprop_add_value(device, "AAPL,ig-platform-id", ivy_bridge_ig_vals[n_igs], 4); - } - else - { - verbose("AAPL,ig-platform-id was set in org.chameleon.Boot.plist with bad value please choose a number between 0 and 11.\n"); - } - } - else - { - uint32_t ig_platform_id; - uint32_t ram = (((getVBEVideoRam() + 512) / 1024) + 512) / 1024; - switch (ram) - { - case 96: - ig_platform_id = 0x01660000; // 96mb Mobile - break; + if (getValueForKey(kAAPLCustomIG, &value, &len, &bootInfo->chameleonConfig) && len == AAPL_LEN_IVY * 2) + { + uint8_t new_aapl0[AAPL_LEN_IVY]; - case 64: - ig_platform_id = 0x01660009; // 64mb Mobile - break; + if (hex2bin(value, new_aapl0, AAPL_LEN_IVY) == 0) + { + memcpy(default_aapl_ivy, new_aapl0, AAPL_LEN_IVY); - case 32: - ig_platform_id = 0x01620005; // 32mb Desktop - break; + verbose("Using user supplied AAPL,ig-platform-id\n"); + verbose("AAPL,ig-platform-id: %02x%02x%02x%02x\n", + default_aapl_ivy[0], default_aapl_ivy[1], default_aapl_ivy[2], default_aapl_ivy[3]); + } + devprop_add_value(device, "AAPL,ig-platform-id", default_aapl_ivy, AAPL_LEN_IVY); + } + else if (getIntForKey(kIntelCapriFB, &n_igs, &bootInfo->chameleonConfig)) + { + if ((n_igs >= 0) || (n_igs <= 11)) + { + verbose("AAPL,ig-platform-id was set in org.chameleon.Boot.plist with value %d\n", n_igs); + devprop_add_value(device, "AAPL,ig-platform-id", ivy_bridge_ig_vals[n_igs], 4); + } + else + { + verbose("AAPL,ig-platform-id was set in org.chameleon.Boot.plist with bad value please choose a number between 0 and 11.\n"); + } + } + else + { + uint32_t ig_platform_id; + uint32_t ram = (((getVBEVideoRam() + 512) / 1024) + 512) / 1024; + switch (ram) + { + case 96: + ig_platform_id = 0x01660000; // 96mb Mobile + break; - default: - printf("Please specify 96, 64, or 32MB RAM for the HD4000 in the bios.\n" - "The selected %dMB RAM configuration is not supported for the HD4000.\n", ram); - pause(); - return false; // Exit early before the AAPL,ig-platform-id property is set. - break; - } - devprop_add_value(device, "AAPL,ig-platform-id", (uint8_t *)&ig_platform_id, 4); - } + case 64: + ig_platform_id = 0x01660009; // 64mb Mobile + break; - devprop_add_value(device, "AAPL00,DualLink", HD4000_vals[10], 4); - devprop_add_value(device, "built-in", &BuiltIn, 1); - devprop_add_value(device, "class-code", ClassFix, 4); - devprop_add_value(device, "hda-gfx", (uint8_t *)"onboard-1", 10); - break; + case 32: + ig_platform_id = 0x01620005; // 32mb Desktop + break; + default: + printf("Please specify 96, 64, or 32MB RAM for the HD4000 in the bios.\n" + "The selected %dMB RAM configuration is not supported for the HD4000.\n", ram); + pause(); + return false; // Exit early before the AAPL,ig-platform-id property is set. + break; + } + devprop_add_value(device, "AAPL,ig-platform-id", (uint8_t *)&ig_platform_id, 4); + } + + devprop_add_value(device, "AAPL00,DualLink", HD4000_vals[10], 4); + devprop_add_value(device, "built-in", &BuiltIn, 1); + devprop_add_value(device, "class-code", ClassFix, 4); + devprop_add_value(device, "hda-gfx", (uint8_t *)"onboard-1", 10); + break; + /* Haswell */ /* HD Graphics 5000, HD Graphics 5000 Mobile, HD Graphics P5000, HD Graphics 4600, HD Graphics 4600 Mobile */ //case 0x80860090: @@ -634,12 +634,12 @@ case GMA_HASWELL_ULT_M_GT3: // 0a26 case GMA_HASWELL_ULT_S_GT3: // 0a2a case GMA_HASWELL_ULT_E_GT3: // 0a2e - //case GMA_HASWELL_SDV_D_GT1_IG: // 0c02 - //case GMA_HASWELL_SDV_M_GT1_IG: // 0c06 - //case GMA_HASWELL_SDV_D_GT2_IG: // 0c12 - //case GMA_HASWELL_SDV_M_GT2_IG: // 0c16 - //case GMA_HASWELL_SDV_D_GT2_PLUS_IG: // 0c22 - //case GMA_HASWELL_SDV_M_GT2_PLUS_IG: // 0c26 + case GMA_HASWELL_SDV_D_GT1_IG: // 0c02 + case GMA_HASWELL_SDV_M_GT1_IG: // 0c06 + case GMA_HASWELL_SDV_D_GT2_IG: // 0c12 + case GMA_HASWELL_SDV_M_GT2_IG: // 0c16 + case GMA_HASWELL_SDV_D_GT2_PLUS_IG: // 0c22 + case GMA_HASWELL_SDV_M_GT2_PLUS_IG: // 0c26 case GMA_HASWELL_CRW_D_GT1: // 0d02 case GMA_HASWELL_CRW_D_GT2: // 0d12 case GMA_HASWELL_CRW_D_GT3: // 0d22 Index: branches/ErmaC/Enoch/i386/libsaio/gma.h =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/gma.h (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/gma.h (revision 2457) @@ -60,10 +60,19 @@ #define HD_GRAPHICS_2500 "HD Graphics 2500" #define HD_GRAPHICS_3000 "HD Graphics 3000" #define HD_GRAPHICS_4000 "HD Graphics 4000" +#define HD_GRAPHICS_4200 "HD Graphics 4200" +#define HD_GRAPHICS_4400 "HD Graphics 4400" #define HD_GRAPHICS_4600 "HD Graphics 4600" #define HD_GRAPHICS_5000 "HD Graphics 5000" #define IRIS_5100 "Iris(TM) Graphics 5100" #define IRIS_5200 "Iris(TM) Pro Graphics 5200" +#define HD_GRAPHICS_5300 "HD Graphics 5300" +#define HD_GRAPHICS_5500 "HD Graphics 5500" +#define HD_GRAPHICS_5600 "HD Graphics 5600" +#define HD_GRAPHICS_6000 "HD Graphics 6000" +#define IRIS_6100 "Iris(TM) Pro Graphics 6100" +#define IRIS_6200 "Iris(TM) Pro Graphics 6200" +#define IRIS_6300 "Iris(TM) Pro Graphics 6300P" #define INTEL_VENDORID 0x8086 /* http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/tree/src/intel_driver.h */ @@ -170,15 +179,15 @@ // 0092 // AppleIntelHD5000Graphics.kext //#define GMA_HASWELL_HB GFX_MODEL_CONSTRUCT(INTEL, 0x0400) /* Desktop */ #define GMA_HASWELL_D_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0402) // -#define GMA_HASWELL_D_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0412) // AppleIntelHD5000Graphics.kext +#define GMA_HASWELL_D_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0412) // Haswell GT2 #define GMA_HASWELL_D_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0422) // //#define GMA_HASWELL_M_HB GFX_MODEL_CONSTRUCT(INTEL, 0x0404) /* Mobile */ -#define GMA_HASWELL_M_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0406) // AppleIntelHD5000Graphics.kext -#define GMA_HASWELL_M_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0416) // AppleIntelHD5000Graphics.kext -#define GMA_HASWELL_M_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0426) // AppleIntelHD5000Graphics.kext -#define GMA_HASWELL_S_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x040A) // +#define GMA_HASWELL_M_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0406) // Haswell Mobile GT1 +#define GMA_HASWELL_M_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0416) // Haswell Mobile GT2 +#define GMA_HASWELL_M_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0426) // Haswell Mobile GT3 +#define GMA_HASWELL_S_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x040A) // Intel(R) HD Graphics //#define GMA_HASWELL_S_HB GFX_MODEL_CONSTRUCT(INTEL, 0x0408) /* Server */ -#define GMA_HASWELL_S_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x041A) // +#define GMA_HASWELL_S_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x041A) // Intel(R) HD Graphics P4600/P4700 #define GMA_HASWELL_S_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x042A) // #define GMA_HASWELL_B_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x040B) #define GMA_HASWELL_B_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x041B) @@ -191,36 +200,36 @@ #define GMA_HASWELL_ULT_D_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0A12) #define GMA_HASWELL_ULT_D_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0A22) // #define GMA_HASWELL_ULT_M_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0A06) // -#define GMA_HASWELL_ULT_M_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0A16) // AppleIntelHD5000Graphics.kext -#define GMA_HASWELL_ULT_M_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0A26) // AppleIntelHD5000Graphics.kext +#define GMA_HASWELL_ULT_M_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0A16) // Haswell ULT Mobile GT2 +#define GMA_HASWELL_ULT_M_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0A26) // Haswell ULT Mobile GT3 - Intel(R) HD Graphics 5000 #define GMA_HASWELL_ULT_S_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0A0A) #define GMA_HASWELL_ULT_S_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0A1A) #define GMA_HASWELL_ULT_S_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0A2A) #define GMA_HASWELL_ULT_B_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0A0B) #define GMA_HASWELL_ULT_B_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0A1B) #define GMA_HASWELL_ULT_B_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0A2B) -#define GMA_HASWELL_ULT_E_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0A0E) // -#define GMA_HASWELL_ULT_E_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0A1E) // AppleIntelHD5000Graphics.kext -#define GMA_HASWELL_ULT_E_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0A2E) // AppleIntelHD5000Graphics.kext +#define GMA_HASWELL_ULT_E_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0A0E) // Intel(R) HD Graphics +#define GMA_HASWELL_ULT_E_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0A1E) // Intel(R) HD Graphics 4400 +#define GMA_HASWELL_ULT_E_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0A2E) // Haswell ULT E GT3 -//#define GMA_HASWELL_SDV_D_GT1_IG GFX_MODEL_CONSTRUCT(INTEL, 0C02) -//#define GMA_HASWELL_E_HB GFX_MODEL_CONSTRUCT(INTEL, 0C04) -//#define GMA_HASWELL_SDV_M_GT1_IG GFX_MODEL_CONSTRUCT(INTEL, 0C06) // AppleIntelHD5000Graphics.kext -//#define GMA_HASWELL_SDV_D_GT2_IG GFX_MODEL_CONSTRUCT(INTEL, 0C12) -//#define GMA_HASWELL_SDV_M_GT2_IG GFX_MODEL_CONSTRUCT(INTEL, 0C16) // AppleIntelHD5000Graphics.kext -//#define GMA_HASWELL_SDV_D_GT2_PLUS_IG GFX_MODEL_CONSTRUCT(INTEL, 0C22) // AppleIntelHD5000Graphics.kext -//#define GMA_HASWELL_SDV_M_GT2_PLUS_IG GFX_MODEL_CONSTRUCT(INTEL, 0C26) // AppleIntelHD5000Graphics.kext +#define GMA_HASWELL_SDV_D_GT1_IG GFX_MODEL_CONSTRUCT(INTEL, 0x0C02) +//#define GMA_HASWELL_E_HB GFX_MODEL_CONSTRUCT(INTEL, 0x0C04) // DRAM Controller +#define GMA_HASWELL_SDV_M_GT1_IG GFX_MODEL_CONSTRUCT(INTEL, 0x0C06) // Haswell SDV Mobile GT1 +#define GMA_HASWELL_SDV_D_GT2_IG GFX_MODEL_CONSTRUCT(INTEL, 0x0C12) +#define GMA_HASWELL_SDV_M_GT2_IG GFX_MODEL_CONSTRUCT(INTEL, 0x0C16) // Haswell SDV Mobile GT2 +#define GMA_HASWELL_SDV_D_GT2_PLUS_IG GFX_MODEL_CONSTRUCT(INTEL, 0x0C22) // Haswell HD Graphics - GTH +#define GMA_HASWELL_SDV_M_GT2_PLUS_IG GFX_MODEL_CONSTRUCT(INTEL, 0x0C26) // Haswell SDV Mobile GT3 //#define GMA_HASWELL_SDV_S_GT1_IG GFX_MODEL_CONSTRUCT(INTEL, 0x0C0A) //#define GMA_HASWELL_SDV_S_GT2_IG GFX_MODEL_CONSTRUCT(INTEL, 0x0C1A) //#define GMA_HASWELL_SDV_S_GT2_PLUS_IG GFX_MODEL_CONSTRUCT(INTEL, 0x0C2A) #define GMA_HASWELL_CRW_D_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0D02) -#define GMA_HASWELL_CRW_D_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0D12) // -#define GMA_HASWELL_CRW_D_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0D22) // +#define GMA_HASWELL_CRW_D_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0D12) // Intel(R) HD Graphics 5200 Drivers +#define GMA_HASWELL_CRW_D_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0D22) // Haswell CRW GT3 - Intel(R) Iris(TM) Pro Graphics 5200 //#define GMA_HASWELL_CRW_D_GT2_PLUS_IG GFX_MODEL_CONSTRUCT(INTEL, 0x0D32) -#define GMA_HASWELL_CRW_M_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0D06) -#define GMA_HASWELL_CRW_M_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0D16) // -#define GMA_HASWELL_CRW_M_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0D26) // AppleIntelHD5000Graphics.kext +#define GMA_HASWELL_CRW_M_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0D06) // Intel(R) HD Graphics 5200 +#define GMA_HASWELL_CRW_M_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0D16) // Intel(R) HD Graphics 5200 +#define GMA_HASWELL_CRW_M_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0D26) // Haswell CRW Mobile GT3 - Intel(R) Iris(TM) Pro Graphics 5200 Drivers #define GMA_HASWELL_CRW_S_GT1 GFX_MODEL_CONSTRUCT(INTEL, 0x0D0A) #define GMA_HASWELL_CRW_S_GT2 GFX_MODEL_CONSTRUCT(INTEL, 0x0D1A) #define GMA_HASWELL_CRW_S_GT3 GFX_MODEL_CONSTRUCT(INTEL, 0x0D2A) Index: branches/ErmaC/Enoch/i386/libsaio/bios.s =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/bios.s (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/bios.s (revision 2457) @@ -80,21 +80,21 @@ bits of code and data within the first 63.5k and modify the loaders to be able to load more than 63.5k. */ - .align 2 + .align 4 save_eax: .space 4 + .align 4 +save_edx: .space 4 .align 2 -save_edx: .space 4 - .align 1 save_es: .space 2 - .align 1 + .align 2 save_flag: .space 2 - .align 2 + .align 4 new_eax: .space 4 + .align 4 +new_edx: .space 4 .align 2 -new_edx: .space 4 - .align 1 new_es: .space 2 - .align 1 + .align 2 new_ds: .space 2 .section __INIT,__text // turbo - This code must reside within the first segment Index: branches/ErmaC/Enoch/i386/libsaio/device_inject.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/device_inject.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/device_inject.c (revision 2457) @@ -250,6 +250,7 @@ return 1; } +// devprop_generate_string optimized by cparm char *devprop_generate_string(DevPropString *string) { int len = string->length * 2; @@ -269,11 +270,13 @@ while(i < string->numentries) { - if (!(i < DEV_PROP_DEVICE_MAX_ENTRIES)) { + if (!(i < DEV_PROP_DEVICE_MAX_ENTRIES)) + { break; } - if(!len) { + if(!len) + { break; } @@ -292,7 +295,8 @@ len -= 24; for(x = 0;x < string->entries[i]->num_pci_devpaths; x++) { - if(!len) { + if(!len) + { break; } snprintf(buffer, len, "%02x%02x%04x%02x%02x", string->entries[i]->pci_dev_path[x].type, @@ -304,7 +308,8 @@ len -= 12; } - if(!len) { + if(!len) + { break; } @@ -317,7 +322,8 @@ uint8_t *dataptr = string->entries[i]->data; for(x = 0; (uint32_t)x < (string->entries[i]->length) - (24 + (6 * string->entries[i]->num_pci_devpaths)) ; x++) { - if(!len) { + if(!len) + { break; } snprintf(buffer, len, "%02x", *dataptr++); Index: branches/ErmaC/Enoch/i386/libsaio/hda.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/hda.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/hda.c (revision 2457) @@ -92,28 +92,30 @@ static hda_controller_devices know_hda_controller[] = { //8086 Intel Corporation - { HDA_INTEL_HASWELL, "Haswell" }, - { HDA_INTEL_CRYSTAL, "Crystal Well" }, - { HDA_INTEL_CPT, "6 Series/C200 Series Chipset Family" }, - { HDA_INTEL_PATSBURG,"C600/X79 series chipset" }, - { HDA_INTEL_PPT1, "7 Series/C210 Series Chipset Family" }, - { HDA_INTEL_82801F, "82801FB/FBM/FR/FW/FRW (ICH6 Family)" }, - { HDA_INTEL_63XXESB, "631x/631xESB/632xESB" }, - { HDA_INTEL_82801G, "NM10/ICH7 Family" }, - { HDA_INTEL_82801H, "82801H (ICH8 Family)" }, - { HDA_INTEL_82801I, "82801I (ICH9 Family)" }, - { HDA_INTEL_82801JI, "82801JI (ICH10 Family)" }, - { HDA_INTEL_82801JD, "82801JD/DO (ICH10 Family) " }, - { HDA_INTEL_PCH, "5 Series/3400 Series" }, - { HDA_INTEL_PCH2, "5 Series/3400 Series" }, - { HDA_INTEL_SCH, "System Controller Hub (SCH Poulsbo)" }, - { HDA_INTEL_LPT1, "Lynx Point" }, - { HDA_INTEL_LPT2, "Lynx Point" }, - { HDA_INTEL_LYNX, "Lynx Point-LP" }, - { HDA_INTEL_LYNX2, "Lynx Point-LP" }, + { HDA_INTEL_HASWELL, "Haswell-ULT" }, + { HDA_INTEL_HASWELL2, "Haswell" }, + { HDA_INTEL_CRYSTAL, "Crystal Well" }, + { HDA_INTEL_CPT, "6 Series/C200 Series Chipset Family" }, + { HDA_INTEL_PATSBURG, "C600/X79 series chipset" }, + { HDA_INTEL_PPT1, "7 Series/C210 Series Chipset Family" }, + { HDA_INTEL_82801F, "82801FB/FBM/FR/FW/FRW (ICH6 Family)" }, + { HDA_INTEL_63XXESB, "631x/631xESB/632xESB" }, + { HDA_INTEL_82801G, "NM10/ICH7 Family" }, + { HDA_INTEL_82801H, "82801H (ICH8 Family)" }, + { HDA_INTEL_82801I, "82801I (ICH9 Family)" }, + { HDA_INTEL_82801JI, "82801JI (ICH10 Family)" }, + { HDA_INTEL_82801JD, "82801JD/DO (ICH10 Family) " }, + { HDA_INTEL_PCH, "5 Series/3400 Series" }, + { HDA_INTEL_PCH2, "5 Series/3400 Series" }, + { HDA_INTEL_SCH, "System Controller Hub (SCH Poulsbo)" }, + { HDA_INTEL_SCH2, "Wildcat Point" }, + { HDA_INTEL_LPT1, "Wellsburg" }, + { HDA_INTEL_LPT2, "Wellsburg" }, + { HDA_INTEL_LYNX, "Lynx Point" }, + { HDA_INTEL_LYNX2, "Lynx Point" }, //10de NVIDIA Corporation - { HDA_NVIDIA_MCP51, "MCP51" }, - { HDA_NVIDIA_MCP55, "MCP55" }, + { HDA_NVIDIA_MCP51, "MCP51" }, + { HDA_NVIDIA_MCP55, "MCP55" }, { HDA_NVIDIA_MCP61_1, "MCP61" }, { HDA_NVIDIA_MCP61_2, "MCP61" }, { HDA_NVIDIA_MCP65_1, "MCP65" }, @@ -485,7 +487,8 @@ int i; /* Get format for vendor ID */ - switch (controller_vendor_id) { + switch (controller_vendor_id) + { case ATI_VENDORID: name_format = "ATI %s HDA Controller (HDMi)"; break; @@ -511,8 +514,10 @@ break; } - for (i = 0; i < HDAC_DEVICES_LEN; i++) { - if (know_hda_controller[i].model == controller_model) { + for (i = 0; i < HDAC_DEVICES_LEN; i++) + { + if (know_hda_controller[i].model == controller_model) + { snprintf(desc, sizeof(desc), name_format, know_hda_controller[i].desc); return desc; } @@ -575,26 +580,29 @@ verbose("- AUDIO DEVICE INFO -\n"); verbose("--------------------------------\n"); - switch ((controller_device_id << 16) | controller_vendor_id) { + switch ((controller_device_id << 16) | controller_vendor_id) + { /*********************************************************************** * The above case are intended as for HDEF device at address 0x001B0000 ***********************************************************************/ case HDA_INTEL_HASWELL: + case HDA_INTEL_HASWELL2: case HDA_INTEL_CRYSTAL: case HDA_INTEL_CPT: case HDA_INTEL_PATSBURG: - case HDA_INTEL_PPT1: + case HDA_INTEL_PPT1: case HDA_INTEL_82801F: case HDA_INTEL_63XXESB: case HDA_INTEL_82801G: case HDA_INTEL_82801H: - case HDA_INTEL_82801I: + case HDA_INTEL_82801I: case HDA_INTEL_82801JI: case HDA_INTEL_82801JD: case HDA_INTEL_PCH: case HDA_INTEL_PCH2: - case HDA_INTEL_SCH: + case HDA_INTEL_SCH: + case HDA_INTEL_SCH2: case HDA_INTEL_LPT1: case HDA_INTEL_LPT2: case HDA_INTEL_LYNX: @@ -603,7 +611,8 @@ if (getValueForKey(kHDEFLayoutID, &value, &len, &bootInfo->chameleonConfig) && len == HDEF_LEN * 2) { uint8_t new_HDEF_layout_id[HDEF_LEN]; - if (hex2bin(value, new_HDEF_layout_id, HDEF_LEN) == 0) { + if (hex2bin(value, new_HDEF_layout_id, HDEF_LEN) == 0) + { memcpy(default_HDEF_layout_id, new_HDEF_layout_id, HDEF_LEN); verbose("Using user supplied HDEF layout-id: 0x%02x, 0x%02x, 0x%02x, 0x%02x\n", default_HDEF_layout_id[0], default_HDEF_layout_id[1], default_HDEF_layout_id[2], default_HDEF_layout_id[3]); @@ -620,6 +629,7 @@ devprop_add_value(device, "device_type", (uint8_t *)"High Definition Audio", 22); // 0x16 devprop_add_value(device, "built-in", &BuiltIn, 1); devprop_add_value(device, "hda-gfx", (uint8_t *)"onboard-1", 10); // 0x0a + // "AFGLowPowerState" = <03000000> break; /**************************************************************************************************************** Index: branches/ErmaC/Enoch/i386/libsaio/hda.h =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/hda.h (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/hda.h (revision 2457) @@ -90,7 +90,8 @@ /* Intel */ #define INTEL_VENDORID 0x8086 -#define HDA_INTEL_HASWELL HDA_MODEL_CONSTRUCT(INTEL, 0x0c0c) +#define HDA_INTEL_HASWELL HDA_MODEL_CONSTRUCT(INTEL, 0x0a0c) +#define HDA_INTEL_HASWELL2 HDA_MODEL_CONSTRUCT(INTEL, 0x0c0c) #define HDA_INTEL_CRYSTAL HDA_MODEL_CONSTRUCT(INTEL, 0x0d0c) #define HDA_INTEL_CPT HDA_MODEL_CONSTRUCT(INTEL, 0x1c20) #define HDA_INTEL_PATSBURG HDA_MODEL_CONSTRUCT(INTEL, 0x1d20) @@ -105,6 +106,7 @@ #define HDA_INTEL_PCH HDA_MODEL_CONSTRUCT(INTEL, 0x3b56) #define HDA_INTEL_PCH2 HDA_MODEL_CONSTRUCT(INTEL, 0x3b57) #define HDA_INTEL_SCH HDA_MODEL_CONSTRUCT(INTEL, 0x811b) +#define HDA_INTEL_SCH2 HDA_MODEL_CONSTRUCT(INTEL, 0x8ca0) #define HDA_INTEL_LPT1 HDA_MODEL_CONSTRUCT(INTEL, 0x8d20) #define HDA_INTEL_LPT2 HDA_MODEL_CONSTRUCT(INTEL, 0x8d21) #define HDA_INTEL_LYNX HDA_MODEL_CONSTRUCT(INTEL, 0x9c20) Index: branches/ErmaC/Enoch/i386/libsaio/dram_controllers.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/dram_controllers.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/dram_controllers.c (revision 2457) @@ -528,7 +528,7 @@ { 0x8086, 0x29C0, "82G33/G31/P35/P31", setup_p35, get_fsb_i965, get_timings_p35 }, { 0x8086, 0x29D0, "82Q33 Express", setup_p35, get_fsb_i965, get_timings_p35 }, { 0x8086, 0x29E0, "82X38/X48 Express", setup_p35, get_fsb_i965, get_timings_p35 }, -// { 0x8086, 0x29F0, "3200/3210 Chipset", NULL, NULL, NULL }, + { 0x8086, 0x29F0, "3200/3210", setup_p35, get_fsb_i965, get_timings_p35 }, { 0x8086, 0x2E00, "Eaglelake", setup_p35, get_fsb_i965, get_timings_p35 }, { 0x8086, 0x2E10, "Q45/Q43", setup_p35, get_fsb_i965, get_timings_p35 }, Index: branches/ErmaC/Enoch/i386/libsaio/nvidia.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/nvidia.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/nvidia.c (revision 2457) @@ -181,6 +181,7 @@ { 0x10DE0046, "GeForce 6800 GT" }, { 0x10DE0047, "GeForce 6800 GS" }, { 0x10DE0048, "GeForce 6800 XT" }, + { 0x10DE0049, "NV40GL" }, { 0x10DE004D, "Quadro FX 3400" }, { 0x10DE004E, "Quadro FX 4000" }, // 0050 - 005F @@ -192,6 +193,7 @@ { 0x10DE0091, "GeForce 7800 GTX" }, { 0x10DE0092, "GeForce 7800 GT" }, { 0x10DE0093, "GeForce 7800 GS" }, + { 0x10DE0094, "GeForce 7800SE/XT/LE/LT/ZT" }, { 0x10DE0095, "GeForce 7800 SLI" }, { 0x10DE0098, "GeForce Go 7800" }, { 0x10DE0099, "GeForce Go 7800 GTX" }, @@ -235,6 +237,7 @@ { 0x10DE0148, "GeForce Go 6600" }, { 0x10DE0149, "GeForce Go 6600 GT" }, { 0x10DE014A, "Quadro NVS 440" }, + { 0x10DE014B, "NV43" }, { 0x10DE014C, "Quadro FX 550" }, { 0x10DE014D, "Quadro FX 550" }, { 0x10DE014E, "Quadro FX 540" }, @@ -257,7 +260,9 @@ // 0170 - 017F // 0180 - 018F // 0190 - 019F + { 0x10DE0190, "GeForce 8800" }, { 0x10DE0191, "GeForce 8800 GTX" }, + { 0x10DE0192, "GeForce 8800" }, { 0x10DE0193, "GeForce 8800 GTS" }, { 0x10DE0194, "GeForce 8800 Ultra" }, { 0x10DE0197, "Tesla C870" }, @@ -315,6 +320,8 @@ { 0x10DE0293, "GeForce 7950 GX2" }, { 0x10DE0294, "GeForce 7950 GX2" }, { 0x10DE0295, "GeForce 7950 GT" }, + { 0x10DE0296, "G71" }, + { 0x10DE0297, "GeForce Go 7950 GTX" }, { 0x10DE0298, "GeForce Go 7900 GS" }, { 0x10DE0299, "GeForce Go 7900 GTX" }, { 0x10DE029A, "Quadro FX 2500M" }, @@ -924,7 +931,7 @@ { 0x10DE0DCE, "GeForce GT 555M" }, // { 0x10DE0DCF, "N12P-GT-B" }, // 0DD0 - 0DDF - // { 0x10DE0DD0, "N11E-GT" }, + { 0x10DE0DD0, "N11E-GT" }, { 0x10DE0DD1, "GeForce GTX 460M" }, { 0x10DE0DD2, "GeForce GT 445M" }, { 0x10DE0DD3, "GeForce GT 435M" }, @@ -932,7 +939,7 @@ { 0x10DE0DD8, "Quadro 2000" }, { 0x10DE0DDA, "Quadro 2000M" }, { 0x10DE0DDE, "GF106-ES" }, - // { 0x10DE0DDF, "GF106-INT" }, + { 0x10DE0DDF, "GF106-INT" }, // 0DE0 - 0DEF { 0x10DE0DE0, "GeForce GT 440" }, { 0x10DE0DE1, "GeForce GT 430" }, @@ -947,7 +954,7 @@ { 0x10DE0DEC, "GeForce GT 525M" }, { 0x10DE0DED, "GeForce GT 520M" }, { 0x10DE0DEE, "GeForce GT 415M" }, - { 0x10DE0DEF, "N13P-NS1-A1" }, + { 0x10DE0DEF, "NVS 5400M" }, // 0DF0 - 0DFF { 0x10DE0DF0, "GeForce GT 425M" }, { 0x10DE0DF1, "GeForce GT 420M" }, @@ -962,7 +969,7 @@ { 0x10DE0DFA, "Quadro 1000M" }, { 0x10DE0DFC, "NVS 5200M" }, { 0x10DE0DFE, "GF108 ES" }, - // { 0x10DE0DFF, "GF108 INT" }, + { 0x10DE0DFF, "GF108 INT" }, // 0E00 - 0E0F // 0E10 - 0E1F // 0E20 - 0E2F @@ -970,17 +977,17 @@ { 0x10DE0E22, "GeForce GTX 460" }, { 0x10DE0E23, "GeForce GTX 460 SE" }, { 0x10DE0E24, "GeForce GTX 460" }, - // { 0x10DE0E25, "D12U-50" }, + { 0x10DE0E25, "D12U-50" }, { 0x10DE0E28, "GeForce GTX 460" }, // 0E30 - 0E3F { 0x10DE0E30, "GeForce GTX 470M" }, { 0x10DE0E31, "GeForce GTX 485M" }, - // { 0x10DE0E32, "N12E-GT" }, + { 0x10DE0E32, "N12E-GT" }, { 0x10DE0E38, "GF104GL" }, { 0x10DE0E3A, "Quadro 3000M" }, { 0x10DE0E3B, "Quadro 4000M" }, - // { 0x10DE0E3E, "GF104-ES" }, - // { 0x10DE0E3F, "GF104-INT" }, + { 0x10DE0E3E, "GF104-ES" }, + { 0x10DE0E3F, "GF104-INT" }, // 0E40 - 0E4F // 0E50 - 0E5F // 0E60 - 0E6F @@ -996,6 +1003,7 @@ // 0F00 - 0F0F { 0x10DE0F00, "GeForce GT 630" }, { 0x10DE0F01, "GeForce GT 620" }, + { 0x10DE0F02, "GeForce GT 730" }, // 0F10 - 0F1F // 0F20 - 0F2F // 0F30 - 0F3F @@ -1012,7 +1020,9 @@ { 0x10DE0FC1, "GeForce GT 640" }, { 0x10DE0FC2, "GeForce GT 630" }, { 0x10DE0FC6, "GeForce GTX 650" }, + { 0x10DE0FC8, "GeForce GT 740" }, { 0x10DE0FCD, "GeForce GT 755M" }, + { 0x10DE0FCE, "GeForce GT 640M LE" }, // 0FD0 - 0FDF { 0x10DE0FD1, "GeForce GT 650M" }, { 0x10DE0FD2, "GeForce GT 640M" }, @@ -1021,15 +1031,29 @@ { 0x10DE0FD5, "GeForce GT 650M" }, { 0x10DE0FD8, "GeForce GT 640M" }, { 0x10DE0FD9, "GeForce GT 645M" }, + { 0x10DE0FDA, "GK107-ES-A1" }, { 0x10DE0FDB, "GK107-ESP-A1" }, + { 0x10DE0FDC, "GK107-INT22-A1" }, { 0x10DE0FDF, "GeForce GT 740M" }, // 0FE0 - 0FEF { 0x10DE0FE0, "GeForce GTX 660M" }, { 0x10DE0FE1, "GeForce GT 730M" }, { 0x10DE0FE3, "GeForce GT 745M" }, { 0x10DE0FE4, "GeForce GT 750M" }, + { 0x10DE0FE5, "GeForce K340 USM" }, + { 0x10DE0FE6, "NVS K1 USM" }, + { 0x10DE0FE7, "Generic K1 USM / GRID K100" }, + { 0x10DE0FE9, "GeForce GT 750M" }, + { 0x10DE0FEA, "GeForce GT 755M" }, + { 0x10DE0FEF, "GRID K340" }, // 0FF0 - 0FFF - { 0x10DE0FF2, "VGX K1" }, + { 0x10DE0FF0, "NB1Q" }, + { 0x10DE0FF1, "NVS 1000" }, + { 0x10DE0FF2, "GRID K1" }, + { 0x10DE0FF3, "Quadro K420" }, + { 0x10DE0FF5, "Tesla K1 USM" }, + { 0x10DE0FF6, "Quadro K1100M" }, + { 0x10DE0FF7, "Quadro K1 USM" }, // K1 USM / GRID K120Q / GRID K140Q { 0x10DE0FF8, "Quadro K500M" }, { 0x10DE0FF9, "Quadro K2000D" }, { 0x10DE0FFA, "Quadro K600" }, @@ -1039,11 +1063,18 @@ { 0x10DE0FFE, "Quadro K2000" }, { 0x10DE0FFF, "Quadro 410" }, // 1000 - 100F + { 0x10DE1001, "GeForce GTX TITAN Z" }, { 0x10DE1003, "GeForce GTX Titan LE" }, { 0x10DE1004, "GeForce GTX 780" }, { 0x10DE1005, "GeForce GTX Titan" }, + { 0x10DE1006, "GeForce GTX 780 Ti" }, + { 0x10DE1007, "GeForce GTX 780" }, + { 0x10DE1008, "GeForce GTX 780 Ti" }, { 0x10DE100A, "GeForce GTX 780 Ti" }, +// { 0x10DE100B, "Graphics Device" }, // GK110 + { 0x10DE100C, "GeForce GTX Titan Black" }, // 1010 - 101F + { 0x10DE101E, "Tesla K20X" }, // GK110GL { 0x10DE101F, "Tesla K20" }, // 1020 - 102F { 0x10DE1020, "Tesla K20X" }, @@ -1051,7 +1082,15 @@ { 0x10DE1022, "Tesla K20c" }, { 0x10DE1026, "Tesla K20s" }, { 0x10DE1028, "Tesla K20m" }, + { 0x10DE102A, "Tesla K40t" }, // GK110BGL +// { 0x10DE102B, "Graphics Device" }, // GK110BGL +// { 0x10DE102C, "Graphics Device" }, // GK110BGL + { 0x10DE102D, "Tesla K80" }, // GK110BGL (2x) + { 0x10DE102E, "Tesla K40d" }, // GK110BGL + { 0x10DE102F, "Tesla Stella Solo" }, // GK110BGL // 1030 - 103F +// { 0x10DE1030, "" }, // GK110 + { 0x10DE103F, "Tesla Stella SXM" }, // GK110 // 1040 - 104F { 0x10DE1040, "GeForce GT 520" }, // { 0x10DE1041, "D13M1-45" }, @@ -1060,6 +1099,8 @@ { 0x10DE1049, "GeForce GT 620" }, { 0x10DE104A, "GeForce GT 610" }, { 0x10DE104B, "GeForce GT 625 (OEM)" }, + { 0x10DE104C, "GeForce GT 705" }, // GF119 + { 0x10DE104D, " GeForce GT 710" }, // GF119 // 1050 - 105F { 0x10DE1050, "GeForce GT 520M" }, { 0x10DE1051, "GeForce GT 520MX" }, @@ -1117,15 +1158,15 @@ { 0x10DE1140, "GeForce GT 610M" }, { 0x10DE1141, "GeForce 610M" }, { 0x10DE1142, "GeForce 620M" }, - // { 0x10DE1143, "N13P-GV" }, - // { 0x10DE1144, "GF117" }, - // { 0x10DE1145, "GF117" }, - // { 0x10DE1146, "GF117" }, - // { 0x10DE1147, "GF117" }, + { 0x10DE1143, "N13P-GV" }, + { 0x10DE1144, "GF117" }, + { 0x10DE1145, "GF117" }, + { 0x10DE1146, "GF117" }, + { 0x10DE1147, "GF117" }, { 0x10DE1149, "GF117-ES" }, - // { 0x10DE114A, "GF117-INT" }, - // { 0x10DE114B, "PCI-GEN3-B" }, - // 1150 - 115F + { 0x10DE114A, "GF117-INT" }, + { 0x10DE114B, "PCI-GEN3-B" }, + { 0x10DE1150, "N13M-NS" }, // 1160 - 116F // 1170 - 117F // 1180 - 118F @@ -1133,7 +1174,7 @@ { 0x10DE1182, "GeForce GTX 760 Ti" }, { 0x10DE1183, "GeForce GTX 660 Ti" }, { 0x10DE1184, "GeForce GTX 770" }, - { 0x10DE1185, "GeForce GTX 660" }, + { 0x10DE1185, "GeForce GTX 660 OEM" }, { 0x10DE1187, "GeForce GTX 760" }, { 0x10DE1188, "GeForce GTX 690" }, { 0x10DE1189, "GeForce GTX 670" }, @@ -1142,13 +1183,16 @@ { 0x10DE118E, "GeForce GTX 760 (192-bit)" }, { 0x10DE118F, "Tesla K10" }, // 1190 - 119F + { 0x10DE1191, "GeForce GTX 760" }, // GK104 { 0x10DE1192, "GeForce GK104" }, { 0x10DE1193, "GeForce GTX 760 Ti" }, + { 0x10DE1194, "Tesla K8" }, // GK104 + { 0x10DE1195, "GeForce GTX 660" }, { 0x10DE1198, "GeForce GTX 880M" }, { 0x10DE1199, "GeForce GTX 870M" }, - { 0x10DE119a, "GeForce GTX 860M" }, - { 0x10DE119d, "GeForce GTX 775M" }, // Mac Edition - { 0x10DE119e, "GeForce GTX 780M" }, // Mac Edition + { 0x10DE119A, "GeForce GTX 860M" }, + { 0x10DE119D, "GeForce GTX 775M" }, // Mac Edition + { 0x10DE119E, "GeForce GTX 780M" }, // Mac Edition { 0x10DE119F, "GeForce GTX 780M" }, // 11A0 - 11AF { 0x10DE11A0, "GeForce GTX 680M" }, @@ -1156,9 +1200,11 @@ { 0x10DE11A2, "GeForce GTX 675MX" }, // Mac Edition { 0x10DE11A3, "GeForce GTX 680MX" }, { 0x10DE11A7, "GeForce GTX 675MX" }, + { 0x10DE11AF, "GRID IceCube" }, // GF104M // 11B0 - 11BF { 0x10DE11B0, "GRID K240Q" }, // K260Q vGPU { 0x10DE11B1, "GRID K2 Tesla USM" }, + { 0x10DE11B4, "Quadro K4200" }, { 0x10DE11B6, "Quadro K3100M" }, { 0x10DE11B7, "Quadro K4100M" }, { 0x10DE11B8, "Quadro K5100M" }, @@ -1167,7 +1213,7 @@ { 0x10DE11BC, "Quadro K5000M" }, { 0x10DE11BD, "Quadro K4000M" }, { 0x10DE11BE, "Quadro K3000M" }, - { 0x10DE11BF, "VGX K2" }, + { 0x10DE11BF, "GRID K2" }, // 11C0 - 11CF { 0x10DE11C0, "GeForce GTX 660" }, { 0x10DE11C2, "GeForce GTX 650 Ti BOOST" }, @@ -1180,12 +1226,13 @@ { 0x10DE11D0, "GK106-INT353" }, // 11E0 - 11EF { 0x10DE11E0, "GeForce GTX 770M" }, - { 0x10DE11E1, "N14E-GE-B-A1" }, + { 0x10DE11E1, "GeForce GTX 765M" }, { 0x10DE11E2, "GeForce GTX 765M" }, { 0x10DE11E3, "GeForce GTX 760M" }, // 11F0 - 11FF { 0x10DE11FA, "Quadro K4000" }, { 0x10DE11FC, "Quadro 2100M" }, + { 0x10DE11FF, "NB1Q" }, // // 1200 - 120F { 0x10DE1200, "GeForce GTX 560 Ti" }, { 0x10DE1201, "GeForce GTX 560" }, @@ -1199,7 +1246,7 @@ { 0x10DE1211, "GeForce GTX 580M" }, { 0x10DE1212, "GeForce GTX 675M" }, { 0x10DE1213, "GeForce GTX 670M" }, - //{ 0x10DE121F, "GF114-INT" }, + { 0x10DE121F, "GF114-INT" }, { 0x10DE1240, "GeForce GT 620M" }, { 0x10DE1241, "GeForce GT 545" }, { 0x10DE1243, "GeForce GT 545" }, @@ -1221,6 +1268,7 @@ { 0x10DE1282, "GeForce GT 640" }, { 0x10DE1284, "GeForce GT 630" }, { 0x10DE1286, "GeForce GT 720" }, + { 0x10DE1287, "GeForce GT 730" }, // GK208 // 1290 - 129F { 0x10DE1290, "GeForce GT 730M" }, { 0x10DE1291, "GeForce GT 735M" }, @@ -1231,7 +1279,7 @@ { 0x10DE1296, "GeForce 825M" }, // GK208M { 0x10DE1298, "GeForce GT 720M" }, // 12A0 - 12AF - //{ 0x10DE12A0, "GeForce GT ???" }, + { 0x10DE12A0, "GK208" }, { 0x10DE12AF, "GK208-INT" }, { 0x10DE12B0, "GK208-CS-Q" }, { 0x10DE12B9, "Quadro K610M" }, @@ -1246,10 +1294,60 @@ { 0x10DE1380, "GeForce GTX 750 Ti" }, { 0x10DE1381, "GeForce GTX 750" }, { 0x10DE1382, "GeForce GTX 745" }, +// { 0x10DE1383, "Graphics Device" }, // GM107 + { 0x10DE1389, "GRID M3" }, // GM107 { 0x10DE1390, "GeForce 845M" }, { 0x10DE1391, "GeForce GTX 850M" }, { 0x10DE1392, "GeForce GTX 860M" }, - { 0x10DE1393, "GeForce 840M" } + { 0x10DE1393, "GeForce 840M" }, + { 0x10DE1398, "GeForce N15S-GT1R" }, // + { 0x10DE13AD, "GM107 INT52" }, // + { 0x10DE13AE, "GM107 CS1" }, // +// { 0x10DE13AF, "Graphics Device" }, // GM107GLM + { 0x10DE13B3, "Quadro K2200M" }, // + { 0x10DE13BA, "Quadro K2200" }, + { 0x10DE13BB, "Quadro K620" }, + { 0x10DE13BD, "Tesla M40" }, // GM107GLM + { 0x10DE13BE, "GM107 CS1" }, // + { 0x10DE13BF, "GM107 INT52" }, // + // 12B0 - 12BF + { 0x10DE13C0, "GeForce GTX 980" }, // GM107GLM +// { 0x10DE13C1, "Graphics Device" }, // GM107GLM + { 0x10DE13C2, "GeForce GTX 970" }, // GM107GLM +// { 0x10DE13C3, "Graphics Device" }, // GM107GLM + { 0x10DE13D7, "GeForce GTX 980M" }, // + { 0x10DE13D8, "GeForce GTX 970M" }, // +// { 0x10DE13D9, "Graphics Device" }, // +// { 0x10DE13F0, "Graphics Device" }, // GM107GLM +// { 0x10DE13F1, "Graphics Device" }, // GM107GLM +// { 0x10DE1401, "Graphics Device" }, // +// { 0x10DE1402, "Graphics Device" }, // +// { 0x10DE143F, "Graphics Device" }, // +// { 0x10DE1600, "Graphics Device" }, // +// { 0x10DE1601, "Graphics Device" }, // +// { 0x10DE1602, "Graphics Device" }, // +// { 0x10DE1603, "Graphics Device" }, // +// { 0x10DE1630, "Graphics Device" }, // +// { 0x10DE1631, "Graphics Device" }, // +// { 0x10DE1780, "Graphics Device" }, // +// { 0x10DE1781, "Graphics Device" }, // +// { 0x10DE1782, "Graphics Device" }, // +// { 0x10DE1783, "Graphics Device" }, // + { 0x10DE1789, "GRID M3-3020" }, // + { 0x10DE1790, "N15S-GX" }, // + { 0x10DE1791, "N15P-GT" }, // + { 0x10DE1792, "N15P-GX" }, // +// { 0x10DE17B3, "Quadro" }, // +// { 0x10DE17BA, "Quadro" }, // +// { 0x10DE17BB, "Quadro" }, // +// { 0x10DE17BD, "Graphics Device" }, // + { 0x10DE17BE, "GM107 CS1" } // GM107 +// { 0x10DE17C1, "Graphics Device" }, // +// { 0x10DE17C2, "Graphics Device" }, // +// { 0x10DE17EE, "Graphics Device" }, // +// { 0x10DE17EF, "Graphics Device" }, // +// { 0x10DE17F0, "Graphics Device" }, // +// { 0x10DE17FF, "Graphics Device" }, // }; static nvidia_card_info_t nvidia_card_exceptions[] = { @@ -1439,6 +1537,8 @@ { 0x10DE1180, 0x38422682, "EVGA GTX 680 SC" }, { 0x10DE1180, 0x38422683, "EVGA GTX 680 SC" }, + { 0x10DE1185, 0x10DE106F, "nVidia GeForce GTX 760 OEM" }, // GK104 + { 0x10DE1187, 0x14583614, "GV-N760OC-4GD" }, { 0x10DE1189, 0x10438405, "Asus GTX 670 Direct CU II TOP" }, @@ -1466,7 +1566,13 @@ static int patch_nvidia_rom(uint8_t *rom) { - if (!rom || (rom[0] != 0x55 && rom[1] != 0xaa)) { + if (!rom) + { + printf("ROM not found\n"); + return PATCH_ROM_FAILED; + } + if (rom[0] != 0x55 && rom[1] != 0xaa) + { printf("False ROM signature: 0x%02x%02x\n", rom[0], rom[1]); return PATCH_ROM_FAILED; } @@ -1678,7 +1784,7 @@ //ErmaC added selector for Chameleon "old" style in System Profiler if (getBoolForKey(kNvidiaGeneric, &showGeneric, &bootInfo->chameleonConfig)) { - verbose("\tNvidiaGeneric = Yes\n"); + verbose("NvidiaGeneric = Yes\n"); for (i = 1; i < (sizeof(nvidia_card_generic) / sizeof(nvidia_card_generic[0])); i++) { if (nvidia_card_generic[i].device == device_id) { @@ -1693,7 +1799,6 @@ for (i = 0; i < (sizeof(nvidia_card_exceptions) / sizeof(nvidia_card_exceptions[0])); i++) { if ((nvidia_card_exceptions[i].device == device_id) && (nvidia_card_exceptions[i].subdev == subsys_id)) { return nvidia_card_exceptions[i].name; - break; } } } @@ -1868,7 +1973,6 @@ option_rom_pci_header_t *rom_pci_header; volatile uint8_t *regs; uint8_t *rom = NULL; - uint8_t *nvRom; uint8_t nvCardType = 0; unsigned long long videoRam = 0; uint32_t nvBiosOveride; @@ -1913,6 +2017,7 @@ return false; } } else { + uint8_t *nvRom; rom = malloc(NVIDIA_ROM_SIZE); // Otherwise read bios from card nvBiosOveride = 0; @@ -1920,6 +2025,7 @@ // PROM first // Enable PROM access (REG32(NV_PBUS_PCI_NV_20)) = NV_PBUS_PCI_NV_20_ROM_SHADOW_DISABLED; + nvRom = (uint8_t*)®s[NV_PROM_OFFSET]; // Valid Signature ? @@ -1955,7 +2061,7 @@ if ((nvPatch = patch_nvidia_rom(rom)) == PATCH_ROM_FAILED) { printf("ERROR: nVidia ROM Patching Failed!\n"); free(rom); - //return false; + return false; } rom_pci_header = (option_rom_pci_header_t*)(rom + *(uint16_t *)&rom[24]); Index: branches/ErmaC/Enoch/i386/libsaio/ati.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/ati.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/ati.c (revision 2457) @@ -387,7 +387,7 @@ // { 0x95CC, 0x00000000, CHIP_FAMILY_RV620, "ATI Radeon HD", kIago }, // { 0x95CD, 0x00000000, CHIP_FAMILY_RV620, "ATI Radeon HD", kIago }, // { 0x95CE, 0x00000000, CHIP_FAMILY_RV620, "ATI Radeon HD", kIago }, -// { 0x95CF, 0x00000000, CHIP_FAMILY_RV620, "ATI Radeon HD", kIago }, + { 0x95CF, 0x00000000, CHIP_FAMILY_RV620, "ATI FirePro 2260", kIago }, /* IGP */ @@ -462,7 +462,7 @@ // { 0x983E, 0x00000000, CHIP_FAMILY_KABINI, "AMD Radeon HD", kNull }, // { 0x983F, 0x00000000, CHIP_FAMILY_KABINI, "AMD Radeon HD", kNull }, - // MULLINS + // MULLINS { 0x9850, 0x00000000, CHIP_FAMILY_MULLINS, "AMD Radeon HD", kNull }, // Mobile { 0x9851, 0x00000000, CHIP_FAMILY_MULLINS, "AMD Radeon HD", kNull }, // Mobile { 0x9852, 0x00000000, CHIP_FAMILY_MULLINS, "AMD Radeon HD", kNull }, // Mobile @@ -519,6 +519,10 @@ // { 0x99A2, 0x00000000, CHIP_FAMILY_ARUBA, "AMD Radeon HD", kNull }, // Mobile // { 0x99A4, 0x00000000, CHIP_FAMILY_ARUBA, "AMD Radeon HD", kNull }, + { 0x6613, 0x00000000, CHIP_FAMILY_BONAIRE, "AMD Radeon R7 240", kFutomaki }, + { 0x665C, 0x00000000, CHIP_FAMILY_BONAIRE, "AMD Radeon HD 7790", kFutomaki }, + { 0x665D, 0x00000000, CHIP_FAMILY_BONAIRE, "AMD Radeon R9 260", kFutomaki }, + /* Evergreen */ // CYPRESS @@ -546,7 +550,7 @@ { 0x68A9, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI FirePro V5800 (FireGL)", kHoolock }, { 0x68B0, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 5770 Series", kHoolock }, // Mobile { 0x68B1, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 5770 Series", kHoolock }, - { 0x68B8, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 5770 Series", kHoolock }, + { 0x68B8, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 5770 Series", kVervet }, { 0x68B9, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 5700 Series", kHoolock }, { 0x68BA, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 6770 Series", kHoolock }, { 0x68BC, 0x00000000, CHIP_FAMILY_JUNIPER, "AMD FireStream 9370", kHoolock }, @@ -627,7 +631,7 @@ { 0x6770, 0x00000000, CHIP_FAMILY_CAICOS, "AMD Radeon HD 6400 Series", kBulrushes }, { 0x6772, 0x00000000, CHIP_FAMILY_CAICOS, "AMD Radeon HD 7400A Series", kBulrushes }, { 0x6778, 0x00000000, CHIP_FAMILY_CAICOS, "AMD Radeon HD 7000 Series", kBulrushes }, - { 0x6779, 0x00000000, CHIP_FAMILY_CAICOS, "AMD Radeon HD 7450 Series", kBulrushes }, + { 0x6779, 0x00000000, CHIP_FAMILY_CAICOS, "AMD Radeon HD 6450/7450/8450/R5 230", kBulrushes }, { 0x677B, 0x00000000, CHIP_FAMILY_CAICOS, "AMD Radeon HD 7400 Series", kBulrushes }, /* Southen Islands */ @@ -642,9 +646,9 @@ { 0x6790, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, { 0x6791, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, { 0x6792, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, - { 0x6798, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7970 X-Edition", kFutomaki }, + { 0x6798, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7970X/8970/R9 280X", kFutomaki }, { 0x6799, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7990 Series", kAji }, - { 0x679A, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon R9 280", kFutomaki }, + { 0x679A, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7950/8950/R9 280", kFutomaki }, { 0x679B, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, { 0x679E, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7870 XT", kFutomaki }, { 0x679F, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7950 Series", kFutomaki }, @@ -916,9 +920,6 @@ return true; } -static const uint32_t ctm[] = {0x02, 0x10, 0x800, 0x400}; //mobile -static const uint32_t ctd[] = {0x04, 0x10, 0x800, 0x400}; //desktop - bool get_conntype_val(value_t *val) { //Connector types: @@ -989,7 +990,8 @@ } val->data = malloc(val->size); - if (!val->data) { + if (!val->data) + { return false; } @@ -1025,7 +1027,8 @@ bool get_platforminfo_val(value_t *val) { val->data = malloc(0x80); - if (!val->data) { + if (!val->data) + { return false; } bzero(val->data, 0x80); @@ -1049,7 +1052,8 @@ void free_val(value_t *val) { - if (val->type == kPtr) { + if (val->type == kPtr) + { free(val->data); } @@ -1120,19 +1124,22 @@ { option_rom_pci_header_t *rom_pci_header; - if (rom_header->signature != 0xaa55) { + if (rom_header->signature != 0xaa55) + { //verbose("invalid ROM signature %x\n", rom_header->signature); return false; } rom_pci_header = (option_rom_pci_header_t *)((uint8_t *)rom_header + rom_header->pci_header_offset); - if (rom_pci_header->signature != 0x52494350) { + if (rom_pci_header->signature != 0x52494350) + { //verbose("invalid ROM header %x\n", rom_pci_header->signature); return false; } - if (rom_pci_header->vendor_id != pci_dev->vendor_id || rom_pci_header->device_id != pci_dev->device_id) { + if (rom_pci_header->vendor_id != pci_dev->vendor_id || rom_pci_header->device_id != pci_dev->device_id) + { //verbose("invalid ROM vendor=%x deviceID=%d\n", rom_pci_header->vendor_id, rom_pci_header->device_id); return false; } @@ -1193,7 +1200,9 @@ // size in MB on evergreen // XXX watch for overflow!!! card->vram_size = RegRead32(R600_CONFIG_MEMSIZE) * 1024 * 1024; - } else { + } + else + { if (chip_family >= CHIP_FAMILY_R600) { card->vram_size = RegRead32(R600_CONFIG_MEMSIZE); @@ -1209,7 +1218,9 @@ { rom_addr = (option_rom_header_t *)(pci_config_read32(card->pci_dev->dev.addr, PCI_ROM_ADDRESS) & ~0x7ff); verbose(" @0x%x\n", rom_addr); - } else { + } + else + { rom_addr = (option_rom_header_t *)0xc0000; } @@ -1277,7 +1288,9 @@ } RegWrite32(R600_ROM_CNTL, (rom_cntl & ~R600_SCK_OVERWRITE)); - } else { + } + else + { RegWrite32(R600_ROM_CNTL, (rom_cntl | R600_SCK_OVERWRITE)); } @@ -1299,7 +1312,8 @@ RegWrite32(AVIVO_D2VGA_CONTROL, d2vga_control); RegWrite32(AVIVO_VGA_RENDER_CONTROL, vga_render_control); RegWrite32(R600_ROM_CNTL, rom_cntl); - } else + } + else if (chip_family >= CHIP_FAMILY_R600) { uint32_t viph_control = RegRead32(RADEON_VIPH_CONTROL); @@ -1457,7 +1471,9 @@ if (card->posted) { read_vbios(false); - } else { + } + else + { read_disabled_vbios(); } verbose("Video BIOS read from file\n"); @@ -1483,7 +1499,9 @@ // which means one of the fb's or kNull verbose("Framebuffer set to device's default: %s\n", card->cfg_name); - } else { + } + else + { // else, use the fb name returned by AtiConfig. verbose("(AtiConfig) Framebuffer set to: %s\n", card->cfg_name); } @@ -1495,7 +1513,9 @@ { card->ports = (uint8_t)n_ports; // use it. verbose("(AtiPorts) # of ports set to: %d\n", card->ports); - } else { + } + else + { // else, match cfg_name with card_configs list and retrive default nr of ports. for (i = 0; i < kCfgEnd; i++) { Index: branches/ErmaC/Enoch/i386/libsaio/load.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/load.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/load.c (revision 2457) @@ -18,12 +18,11 @@ * under the License. * * @APPLE_LICENSE_HEADER_END@ - */ -/* - * load.c - Functions for decoding a Mach-o Kernel. * - * Copyright (c) 1998-2003 Apple Computer, Inc. + * load.c - Functions for decoding a Mach-o Kernel. * + * Copyright (c) 1998-2003 Apple Computer, Inc. + * */ #include @@ -59,19 +58,23 @@ cpu_type_t fapcputype; uint32_t fapoffset; uint32_t fapsize; - - if (fhp->magic == FAT_MAGIC)/* 0xcafebabe */{ + + if (fhp->magic == FAT_MAGIC)/* 0xcafebabe */ + { nfat = fhp->nfat_arch; swapped = 0; - } else if (fhp->magic == FAT_CIGAM)/* 0xbebafeca */{ + } else if (fhp->magic == FAT_CIGAM)/* 0xbebafeca */ + { nfat = OSSwapInt32(fhp->nfat_arch); swapped = 1; } else { return -1; } - for (; nfat > 0; nfat--, fap++) { - if (swapped) { + for (; nfat > 0; nfat--, fap++) + { + if (swapped) + { fapcputype = OSSwapInt32(fap->cputype); fapoffset = OSSwapInt32(fap->offset); fapsize = OSSwapInt32(fap->size); @@ -81,14 +84,16 @@ fapsize = fap->size; } - if (fapcputype == archCpuType) { + if (fapcputype == archCpuType) + { *binary = (void *) ((unsigned long)*binary + fapoffset); size = fapsize; break; } } - if (length != 0) { + if (length != 0) + { *length = size; } @@ -129,8 +134,9 @@ { case CPU_TYPE_I386: - if (mH->magic != MH_MAGIC) { - error("Mach-O file has bad magic number\n"); + if (mH->magic != MH_MAGIC) + { + error("Mach-O (i386) file has bad magic number\n"); return -1; } @@ -139,12 +145,14 @@ case CPU_TYPE_X86_64: /* - if (mH->magic != MH_MAGIC_64 && mH->magic == MH_MAGIC) { + if (mH->magic != MH_MAGIC_64 && mH->magic == MH_MAGIC) + { return -1; } */ - if (mH->magic != MH_MAGIC_64) { - error("Mach-O file has bad magic number\n"); + if (mH->magic != MH_MAGIC_64) + { + error("Mach-O file (x86_64) has bad magic number\n"); return -1; } @@ -167,7 +175,8 @@ unsigned int load_addr; unsigned int load_size; - switch (cmd) { + switch (cmd) + { case LC_SEGMENT_64: case LC_SEGMENT: ret = DecodeSegment(cmdBase, &load_addr, &load_size); @@ -194,7 +203,8 @@ } - if (ret != 0) { + if (ret != 0) + { return -1; } @@ -222,7 +232,7 @@ cmdBase += cmdsize; } - + return ret; } Index: branches/ErmaC/Enoch/i386/libsaio/cpu.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/cpu.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/cpu.c (revision 2457) @@ -106,7 +106,7 @@ unsigned long pollCount; uint64_t retval = 0; int i; - + /* Time how many TSC ticks elapse in 30 msec using the 8254 PIT * counter 2. We run this loop 3 times to make sure the cache * is hot and we take the minimum delta from all of the runs. @@ -176,7 +176,7 @@ unsigned long pollCount; uint64_t retval = 0; int i; - + /* Time how many APERF ticks elapse in 30 msec using the 8254 PIT * counter 2. We run this loop 3 times to make sure the cache * is hot and we take the minimum delta from all of the runs. @@ -210,7 +210,7 @@ /* mperfDelta is now the least number of MPERF ticks the processor made in * a timespan of 0.03 s (e.g. 30 milliseconds) */ - + if (aperfDelta > (1ULL<<32)) { retval = 0; } else { @@ -273,7 +273,7 @@ { int i; DBG("CPUID Raw Values:\n"); - for (i=0; iCPU.CPUID[i][0], p->CPU.CPUID[i][1], p->CPU.CPUID[i][2], p->CPU.CPUID[i][3]); @@ -315,11 +315,14 @@ * Find the number of enabled cores and threads * (which determines whether SMT/Hyperthreading is active). */ - switch (p->CPU.Model) { + switch (p->CPU.Model) + { case CPU_MODEL_NEHALEM: case CPU_MODEL_FIELDS: case CPU_MODEL_DALES: case CPU_MODEL_NEHALEM_EX: + case CPU_MODEL_JAKETOWN: + case CPU_MODEL_SANDYBRIDGE: case CPU_MODEL_IVYBRIDGE: case CPU_MODEL_HASWELL: case CPU_MODEL_HASWELL_SVR: @@ -327,19 +330,16 @@ case CPU_MODEL_HASWELL_ULT: case CPU_MODEL_CRYSTALWELL: msr = rdmsr64(MSR_CORE_THREAD_COUNT); - p->CPU.NoCores = bitfield((uint32_t)msr, 31, 16); - p->CPU.NoThreads = bitfield((uint32_t)msr, 15, 0); + p->CPU.NoCores = (uint8_t)bitfield((uint32_t)msr, 31, 16); + p->CPU.NoThreads = (uint8_t)bitfield((uint32_t)msr, 15, 0); break; case CPU_MODEL_DALES_32NM: case CPU_MODEL_WESTMERE: case CPU_MODEL_WESTMERE_EX: - case CPU_MODEL_SANDYBRIDGE: - case CPU_MODEL_JAKETOWN: - // 0x2A 0x2D msr = rdmsr64(MSR_CORE_THREAD_COUNT); - p->CPU.NoCores = bitfield((uint32_t)msr, 19, 16); - p->CPU.NoThreads = bitfield((uint32_t)msr, 15, 0); + p->CPU.NoCores = (uint8_t)bitfield((uint32_t)msr, 19, 16); + p->CPU.NoThreads = (uint8_t)bitfield((uint32_t)msr, 15, 0); break; default: @@ -363,7 +363,7 @@ p->CPU.NoCores = bitfield(p->CPU.CPUID[CPUID_4][0], 31, 26) + 1; } - /* get brand string (if supported) */ + /* get BrandString (if supported) */ /* Copyright: from Apple's XNU cpuid.c */ if (p->CPU.CPUID[CPUID_80][0] > 0x80000004) { uint32_t reg[4]; @@ -383,12 +383,9 @@ break; } } - - strlcpy(p->CPU.BrandString, s, sizeof(p->CPU.BrandString)); - if (!strncmp(p->CPU.BrandString, CPU_STRING_UNKNOWN, - MIN(sizeof(p->CPU.BrandString), - strlen(CPU_STRING_UNKNOWN) + 1))) { + if (!strncmp(p->CPU.BrandString, CPU_STRING_UNKNOWN, MIN(sizeof(p->CPU.BrandString), strlen(CPU_STRING_UNKNOWN) + 1))) + { /* * This string means we have a firmware-programmable brand string, * and the firmware couldn't figure out what sort of CPU we have. @@ -396,46 +393,66 @@ p->CPU.BrandString[0] = '\0'; } } - + /* setup features */ - if ((bit(23) & p->CPU.CPUID[CPUID_1][3]) != 0) { + if ((bit(23) & p->CPU.CPUID[CPUID_1][3]) != 0) + { p->CPU.Features |= CPU_FEATURE_MMX; } - if ((bit(25) & p->CPU.CPUID[CPUID_1][3]) != 0) { + + if ((bit(25) & p->CPU.CPUID[CPUID_1][3]) != 0) + { p->CPU.Features |= CPU_FEATURE_SSE; } - if ((bit(26) & p->CPU.CPUID[CPUID_1][3]) != 0) { + + if ((bit(26) & p->CPU.CPUID[CPUID_1][3]) != 0) + { p->CPU.Features |= CPU_FEATURE_SSE2; } - if ((bit(0) & p->CPU.CPUID[CPUID_1][2]) != 0) { + + if ((bit(0) & p->CPU.CPUID[CPUID_1][2]) != 0) + { p->CPU.Features |= CPU_FEATURE_SSE3; } - if ((bit(19) & p->CPU.CPUID[CPUID_1][2]) != 0) { + + if ((bit(19) & p->CPU.CPUID[CPUID_1][2]) != 0) + { p->CPU.Features |= CPU_FEATURE_SSE41; } - if ((bit(20) & p->CPU.CPUID[CPUID_1][2]) != 0) { + + if ((bit(20) & p->CPU.CPUID[CPUID_1][2]) != 0) + { p->CPU.Features |= CPU_FEATURE_SSE42; } - if ((bit(29) & p->CPU.CPUID[CPUID_81][3]) != 0) { + + if ((bit(29) & p->CPU.CPUID[CPUID_81][3]) != 0) + { p->CPU.Features |= CPU_FEATURE_EM64T; } - if ((bit(5) & p->CPU.CPUID[CPUID_1][3]) != 0) { + + if ((bit(5) & p->CPU.CPUID[CPUID_1][3]) != 0) + { p->CPU.Features |= CPU_FEATURE_MSR; } + //if ((bit(28) & p->CPU.CPUID[CPUID_1][3]) != 0) { - if (p->CPU.NoThreads > p->CPU.NoCores) { + + if (p->CPU.NoThreads > p->CPU.NoCores) + { p->CPU.Features |= CPU_FEATURE_HTT; } tscFrequency = measure_tsc_frequency(); DBG("cpu freq classic = 0x%016llx\n", tscFrequency); /* if usual method failed */ - if ( tscFrequency < 1000 ) { //TEST + if ( tscFrequency < 1000 ) //TEST + { tscFrequency = timeRDTSC() * 20;//measure_tsc_frequency(); // DBG("cpu freq timeRDTSC = 0x%016llx\n", tscFrequency); } else { // DBG("cpu freq timeRDTSC = 0x%016llxn", timeRDTSC() * 20); } + fsbFrequency = 0; cpuFrequency = 0; @@ -468,7 +485,8 @@ bus_ratio_min = bitfield(msr, 47, 40); //valv: not sure about this one (Remarq.1) msr = rdmsr64(MSR_FLEX_RATIO); DBG("msr(%d): flex_ratio %08x\n", __LINE__, bitfield(msr, 31, 0)); - if (bitfield(msr, 16, 16)) { + if (bitfield(msr, 16, 16)) + { flex_ratio = bitfield(msr, 15, 8); /* bcc9: at least on the gigabyte h67ma-ud2h, where the cpu multipler can't be changed to @@ -478,48 +496,65 @@ causing the system to crash since tscGranularity is inadvertently set to 0. */ - if (flex_ratio == 0) { + if (flex_ratio == 0) + { /* Clear bit 16 (evidently the presence bit) */ wrmsr64(MSR_FLEX_RATIO, (msr & 0xFFFFFFFFFFFEFFFFULL)); msr = rdmsr64(MSR_FLEX_RATIO); DBG("Unusable flex ratio detected. Patched MSR now %08x\n", bitfield(msr, 31, 0)); - } else { - if (bus_ratio_max > flex_ratio) { + } + else + { + if (bus_ratio_max > flex_ratio) + { bus_ratio_max = flex_ratio; } } } - if (bus_ratio_max) { + if (bus_ratio_max) + { fsbFrequency = (tscFrequency / bus_ratio_max); } + //valv: Turbo Ratio Limit - if ((intelCPU != 0x2e) && (intelCPU != 0x2f)) { + if ((intelCPU != 0x2e) && (intelCPU != 0x2f)) + { msr = rdmsr64(MSR_TURBO_RATIO_LIMIT); cpuFrequency = bus_ratio_max * fsbFrequency; max_ratio = bus_ratio_max * 10; - } else { + } + else + { cpuFrequency = tscFrequency; } - if ((getValueForKey(kbusratio, &newratio, &len, &bootInfo->chameleonConfig)) && (len <= 4)) { + if ((getValueForKey(kbusratio, &newratio, &len, &bootInfo->chameleonConfig)) && (len <= 4)) + { max_ratio = atoi(newratio); max_ratio = (max_ratio * 10); - if (len >= 3) { + if (len >= 3) + { max_ratio = (max_ratio + 5); } verbose("Bus-Ratio: min=%d, max=%s\n", bus_ratio_min, newratio); // extreme overclockers may love 320 ;) - if ((max_ratio >= min_ratio) && (max_ratio <= 320)) { + if ((max_ratio >= min_ratio) && (max_ratio <= 320)) + { cpuFrequency = (fsbFrequency * max_ratio) / 10; - if (len >= 3) { + if (len >= 3) + { maxdiv = 1; - } else { + } + else + { maxdiv = 0; } - } else { + } + else + { max_ratio = (bus_ratio_max * 10); } } @@ -544,37 +579,53 @@ currdiv = bitfield(msr, 14, 14); // This will always be model >= 3 - if ((p->CPU.Family == 0x06 && p->CPU.Model >= 0x0e) || (p->CPU.Family == 0x0f)) { + if ((p->CPU.Family == 0x06 && p->CPU.Model >= 0x0e) || (p->CPU.Family == 0x0f)) + { /* On these models, maxcoef defines TSC freq */ maxcoef = bitfield(msr, 44, 40); - } else { + } + else + { /* On lower models, currcoef defines TSC freq */ /* XXX */ maxcoef = currcoef; } - if (maxcoef) { - if (maxdiv) { + if (maxcoef) + { + if (maxdiv) + { fsbFrequency = ((tscFrequency * 2) / ((maxcoef * 2) + 1)); - } else { + } + else + { fsbFrequency = (tscFrequency / maxcoef); } - if (currdiv) { + + if (currdiv) + { cpuFrequency = (fsbFrequency * ((currcoef * 2) + 1) / 2); - } else { + } + else + { cpuFrequency = (fsbFrequency * currcoef); } + DBG("max: %d%s current: %d%s\n", maxcoef, maxdiv ? ".5" : "",currcoef, currdiv ? ".5" : ""); } break; } } /* Mobile CPU */ - if (rdmsr64(MSR_IA32_PLATFORM_ID) & (1<<28)) { + if (rdmsr64(MSR_IA32_PLATFORM_ID) & (1<<28)) + { p->CPU.Features |= CPU_FEATURE_MOBILE; } - } else if ((p->CPU.Vendor == CPUID_VENDOR_AMD) && (p->CPU.Family == 0x0f)) { - switch(p->CPU.ExtFamily) { + } + else if ((p->CPU.Vendor == CPUID_VENDOR_AMD) && (p->CPU.Family == 0x0f)) + { + switch(p->CPU.ExtFamily) + { case 0x00: /* K8 */ msr = rdmsr64(K8_FIDVID_STATUS); maxcoef = bitfield(msr, 21, 16) / 2 + 4; @@ -585,7 +636,8 @@ msr = rdmsr64(K10_COFVID_STATUS); do_cpuid2(0x00000006, 0, p->CPU.CPUID[CPUID_6]); // EffFreq: effective frequency interface - if (bitfield(p->CPU.CPUID[CPUID_6][2], 0, 0) == 1) { + if (bitfield(p->CPU.CPUID[CPUID_6][2], 0, 0) == 1) + { //uint64_t mperf = measure_mperf_frequency(); uint64_t aperf = measure_aperf_frequency(); cpuFrequency = aperf; @@ -611,31 +663,47 @@ break; } - if (maxcoef) { - if (currdiv) { - if (!currcoef) { + if (maxcoef) + { + if (currdiv) + { + if (!currcoef) + { currcoef = maxcoef; } - if (!cpuFrequency) { + if (!cpuFrequency) + { fsbFrequency = ((tscFrequency * currdiv) / currcoef); - } else { + } + else + { fsbFrequency = ((cpuFrequency * currdiv) / currcoef); } DBG("%d.%d\n", currcoef / currdiv, ((currcoef % currdiv) * 100) / currdiv); - } else { - if (!cpuFrequency) { + } + else + { + if (!cpuFrequency) + { fsbFrequency = (tscFrequency / maxcoef); - } else { + } + else + { fsbFrequency = (cpuFrequency / maxcoef); } DBG("%d\n", currcoef); } - } else if (currcoef) { - if (currdiv) { + } + else if (currcoef) + { + if (currdiv) + { fsbFrequency = ((tscFrequency * currdiv) / currcoef); DBG("%d.%d\n", currcoef / currdiv, ((currcoef % currdiv) * 100) / currdiv); - } else { + } + else + { fsbFrequency = (tscFrequency / currcoef); DBG("%d\n", currcoef); } @@ -644,7 +712,8 @@ } #if 0 - if (!fsbFrequency) { + if (!fsbFrequency) + { fsbFrequency = (DEFAULT_FSB * 1000); cpuFrequency = tscFrequency; DBG("0 ! using the default value for FSB !\n"); Index: branches/ErmaC/Enoch/i386/libsaio/platform.h =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/platform.h (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/platform.h (revision 2457) @@ -26,26 +26,36 @@ #define CPU_MODEL_PENRYN 0x17 // Wolfdale, Yorkfield, Harpertown, Penryn #define CPU_MODEL_WOLFDALE 0x17 // #define CPU_MODEL_NEHALEM 0x1A // Bloomfield. Nehalem-EP, Nehalem-WS, Gainestown -#define CPU_MODEL_ATOM 0x1C // Pineview +#define CPU_MODEL_ATOM 0x1C // Pineview, Bonnell #define CPU_MODEL_XEON_MP 0x1D // MP 7400 #define CPU_MODEL_FIELDS 0x1E // Lynnfield, Clarksfield, Jasper Forest #define CPU_MODEL_DALES 0x1F // Havendale, Auburndale #define CPU_MODEL_DALES_32NM 0x25 // Clarkdale, Arrandale #define CPU_MODEL_ATOM_SAN 0x26 // Lincroft -#define CPU_MODEL_LINCROFT 0x27 // +#define CPU_MODEL_LINCROFT 0x27 // Bonnell #define CPU_MODEL_SANDYBRIDGE 0x2A // Sandy Bridge #define CPU_MODEL_WESTMERE 0x2C // Gulftown, Westmere-EP, Westmere-WS #define CPU_MODEL_JAKETOWN 0x2D // Sandy Bridge-E, Sandy Bridge-EP #define CPU_MODEL_NEHALEM_EX 0x2E // Beckton #define CPU_MODEL_WESTMERE_EX 0x2F // Westmere-EX -#define CPU_MODEL_ATOM_2000 0x36 // Cedarview +//#define CPU_MODEL_BONNELL_ATOM 0x35 // Bonnell +#define CPU_MODEL_ATOM_2000 0x36 // Cedarview / Saltwell +#define CPU_MODEL_SILVERMONT 0x37 // Atom Silvermont #define CPU_MODEL_IVYBRIDGE 0x3A // Ivy Bridge #define CPU_MODEL_HASWELL 0x3C // Haswell DT +#define CPU_MODEL_BROADWELL 0x3D // Core M, Broadwell / Core-AVX2 #define CPU_MODEL_IVYBRIDGE_XEON 0x3E // Ivy Bridge Xeon -#define CPU_MODEL_HASWELL_SVR 0x3F // Haswell MB +#define CPU_MODEL_HASWELL_SVR 0x3F // Haswell Server //#define CPU_MODEL_HASWELL_H 0x?? // Haswell H #define CPU_MODEL_HASWELL_ULT 0x45 // Haswell ULT -#define CPU_MODEL_CRYSTALWELL 0x46 // Haswell ULX +#define CPU_MODEL_CRYSTALWELL 0x46 // Crystal Well +// 4A silvermont / atom +#define CPU_MODEL_AVOTON 0x4D // Silvermont/Avoton Atom C2000 +// 4E Core??? +#define CPU_MODEL_BRODWELL_SVR 0x4F // Broadwell Server +#define CPU_MODEL_BRODWELL_MSVR 0x56 // Broadwell Micro Server +// 5A silvermont / atom +// 5D silvermont / atom /* CPUID Vendor */ #define CPUID_VENDOR_INTEL 0x756E6547 @@ -277,6 +287,7 @@ #define SMB_MEM_TYPE_DDR2 19 #define SMB_MEM_TYPE_FBDIMM 20 #define SMB_MEM_TYPE_DDR3 24 // Supported in 10.5.6+ AppleSMBIOS +#define SMB_MEM_TYPE_DDR4 26 /* Memory Configuration Types */ #define SMB_MEM_CHANNEL_UNKNOWN 0 @@ -310,7 +321,8 @@ //============================================================================== -typedef struct _PlatformInfo_t { +typedef struct _PlatformInfo_t +{ struct CPU { uint32_t Vendor; // Vendor - char Vendor[16]; char BrandString[48]; // 48 Byte Branding String Index: branches/ErmaC/Enoch/i386/libsaio/disk.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/disk.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/disk.c (revision 2457) @@ -681,20 +681,29 @@ // GUID's in LE form: // HFS+ partition - 48465300-0000-11AA-AA11-00306543ECAC -EFI_GUID const GPT_HFS_GUID = { 0x48465300, 0x0000, 0x11AA, { 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC } }; +EFI_GUID const GPT_HFS_GUID = { 0x48465300, 0x0000, 0x11AA, { 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC } }; // 0xAF00 "Apple HFS/HFS+" // turbo - Apple Boot Partition - 426F6F74-0000-11AA-AA11-00306543ECAC -EFI_GUID const GPT_BOOT_GUID = { 0x426F6F74, 0x0000, 0x11AA, { 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC } }; +EFI_GUID const GPT_BOOT_GUID = { 0x426F6F74, 0x0000, 0x11AA, { 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC } }; // 0xAB00 "Apple boot" // turbo - or an EFI System Partition - C12A7328-F81F-11D2-BA4B-00A0C93EC93B -EFI_GUID const GPT_EFISYS_GUID = { 0xC12A7328, 0xF81F, 0x11D2, { 0xBA, 0x4B, 0x00, 0xA0, 0xC9, 0x3E, 0xC9, 0x3B } }; +EFI_GUID const GPT_EFISYS_GUID = { 0xC12A7328, 0xF81F, 0x11D2, { 0xBA, 0x4B, 0x00, 0xA0, 0xC9, 0x3E, 0xC9, 0x3B } }; // 0xEF00 "EFI System" // zef - Basic Data Partition - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 for foreign OS support -EFI_GUID const GPT_BASICDATA_GUID = { 0xEBD0A0A2, 0xB9E5, 0x4433, { 0x87, 0xC0, 0x68, 0xB6, 0xB7, 0x26, 0x99, 0xC7 } }; +EFI_GUID const GPT_BASICDATA_GUID = { 0xEBD0A0A2, 0xB9E5, 0x4433, { 0x87, 0xC0, 0x68, 0xB6, 0xB7, 0x26, 0x99, 0xC7 } }; // 0x0100 "Microsoft basic data" // Microsoft Reserved Partition - E3C9E316-0B5C-4DB8-817DF92DF00215AE -EFI_GUID const GPT_BASICDATA2_GUID = { 0xE3C9E316, 0x0B5C, 0x4DB8, { 0x81, 0x7D, 0xF9, 0x2D, 0xF0, 0x02, 0x15, 0xAE } }; +EFI_GUID const GPT_BASICDATA2_GUID = { 0xE3C9E316, 0x0B5C, 0x4DB8, { 0x81, 0x7D, 0xF9, 0x2D, 0xF0, 0x02, 0x15, 0xAE } }; // 0x0C01 "Microsoft reserved" +// Apple OSX +//EFI_GUID const GPT_UFS_GUID = { 0x55465300, 0x0000, 0x11AA, { 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC } }; // 0xA800 "Apple UFS" +//EFI_GUID const GPT_RAID_GUID = { 0x52414944, 0x0000, 0x11AA, { 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC } }; // 0xAF01 "Apple RAID" +//EFI_GUID const GPT_RAID_OFFLINE_GUID = { 0x52414944, 0x5f4f, 0x11AA, { 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC } }; // 0xAF02 "Apple RAID offline" +//EFI_GUID const GPT_LABEL_GUID = { 0x4C616265, 0x6C00, 0x11AA, { 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC } }; // 0xAF03 "Apple label" +//EFI_GUID const GPT_APPLETV_GUID = { 0x5265636F, 0x7665, 0x11AA, { 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC } }; // 0xAF04 "Apple TV recovery" +//EFI_GUID const GPT_CORESTORAGE_GUID = { 0x53746F72, 0x6167, 0x11AA, { 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC } }; // 0xAF05 "Apple Core storage" +// same as Apple ZFS +//EFI_GUID const GPT_ZFS_GUID = { 0x6A898CC3, 0x1DD2, 0x11B2, { 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31 } }; // 0xBF01 "Solaris /usr & Apple ZFS BVRef newGPTBVRef( int biosdev, int partno, unsigned int blkoff, const gpt_ent * part, @@ -738,10 +747,12 @@ // Probe the filesystem. - if ( initFunc ) { + if ( initFunc ) + { bvr->flags |= kBVFlagNativeBoot; - if ( probe && initFunc( bvr ) != 0 ) { + if ( probe && initFunc( bvr ) != 0 ) + { // filesystem probe failed. DEBUG_DISK(("%s: failed probe on dev %x part %d\n", __FUNCTION__, biosdev, partno)); @@ -749,17 +760,23 @@ (*bvr->bv_free)(bvr); bvr = NULL; } - if ( readBootSector( biosdev, blkoff, (void *)0x7e00 ) == 0 ) { + if ( readBootSector( biosdev, blkoff, (void *)0x7e00 ) == 0 ) + { bvr->flags |= kBVFlagBootable; } - } else if ( readBootSector( biosdev, blkoff, (void *)0x7e00 ) == 0 ) { + } + else if ( readBootSector( biosdev, blkoff, (void *)0x7e00 ) == 0 ) + { bvr->flags |= kBVFlagForeignBoot; - } else { + } + else + { (*bvr->bv_free)(bvr); bvr = NULL; } } - if (bvr) { + if (bvr) + { bvr->flags |= bvrFlags; } return bvr; @@ -1556,47 +1573,66 @@ { bool valid = false; config_file_t systemVersion; - char dirSpec[512]; + char dirSpec[512]; sprintf(dirSpec, "hd(%d,%d)/System/Library/CoreServices/SystemVersion.plist", BIOS_DEV_UNIT(bvr), bvr->part_no); - - if (!loadConfigFile(dirSpec, &systemVersion)) { + + if (!loadConfigFile(dirSpec, &systemVersion)) + { valid = true; - } else { + } + else + { sprintf(dirSpec, "hd(%d,%d)/System/Library/CoreServices/ServerVersion.plist", BIOS_DEV_UNIT(bvr), bvr->part_no); if (!loadConfigFile(dirSpec, &systemVersion)) - { + { bvr->OSisServer = true; valid = true; } } - - if (valid) { + + if (valid) + { const char *val; int len; - if (getValueForKey(kProductVersion, &val, &len, &systemVersion)) { + if (getValueForKey(kProductVersion, &val, &len, &systemVersion)) + { // getValueForKey uses const char for val // so copy it and trim *str = '\0'; - strncat(str, val, MIN(len, 4)); - } else { + // crazybirdy + if (len > 4 && (val[3] == '1')) + { + strncat(str, val, MIN(len, 5)); + } + else + { + strncat(str, val, MIN(len, 4)); + } + } + else + { valid = false; } } - if(!valid) { + if(!valid) + { int fh = -1; sprintf(dirSpec, "hd(%d,%d)/.PhysicalMediaInstall", BIOS_DEV_UNIT(bvr), bvr->part_no); fh = open(dirSpec, 0); - if (fh >= 0) { + if (fh >= 0) + { valid = true; bvr->OSisInstaller = true; strcpy(bvr->OSVersion, "10.7"); // 10.7 + close(fh); - } else { + } + else + { close(fh); } } @@ -1638,7 +1674,8 @@ close(fh); - if (!error) { + if (!error) + { label[fileSize] = '\0'; strcpy(bvr->altlabel, label); } @@ -1647,8 +1684,10 @@ // Check for SystemVersion.plist or ServerVersion.plist to determine if a volume hosts an installed system. - if (bvr->flags & kBVFlagNativeBoot) { - if (getOSVersion(bvr,bvr->OSVersion) == true) { + if (bvr->flags & kBVFlagNativeBoot) + { + if (getOSVersion(bvr,bvr->OSVersion) == true) + { bvr->flags |= kBVFlagSystemVolume; } } Index: branches/ErmaC/Enoch/i386/libsaio/pci_setup.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/pci_setup.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/pci_setup.c (revision 2457) @@ -68,7 +68,9 @@ if (getBoolForKey(kSkipAtiGfx, &doit, &bootInfo->chameleonConfig) && doit) { verbose("Skip ATi/AMD gfx device!\n"); - } else { + } + else + { setup_ati_devprop(current); } break; @@ -77,7 +79,9 @@ if (getBoolForKey(kSkipIntelGfx, &doit, &bootInfo->chameleonConfig) && doit) { verbose("Skip Intel gfx device!\n"); - } else { + } + else + { setup_gma_devprop(current); } break; @@ -86,7 +90,9 @@ if (getBoolForKey(kSkipNvidiaGfx, &doit, &bootInfo->chameleonConfig) && doit) { verbose("Skip Nvidia gfx device!\n"); - } else { + } + else + { setup_nvidia_devprop(current); } break; Index: branches/ErmaC/Enoch/i386/libsaio/smbios.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/smbios.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/smbios.c (revision 2457) @@ -267,7 +267,7 @@ kSMBBaseBoardSerialNumberKey, NULL, &defaultBaseBoard.serialNumber }, // SMboardserial - C02140302D5DMT31M {kSMBTypeBaseBoard, kSMBString, getFieldOffset(SMBBaseBoard, assetTag), - kSMBBaseBoardAssetTagKey, NULL, &defaultBaseBoard.assetTag }, // SMboardassetag - Base Board Asset Tag# + kSMBBaseBoardAssetTagKey, NULL, &defaultBaseBoard.assetTag }, // SMboardassettag - Base Board Asset Tag# {kSMBTypeBaseBoard, kSMBString, getFieldOffset(SMBBaseBoard, locationInChassis), kSMBBaseBoardLocationInChassisKey, NULL, &defaultBaseBoard.locationInChassis }, // SMboardlocation - Part Component @@ -430,19 +430,23 @@ #define kDefaultMacMiniBoardProduct "Mac-F4208EAA" // MacMini5,1 Mac-8ED6AF5B48C039E1 - MM51.88Z.0077.B0F.1110201309 + // MacMini5,2 Mac-4BC72D62AD45599E + // MacMini5,3 -//#define kDefaultMacMini "Macmini5,3" -//#define kDefaultMacMiniBIOSVersion " MM51.88Z.0077.B10.1201241549" -//#define kDefaultMacMiniBoardProduct "Mac-F65AE981FFA204ED" -//#define kDefaultMacMiniBIOSReleaseDate "01/24/2012" +// Bios: MM51.88Z.0077.B10.1201241549 +// Board: Mac-F65AE981FFA204ED +// Data: 01/24/2012 -// MacMini 6,1 - Mac-F65AE981FFA204ED +// MacMini 6,1 +// Bios: MM61.88Z.0106.B03.1211161202 +// Board: Mac-F65AE981FFA204ED +// Data: 10/14/2012 + // MacMini 6,2 -//#define kDefaultMacMini62 "Macmini6,2" -//#define kDefaultMacMini62BIOSVersion " MM61.88Z.0106.B00.1208091121" -//#define kDefaultMacMini62BoardProduct "Mac-F65AE981FFA204ED" -//#define kDefaultMacMini62BIOSReleaseDate "10/14/2012" +// Bios: MM61.88Z.0106.B03.1211161202 +// Board: Mac-FC02E91DDD3FA6A4 +// Data: 10/14/2012 //=========== MacBook =========== #define kDefaultMacBookFamily "MacBook" @@ -458,14 +462,23 @@ // MacBookAir4,1 - Mac-C08A6BB70A942AC2 // MacBookAir4,2 - Mac-742912EFDBEE19B3 + +// MacBookAir5,2 #define kDefaultMacBookAir "MacBookAir5,2" #define kDefaultMacBookAirBIOSVersion " MBA51.88Z.00EF.B00.1205221442" #define kDefaultMacBookAirBIOSReleaseDate "05/10/12" #define kDefaultMacBookBoardAirProduct "Mac-2E6FAB96566FE58C" -// MacBookAir6,1 - Mac-35C1E88140C3E6CF - MBA61.88Z.0099.B04.1309271229 -// MacBookAir6,2 - Mac-7DF21CB3ED6977E5 - MBA62.88Z.00EF.B00.1205221442 +// MacBookAir6,1 +// Bios: MBA61.88Z.0099.B04.1309271229 +// Board: Mac-35C1E88140C3E6CF +// Data: 24/06/13 +// MacBookAir6,2 +// Bios: MBA62.88Z.00EF.B00.1205221442 +// Board: Mac-7DF21CB3ED6977E5 +// Data: 24/06/13 + //=========== MacBookPro =========== #define kDefaultMacBookProFamily "MacBook Pro" //#define kDefaultMacBookProBoardAssetTagNumber "MacBook-Aluminum" @@ -475,19 +488,25 @@ #define kDefaultMacBookProBIOSReleaseDate "02/27/08" #define kDefaultMacBookProBoardProduct "Mac-F42C89C8" -//#define kDefaultMacBookPro "MacBookPro8,1" -//#define kDefaultMacBookProBIOSVersion " MBP81.88Z.0047.B24.1110141131" -//#define kDefaultMacBookProBoardProduct "Mac-94245B3640C91C81" -//#define kDefaultMacBookProBIOSReleaseDate "10/14/11" +// MacBookPro8,1 +// Bios: MBP81.88Z.0047.B24.1110141131 +// Board: Mac-94245B3640C91C81 +// Data: 10/14/11 -// MacBookPro8,2 - Mac_94245A3940C91C80 -// MacBookPro8,3 - Mac-942459F5819B171B +// MacBookPro8,2 +// Bios: +// Board: Mac_94245A3940C91C80 +// Data: 10/14/11 +// MacBookPro8,3 +// Bios: +// Board: Mac-942459F5819B171B +// Data: 10/31/11 + // MacBookPro10,2 -//#define kDefaultMacBookProIvy "MacBookPro10,2" -//#define kDefaultMacBookProIvyBIOSVersion " MBP102.88Z.0106.B01.1208311637" -//#define kDefaultMacBookProIvyBoardProduct "Mac-AFD8A9D944EA4843" -//#define kDefaultMacBookProIvyBIOSReleaseDate "10/02/2012" +// Bios: MBP102.88Z.0106.B01.1208311637 +// Board: Mac-AFD8A9D944EA4843 +// Data: 10/02/2012 // MacBookPro11,2 - Mac-3CBD00234E554E41 - MBP112.88Z.0138.B03.1310291227 // MacBookPro11,3 - Mac-2BD1B31983FE1663 - MBP112.88Z.0138.B02.1310181745 @@ -506,7 +525,7 @@ // iMac11,1 core i3/i5/i7 #define kDefaultiMacNehalem "iMac11,1" #define kDefaultiMacNehalemBIOSVersion " IM111.88Z.0034.B02.1003171314" -#define kDefaultiMacNehalemBIOSReleaseDate "03/30/10" +#define kDefaultiMacNehalemBIOSReleaseDate "03/17/10" #define kDefaultiMacNehalemBoardProduct "Mac-F2268DAE" // iMac11,2 // iMac11,3 @@ -514,14 +533,13 @@ // iMac12,1 #define kDefaultiMacSandy "iMac12,1" #define kDefaultiMacSandyBIOSVersion " IM121.88Z.0047.B00.1102091756" -#define kDefaultiMacSandyBIOSReleaseDate "01/02/08" +#define kDefaultiMacSandyBIOSReleaseDate "04/22/11" #define kDefaultiMacSandyBoardProduct "Mac-942B5BF58194151B" -// iMac12,2 Mac-942B59F58194171B -//#define kDefaultiMacSandy "iMac12,2" -//#define kDefaultiMacSandyBIOSVersion " IM121.88Z.0047.B1D.1110171110" -//#define kDefaultiMacSandyBIOSReleaseDate "10/17/11" -//#define kDefaultiMacSandyBoardProduct "Mac-942B59F58194171B" +// iMac12,2 +// Bios: IM121.88Z.0047.B1D.1110171110" +// Data: 10/17/11 +// Board: Mac-942B59F58194171B" // iMac13,1 // Bios: IM131.88Z.010A.B05.1211151146 @@ -529,11 +547,18 @@ // Board: Mac-00BE6ED71E35EB86 // iMac13,2 -//#define kDefaultiMacIvy "iMac13,2" -//#define kDefaultiMacIvyBIOSVersion " IM131.88Z.00CE.B00.1203281326" -//#define kDefaultiMacIvyBIOSReleaseDate "03/28/2012" -//#define kDefaultiMacIvyBoardProduct "Mac-FC02E91DDD3FA6A4" +// Bios: IM131.88Z.00CE.B00.1203281326 +// Data: 03/28/2012 +// Board: Mac-FC02E91DDD3FA6A4 +// iMac14,1 +// iMac14,2 +// iMac14,3 +// iMac14,4 +// Bios: IM144.88Z.0179.B03.1405241029 +// Data: 05/20/2014 +// Board: Mac-81E3E92DD6088272 + //=========== MacPro =========== #define kDefaultMacProFamily "MacPro" // MacPro's family = "MacPro" not "Mac Pro" //#define KDefauktMacProBoardAssetTagNumber "Pro-Enclosure" @@ -680,7 +705,6 @@ case CPU_MODEL_SANDYBRIDGE: // Intel Core i3, i5, i7 LGA1155 (32nm) case CPU_MODEL_IVYBRIDGE: // Intel Core i3, i5, i7 LGA1155 (22nm) - case CPU_MODEL_IVYBRIDGE_XEON: defaultBIOSInfo.version = kDefaultiMacSandyBIOSVersion; defaultBIOSInfo.releaseDate = kDefaultiMacSandyBIOSReleaseDate; defaultSystemInfo.productName = kDefaultiMacSandy; @@ -705,6 +729,7 @@ case CPU_MODEL_WESTMERE: // Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core case CPU_MODEL_WESTMERE_EX: // Intel Xeon E7 case CPU_MODEL_JAKETOWN: // Intel Core i7, Xeon E5 LGA2011 (32nm) + case CPU_MODEL_IVYBRIDGE_XEON: // Intel Core i7, Xeon E5 v2 LGA2011 (22nm) defaultBIOSInfo.version = kDefaultMacProWestmereBIOSVersion; defaultBIOSInfo.releaseDate = kDefaultMacProWestmereBIOSReleaseDate; defaultSystemInfo.productName = kDefaultMacProWestmere; Index: branches/ErmaC/Enoch/i386/libsaio/smbios_decode.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/smbios_decode.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/smbios_decode.c (revision 2457) @@ -401,6 +401,10 @@ } //------------------------------------------------------------------------------------------------------------------------- +// Memory Controller Information (Type 5) +//------------------------------------------------------------------------------------------------------------------------- + +//------------------------------------------------------------------------------------------------------------------------- // Memory Module Information (Type 6) //------------------------------------------------------------------------------------------------------------------------- //void decodeMemoryModule(SMBStructHeader *structHeader) @@ -417,6 +421,22 @@ //} //------------------------------------------------------------------------------------------------------------------------- +// Cache Information (Type 7) +//------------------------------------------------------------------------------------------------------------------------- + +//------------------------------------------------------------------------------------------------------------------------- +// Port Connector Information (Type 8) +//------------------------------------------------------------------------------------------------------------------------- + +//------------------------------------------------------------------------------------------------------------------------- +// System Slot Information (Type 9) +//------------------------------------------------------------------------------------------------------------------------- + +//------------------------------------------------------------------------------------------------------------------------- +// On Board Device Information (Type 10) +//------------------------------------------------------------------------------------------------------------------------- + +//------------------------------------------------------------------------------------------------------------------------- // OEM Strings (Type 11) //------------------------------------------------------------------------------------------------------------------------- void decodeSMBOEMStrings(SMBStructHeader *structHeader) @@ -431,8 +451,19 @@ } DBG("\n"); } +//------------------------------------------------------------------------------------------------------------------------- +// System Configuration Options (Type 12) +//------------------------------------------------------------------------------------------------------------------------- //------------------------------------------------------------------------------------------------------------------------- +// BIOS Language Information (Type 13) +//------------------------------------------------------------------------------------------------------------------------- + +//------------------------------------------------------------------------------------------------------------------------- +// Physical Memory Array (Type 16) +//------------------------------------------------------------------------------------------------------------------------- + +//------------------------------------------------------------------------------------------------------------------------- // MemoryDevice (Type 17) //------------------------------------------------------------------------------------------------------------------------- void decodeMemoryDevice(SMBStructHeader *structHeader) Index: branches/ErmaC/Enoch/i386/libsaio/hpet.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/hpet.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/hpet.c (revision 2457) @@ -141,24 +141,32 @@ int i; void *rcba; - for(i = 1; i < sizeof(lpc_controllers_nvidia) / sizeof(lpc_controllers_nvidia[0]); i++) { - if ((lpc_controllers_nvidia[i].vendor == lpc_dev->vendor_id) && (lpc_controllers_nvidia[i].device == lpc_dev->device_id)) { + for(i = 1; i < sizeof(lpc_controllers_nvidia) / sizeof(lpc_controllers_nvidia[0]); i++) + { + if ((lpc_controllers_nvidia[i].vendor == lpc_dev->vendor_id) && (lpc_controllers_nvidia[i].device == lpc_dev->device_id)) + { rcba = (void *)(pci_config_read32(lpc_dev->dev.addr, 0xF0) & 0xFFFFC000); DBG("nVidia(R) %s LPC Interface [%04x:%04x], MMIO @ 0x%lx\n", lpc_controllers_nvidia[i].name, lpc_dev->vendor_id, lpc_dev->device_id, rcba); - if (rcba == 0) { + if (rcba == 0) + { printf(" RCBA disabled; cannot force enable HPET\n"); - } else { + } + else + { val = REG32(rcba, 0x3404); - if (val & 0x80) { + if (val & 0x80) + { // HPET is enabled in HPTC. Just not reported by BIOS DBG(" HPET is enabled in HPTC, just not reported by BIOS\n"); hpet_address |= (val & 3) << 12 ; DBG(" HPET MMIO @ 0x%lx\n", hpet_address); - } else { + } + else + { // HPET disabled in HPTC. Trying to enable DBG(" HPET is disabled in HPTC, trying to enable\n"); REG32(rcba, 0x3404) = val | 0x80; @@ -168,7 +176,8 @@ // verify if the job is done val = REG32(rcba, 0x3404); - if (!(val & 0x80)) { + if (!(val & 0x80)) + { printf(" Failed to force enable HPET\n"); } } @@ -182,24 +191,32 @@ uint32_t val, hpet_address = 0xFED00000; int i; - for(i = 1; i < sizeof(lpc_controllers_via) / sizeof(lpc_controllers_via[0]); i++) { - if ((lpc_controllers_via[i].vendor == lpc_dev->vendor_id) && (lpc_controllers_via[i].device == lpc_dev->device_id)) { + for(i = 1; i < sizeof(lpc_controllers_via) / sizeof(lpc_controllers_via[0]); i++) + { + if ((lpc_controllers_via[i].vendor == lpc_dev->vendor_id) && (lpc_controllers_via[i].device == lpc_dev->device_id)) + { val = pci_config_read32(lpc_dev->dev.addr, 0x68); DBG("VIA %s LPC Interface [%04x:%04x], MMIO\n", lpc_controllers_via[i].name, lpc_dev->vendor_id, lpc_dev->device_id); - if (val & 0x80) { + if (val & 0x80) + { hpet_address = (val & ~0x3ff); DBG("HPET at 0x%lx\n", hpet_address); - } else { + } + else + { val = 0xfed00000 | 0x80; pci_config_write32(lpc_dev->dev.addr, 0x68, val); val = pci_config_read32(lpc_dev->dev.addr, 0x68); - if (val & 0x80) { + if (val & 0x80) + { hpet_address = (val & ~0x3ff); DBG("Force enabled HPET at 0x%lx\n", hpet_address); - } else { + } + else + { DBG("Unable to enable HPET"); } } @@ -214,24 +231,30 @@ void *rcba; /* LPC on Intel ICH is always (?) at 00:1f.0 */ - for(i = 1; i < sizeof(lpc_controllers_intel) / sizeof(lpc_controllers_intel[0]); i++) { - if ((lpc_controllers_intel[i].vendor == lpc_dev->vendor_id) && (lpc_controllers_intel[i].device == lpc_dev->device_id)) { + for(i = 1; i < sizeof(lpc_controllers_intel) / sizeof(lpc_controllers_intel[0]); i++) + { + if ((lpc_controllers_intel[i].vendor == lpc_dev->vendor_id) && (lpc_controllers_intel[i].device == lpc_dev->device_id)) + { rcba = (void *)(pci_config_read32(lpc_dev->dev.addr, 0xF0) & 0xFFFFC000); DBG("Intel(R) %s LPC Interface [%04x:%04x], MMIO @ 0x%lx\n", lpc_controllers_intel[i].name, lpc_dev->vendor_id, lpc_dev->device_id, rcba); - if (rcba == 0) { + if (rcba == 0) printf(" RCBA disabled; cannot force enable HPET\n"); - } else { + else + { val = REG32(rcba, 0x3404); - if (val & 0x80) { + if (val & 0x80) + { // HPET is enabled in HPTC. Just not reported by BIOS DBG(" HPET is enabled in HPTC, just not reported by BIOS\n"); hpet_address |= (val & 3) << 12 ; DBG(" HPET MMIO @ 0x%lx\n", hpet_address); - } else { + } + else + { // HPET disabled in HPTC. Trying to enable DBG(" HPET is disabled in HPTC, trying to enable\n"); REG32(rcba, 0x3404) = val | 0x80; @@ -241,7 +264,8 @@ // verify if the job is done val = REG32(rcba, 0x3404); - if (!(val & 0x80)) { + if (!(val & 0x80)) + { printf(" Failed to force enable HPET\n"); } } @@ -252,7 +276,8 @@ void force_enable_hpet(pci_dt_t *lpc_dev) { - switch(lpc_dev->vendor_id) { + switch(lpc_dev->vendor_id) + { case 0x8086: force_enable_hpet_intel(lpc_dev); break; Index: branches/ErmaC/Enoch/i386/libsaio/cache.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/cache.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/cache.c (revision 2457) @@ -173,7 +173,7 @@ { break; } - + if (entry->time < oldestTime) { oldestTime = entry->time; Index: branches/ErmaC/Enoch/i386/libsaio/stringTable.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/stringTable.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/stringTable.c (revision 2457) @@ -36,6 +36,8 @@ bool sysConfigValid; +#if UNUSED + /* * Compare a string to a key with quoted characters */ @@ -70,8 +72,6 @@ return 0; } -#if UNUSED - static void eatThru(char val, const char **table_p) { register const char *table = *table_p; @@ -592,7 +592,8 @@ { int fd, count; - if ((fd = open_bvdev("bt(0,0)", configFile, 0)) < 0) { + if ((fd = open_bvdev("bt(0,0)", configFile, 0)) < 0) + { return -1; } // read file @@ -613,14 +614,16 @@ int loadSystemConfig(config_file_t *config) { char *dirspec[] = { + "/OS X Install Data/com.apple.Boot.plist", "/Library/Preferences/SystemConfiguration/com.apple.Boot.plist", - "/OS X Install Data/com.apple.Boot.plist", }; int i, fd, count, ret=-1; - for(i = 0; i< sizeof(dirspec)/sizeof(dirspec[0]); i++) { - if ((fd = open(dirspec[i], 0)) >= 0) { + for(i = 0; i< sizeof(dirspec)/sizeof(dirspec[0]); i++) + { + if ((fd = open(dirspec[i], 0)) >= 0) + { // read file count = read(fd, config->plist, IO_CONFIG_DATA_SIZE); close(fd); @@ -656,22 +659,30 @@ int i; - for(i = 0; i< sizeof(dirspec)/sizeof(dirspec[0]); i++) { - if ( loadChameleonConfigForDevice(config, "rd(0,0)", dirspec[i]) == 0 ) { + for(i = 0; i< sizeof(dirspec)/sizeof(dirspec[0]); i++) + { + if ( loadChameleonConfigForDevice(config, "rd(0,0)", dirspec[i]) == 0 ) + { return 0; } - if ( loadChameleonConfigForDevice(config, "", dirspec[i]) == 0 ) { + + if ( loadChameleonConfigForDevice(config, "", dirspec[i]) == 0 ) + { return 0; } - if ( loadChameleonConfigForDevice(config, "bt(0,0)", dirspec[i]) == 0 ) { + + if ( loadChameleonConfigForDevice(config, "bt(0,0)", dirspec[i]) == 0 ) + { return 0; } BVRef bvr; - for ( bvr = chain; bvr; bvr = bvr->next ) { /* C99 Error */ + for ( bvr = chain; bvr; bvr = bvr->next ) /* C99 Error */ + { char device[256]; getDeviceDescription(bvr, device); - if ( loadChameleonConfigForDevice(config, device, dirspec[i]) == 0 ) { + if ( loadChameleonConfigForDevice(config, device, dirspec[i]) == 0 ) + { return 0; } } @@ -691,7 +702,8 @@ snprintf(full_path, sizeof(full_path), "%s%s", device, path); - if ((fd = open(full_path, 0)) >= 0) { + if ((fd = open(full_path, 0)) >= 0) + { // Check for depreciated file names and annoy the user about it. if(strstr(full_path, "com.apple.Boot.plist")) { printf("%s is depreciated.\n", full_path); @@ -726,8 +738,10 @@ int i, fd, count, ret=-1; - for(i = 0; i< sizeof(dirspec)/sizeof(dirspec[0]); i++) { - if ((fd = open(dirspec[i], 0)) >= 0) { + for(i = 0; i< sizeof(dirspec)/sizeof(dirspec[0]); i++) + { + if ((fd = open(dirspec[i], 0)) >= 0) + { // read file count = read(fd, config->plist, IO_CONFIG_DATA_SIZE); close(fd); @@ -744,9 +758,12 @@ char * newString(const char * oldString) { - if ( oldString ) { + if ( oldString ) + { return strcpy(malloc(strlen(oldString)+1), oldString); - } else { + } + else + { return NULL; } } @@ -764,14 +781,16 @@ *val = '\0'; // Scan for the next non-whitespace character. - while ( *ptr && (*ptr == ' ' || *ptr == '=') ) { + while ( *ptr && (*ptr == ' ' || *ptr == '=') ) + { ptr++; } strStart = ptr; // Skip the leading double quote character. - if (*ptr == '\"') { + if (*ptr == '\"') + { isQuoted = true; ptr++; strStart++; Index: branches/ErmaC/Enoch/i386/libsaio/saio_types.h =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/saio_types.h (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/saio_types.h (revision 2457) @@ -41,13 +41,16 @@ typedef unsigned long entry_t; -typedef struct { +typedef struct +{ unsigned int sectors:8; unsigned int heads:8; unsigned int cylinders:16; } compact_diskinfo_t; -struct driveParameters { + +struct driveParameters +{ int cylinders; int sectors; int heads; @@ -77,8 +80,10 @@ /* * BIOS drive information. */ -struct boot_drive_info { - struct drive_params { +struct boot_drive_info +{ + struct drive_params + { unsigned short buf_size; unsigned short info_flags; unsigned long phys_cyls; @@ -100,7 +105,8 @@ unsigned char checksum; } params; - struct drive_dpte { + struct drive_dpte + { unsigned short io_port_base; unsigned short control_port_base; unsigned char head_flags; @@ -120,7 +126,9 @@ } __attribute__((packed)); typedef struct boot_drive_info boot_drive_info_t; -struct driveInfo { + +struct driveInfo +{ boot_drive_info_t di; int uses_ebios; @@ -129,7 +137,9 @@ int valid; }; -typedef struct FinderInfo { + +typedef struct FinderInfo +{ unsigned char data[16]; } FinderInfo; @@ -205,7 +215,8 @@ }; -enum { +enum +{ kBVFlagPrimary = 0x01, kBVFlagNativeBoot = 0x02, kBVFlagForeignBoot = 0x04, @@ -216,7 +227,8 @@ kBVFlagInstallVolume = 0x80 }; -enum { +enum +{ kBIOSDevTypeFloppy = 0x00, kBIOSDevTypeHardDrive = 0x80, kBIOSDevTypeNetwork = 0xE0, @@ -225,7 +237,8 @@ kBIOSDevMask = 0xFF }; -enum { +enum +{ //KPartitionTypeFAT12 = 0x01, // FAT12 kPartitionTypeHPFS = 0x07, // Mac OS X kPartitionTypeFAT16 = 0x06, // FAT16 @@ -248,7 +261,8 @@ // KernBootStruct device types. -enum { +enum +{ DEV_SD = 0, DEV_HD = 1, DEV_FD = 2, @@ -277,7 +291,8 @@ kBlockDeviceType = kBIOSDevTypeHardDrive }; //gBootFileType_t; -enum { +enum +{ kCursorTypeHidden = 0x0100, kCursorTypeUnderline = 0x0607 }; Index: branches/ErmaC/Enoch/i386/libsaio/md5c.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/md5c.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/md5c.c (revision 2457) @@ -50,8 +50,6 @@ * These notices must be retained in any copies of any part of this * documentation and/or software. * - * $Id: md5c.c,v 1.1 2005/06/24 22:47:12 curtisg Exp $ - * * This code is the same as the code published by RSA Inc. It has been * edited for clarity and style only. */ @@ -151,7 +149,8 @@ index = (unsigned int)((context->count[0] >> 3) & 0x3F); /* Update number of bits */ - if ((context->count[0] += ((u_int32_t)inputLen << 3)) < ((u_int32_t)inputLen << 3)) { + if ((context->count[0] += ((u_int32_t)inputLen << 3)) < ((u_int32_t)inputLen << 3)) + { context->count[1]++; } @@ -161,7 +160,8 @@ /* Transform as many times as possible. */ - if (inputLen >= partLen) { + if (inputLen >= partLen) + { memcpy((void *)&context->buffer[index], (const void *)input, partLen); MD5Transform (context->state, context->buffer); Index: branches/ErmaC/Enoch/i386/libsaio/fake_efi.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/fake_efi.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/fake_efi.c (revision 2457) @@ -68,6 +68,16 @@ return ((uint64_t)addr | 0xFFFFFF8000000000ULL); } +// ========================================================================== +// ErmaC +static inline uint64_t getCPUTick(void) +{ + uint32_t lowest; + uint32_t highest; + __asm__ volatile ("rdtsc" : "=a" (lowest), "=d" (highest)); + return (uint64_t) highest << 32 | lowest; +} + /*========================================================================== * Fake EFI implementation */ @@ -93,6 +103,8 @@ EFI_SYSTEM_TABLE_64 *gST64 = NULL; Node *gEfiConfigurationTableNode = NULL; +// ========================================================================== + extern EFI_STATUS addConfigurationTable(EFI_GUID const *pGuid, void *table, char const *alias) { EFI_UINTN i = 0; @@ -146,6 +158,8 @@ return EFI_UNSUPPORTED; } +// ========================================================================== + //Azi: crc32 done in place, on the cases were it wasn't. /*static inline void fixupEfiSystemTableCRC32(EFI_SYSTEM_TABLE_64 *efiSystemTable) { @@ -437,7 +451,7 @@ static const char FIRMWARE_REVISION_PROP[] = "firmware-revision"; static const char FIRMWARE_ABI_PROP[] = "firmware-abi"; static const char FIRMWARE_VENDOR_PROP[] = "firmware-vendor"; -static const char FIRMWARE_ABI_32_PROP_VALUE[] = "EFI32"; +//static const char FIRMWARE_ABI_32_PROP_VALUE[] = "EFI32"; static const char FIRMWARE_ABI_64_PROP_VALUE[] = "EFI64"; static const char EFI_MODE_PROP[] = "efi-mode"; //Bungo static const char SYSTEM_ID_PROP[] = "system-id"; @@ -695,8 +709,91 @@ length = strlen(bootInfo->bootFile); DT__AddProperty(chosenNode, "boot-file", length + 1, bootInfo->bootFile); +// DT__AddProperty(chosenNode, "boot-device-path", bootDPsize, gBootDP); +// DT__AddProperty(chosenNode, "boot-file-path", bootFPsize, gBootFP); + +// DT__AddProperty(chosenNode, "boot-kernelcache-adler32", sizeof(adler32), adler32); + DT__AddProperty(chosenNode, "machine-signature", sizeof(EFI_UINT32), (EFI_UINT32 *)&MachineSig); + + if(YOSEMITE) + { + // + // Pike R. Alpha - 12 October 2014 + // + UInt8 index = 0; + EFI_UINT16 PMTimerValue = 0; + EFI_UINT32 randomValue, tempValue, cpuTick; + EFI_UINT32 ecx, esi, edi = 0; + EFI_UINT32 rcx, rdx, rsi, rdi; + + randomValue = tempValue = ecx = esi = edi = 0; // xor %ecx, %ecx + rcx = rdx = rsi = rdi = cpuTick = 0; + + // LEAF_1 - Feature Information (Function 01h). + if (Platform.CPU.CPUID[CPUID_1][2] & 0x40000000) // Checking ecx:bit-30 + { + // + // i5/i7 Ivy Bridge and Haswell processors with RDRAND support. + // + EFI_UINT32 seedBuffer[16] = {0}; + // + // Main loop to get 16 qwords (four bytes each). + // + for (index = 0; index < 16; index++) // 0x17e12: + { + randomValue = computeRand(); // callq 0x18e20 + cpuTick = getCPUTick(); // callq 0x121a7 + randomValue = (randomValue ^ cpuTick); // xor %rdi, %rax + seedBuffer[index] = randomValue; // mov %rax,(%r15,%rsi,8) + } // jb 0x17e12 + + DT__AddProperty(chosenNode, "random-seed", sizeof(seedBuffer), (EFI_UINT32*) &seedBuffer); + } + else + { + // + // All other processors without RDRAND support. + // + EFI_UINT8 seedBuffer[64] = {0}; + // + // Main loop to get the 64 bytes. + // + do // 0x17e55: + { + PMTimerValue = inw(0x408); // in (%dx), %ax + esi = PMTimerValue; // movzwl %ax, %esi + + if (esi < ecx) // cmp %ecx, %esi + { + continue; // jb 0x17e55 (retry) + } + + cpuTick = getCPUTick(); // callq 0x121a7 + rcx = (cpuTick >> 8); // mov %rax, %rcx + // shr $0x8, %rcx + rdx = (cpuTick >> 10); // mov %rax, %rdx + // shr $0x10, %rdx + rdi = rsi; // mov %rsi, %rdi + rdi = (rdi ^ cpuTick); // xor %rax, %rdi + rdi = (rdi ^ rcx); // xor %rcx, %rdi + rdi = (rdi ^ rdx); // xor %rdx, %rdi + + seedBuffer[index] = (rdi & 0xff); // mov %dil, (%r15,%r12,1) + + edi = (edi & 0x2f); // and $0x2f, %edi + edi = (edi + esi); // add %esi, %edi + index++; // inc r12 + ecx = (edi & 0xffff); // movzwl %di, %ecx + + } while (index < 64); // cmp %r14d, %r12d + // jne 0x17e55 (next) + + DT__AddProperty(chosenNode, "random-seed", sizeof(seedBuffer), (EFI_UINT8*) &seedBuffer); + + } + } } /* Index: branches/ErmaC/Enoch/i386/libsaio/smbios_getters.c =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/smbios_getters.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/smbios_getters.c (revision 2457) @@ -64,8 +64,10 @@ bool getSMBOemProcessorBusSpeed(returnType *value) { - if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) { // Intel - switch (Platform.CPU.Family) { + if (Platform.CPU.Vendor == CPUID_VENDOR_INTEL) // Intel + { + switch (Platform.CPU.Family) + { case 0x06: { switch (Platform.CPU.Model) { Index: branches/ErmaC/Enoch/i386/libsaio/saio_internal.h =================================================================== --- branches/ErmaC/Enoch/i386/libsaio/saio_internal.h (revision 2456) +++ branches/ErmaC/Enoch/i386/libsaio/saio_internal.h (revision 2457) @@ -28,11 +28,12 @@ #include "saio_types.h" /* asm.s */ -extern void real_to_prot(void); -extern void prot_to_real(void); -extern void halt(void); -extern void startprog(unsigned int address, void *arg); -extern void loader(UInt32 code, UInt32 cmdptr); +extern void real_to_prot(void); +extern void prot_to_real(void); +extern void halt(void); +extern void startprog(unsigned int address, void *arg); +extern void loader(UInt32 code, UInt32 cmdptr); +extern uint64_t computeRand(void); /* bios.s */ extern void bios(biosBuf_t *bb); @@ -79,11 +80,11 @@ extern void finalizeBootStruct(void); /* cache.c */ -extern void CacheReset(); -extern void CacheInit(CICell ih, long blockSize); -extern long CacheRead(CICell ih, char *buffer, long long offset, - long length, long cache); +extern void CacheReset(); +extern void CacheInit(CICell ih, long blockSize); +extern long CacheRead(CICell ih, char *buffer, long long offset, long length, long cache); + /* console.c */ extern bool gVerboseMode; extern bool gErrors; Index: branches/ErmaC/Enoch/i386/boot0/boot0.s =================================================================== --- branches/ErmaC/Enoch/i386/boot0/boot0.s (revision 2456) +++ branches/ErmaC/Enoch/i386/boot0/boot0.s (revision 2457) @@ -93,6 +93,7 @@ kPartCount EQU 4 ; number of paritions per table kPartTypeHFS EQU 0xaf ; HFS+ Filesystem type +kPartTypeABHFS EQU 0xab ; Apple_Boot partition kPartTypePMBR EQU 0xee ; On all GUID Partition Table disks a Protective MBR (PMBR) ; in LBA 0 (that is, the first block) precedes the ; GUID Partition Table Header to maintain compatibility @@ -292,7 +293,7 @@ ; to boot an inactive but boot1h aware HFS+ partition ; by scanning the MBR partition entries again. -.start_scan: +.start_scan: mov cx, kPartCount ; number of partition entries per table .loop: @@ -528,7 +529,7 @@ je .checkBootSignature cmp ax, kHFSPCaseSignature ; 'HX' je .checkBootSignature - + ; ; Looking for boot1f32 magic string. ; @@ -784,18 +785,19 @@ ; NULL terminated strings. ; log_title_str db 10, 13, 'boot0: ', 0 -boot_error_str db 'error', 0 -%if UNSTRETCH -nv_scaler_str db 'Unstretch', 0 -%endif ;DEBUG - %if VERBOSE gpt_str db 'GPT', 0 test_str db 'test', 0 done_str db 'done', 0 %endif +boot_error_str db 'error', 0 + +%if UNSTRETCH +nv_scaler_str db 'Unstretch', 0 +%endif ;DEBUG + ;-------------------------------------------------------------------------- ; Pad the rest of the 512 byte sized booter with zeroes. The last ; two bytes is the mandatory boot sector signature. Index: branches/ErmaC/Enoch/i386/boot0/boot0hfs.s =================================================================== --- branches/ErmaC/Enoch/i386/boot0/boot0hfs.s (revision 2456) +++ branches/ErmaC/Enoch/i386/boot0/boot0hfs.s (revision 2457) @@ -93,6 +93,7 @@ kPartCount EQU 4 ; number of paritions per table kPartTypeHFS EQU 0xaf ; HFS+ Filesystem type +kPartTypeABHFS EQU 0xab ; Apple_Boot partition kPartTypePMBR EQU 0xee ; On all GUID Partition Table disks a Protective MBR (PMBR) ; in LBA 0 (that is, the first block) precedes the ; GUID Partition Table Header to maintain compatibility @@ -292,7 +293,7 @@ ; to boot an inactive but boot1h aware HFS+ partition ; by scanning the MBR partition entries again. -.start_scan: +.start_scan: mov cx, kPartCount ; number of partition entries per table .loop: @@ -453,7 +454,7 @@ .gpt_loop: mov eax, [si + gpta.PartitionTypeGUID + kGUIDLastDwordOffs] - + cmp eax, kAppleGUID ; check current GUID Partition for Apple's GUID type je .gpt_ok @@ -528,7 +529,7 @@ je .checkBootSignature cmp ax, kHFSPCaseSignature ; 'HX' je .checkBootSignature - + ; ; Looking for boot1f32 magic string. ; @@ -784,18 +785,19 @@ ; NULL terminated strings. ; log_title_str db 10, 13, 'boot0: ', 0 -boot_error_str db 'error', 0 -%if UNSTRETCH -nv_scaler_str db 'Unstretch', 0 -%endif ;DEBUG - %if VERBOSE gpt_str db 'GPT', 0 test_str db 'test', 0 done_str db 'done', 0 %endif +boot_error_str db 'error', 0 + +%if UNSTRETCH +nv_scaler_str db 'Unstretch', 0 +%endif ;DEBUG + ;-------------------------------------------------------------------------- ; Pad the rest of the 512 byte sized booter with zeroes. The last ; two bytes is the mandatory boot sector signature. Index: branches/ErmaC/Enoch/i386/boot0/boot0md.s =================================================================== --- branches/ErmaC/Enoch/i386/boot0/boot0md.s (revision 2456) +++ branches/ErmaC/Enoch/i386/boot0/boot0md.s (revision 2457) @@ -306,8 +306,7 @@ DebugChar('P') ; starting new pass push dx ; save dl (boot drive) for next pass - - + .scan_drive: ; @@ -325,34 +324,34 @@ jc .next_pass ; MBR load error - normally because we scanned all drives DebugChar('D') ; starting disk scanning - + ; ; Look for the booter partition in the MBR partition table, ; which is at offset kMBRPartTable. ; mov si, kMBRPartTable ; pointer to partition table call find_boot ; will not return on success - + ; if returns - booter partition is not found - + ; skip scanning of all drives in Pass1 cmp bh, kPass1 je .next_pass - + ; try next drive ; if next drive does not exists - will break on the MBR load error above inc dl jmp short .scan_drive - + .next_pass: ; all drives scanned - move to next pass pop dx ; restore orig boot drive dec bh ; decrement scan pass counter jnz pass_loop ; if not zero - exec next pass - + ; we ran all passes - nothing found - error - + error: DebugChar('E') DebugPause @@ -386,7 +385,8 @@ xor bl, bl ; BL will be set to 1 later in case of ; Protective MBR has been found -.start_scan: + +.start_scan: mov cx, kPartCount ; number of partition entries per table .loop: @@ -418,7 +418,7 @@ ; ; Code may be harder to read because I tried to optimized it for minimum size. ; - + .testPass: DebugChar('t') ; testing partition xor dh, dh ; DH=0 This will be used in Pass3 (partition is active, not HFS+). @@ -442,12 +442,11 @@ jne .continue +.tryToBoot: ; ; Found boot partition, read boot sector to memory. ; -.tryToBoot: - call loadBootSector jne .continue jmp SHORT initBootLoader @@ -499,7 +498,7 @@ DebugChar('G') ; found GPT mov si, di - + ; ; Loading GUID Partition Table Array ; @@ -546,7 +545,7 @@ .gpt_loop: mov eax, [si + gpta.PartitionTypeGUID + kGUIDLastDwordOffs] - + cmp eax, kAppleGUID ; check current GUID Partition for Apple's GUID type je .gpt_ok @@ -623,7 +622,7 @@ je .checkBootSignature cmp ax, kHFSPCaseSignature ; 'HX' je .checkBootSignature - + ; ; Looking for boot1f32 magic string. ; @@ -868,7 +867,6 @@ ; NULL terminated strings. ; log_title_str db 10, 13, 'boot0:', 0 -boot_error_str db 'error', 0 gpt_str db 'GPT', 0 ;test_str db 'test', 0 @@ -876,6 +874,8 @@ %endif +boot_error_str db 'error', 0 + ;-------------------------------------------------------------------------- ; Pad the rest of the 512 byte sized booter with zeroes. The last ; two bytes is the mandatory boot sector signature. Index: branches/ErmaC/Enoch/i386/boot0/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/boot0/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/boot0/Makefile (revision 2457) @@ -17,10 +17,13 @@ all: $(DIRS_NEEDED) $(OBJS) +#To rebuild boot0 if boot0.s is touched +$(SYMROOT)/boot0: boot0.s + $(OBJS): $(SRCROOT)/autoconf.inc - @echo "\t[NASM] $(@F)" + @echo " [NASM] $(@F)" @$(NASM) $(@F).s -o $@ clean-local: - @for o in $(OBJS); do if [ -f "$${o}" ];then echo "\t[RM] $${o}"; fi; done + @for o in $(OBJS); do if [ -f "$${o}" ];then echo " [RM] $${o}"; fi; done @rm -f $(OBJS) Index: branches/ErmaC/Enoch/i386/include/architecture/i386/asm_help.h =================================================================== --- branches/ErmaC/Enoch/i386/include/architecture/i386/asm_help.h (revision 2456) +++ branches/ErmaC/Enoch/i386/include/architecture/i386/asm_help.h (revision 2457) @@ -45,7 +45,7 @@ #ifdef __ASSEMBLER__ #define ALIGN \ - .align 2, 0x90 + .align 4, 0x90 #define ROUND_TO_STACK(len) \ (((len) + STACK_INCR - 1) / STACK_INCR * STACK_INCR) Index: branches/ErmaC/Enoch/i386/include/mach/i386/asm.h =================================================================== --- branches/ErmaC/Enoch/i386/include/mach/i386/asm.h (revision 2456) +++ branches/ErmaC/Enoch/i386/include/mach/i386/asm.h (revision 2457) @@ -107,7 +107,7 @@ /* There is another definition of ALIGN for .c sources */ #ifdef ASSEMBLER -#define ALIGN 4,0x90 +#define ALIGN 16,0x90 #endif /* ASSEMBLER */ #ifndef FALIGN Index: branches/ErmaC/Enoch/i386/include/sys/socket.h =================================================================== --- branches/ErmaC/Enoch/i386/include/sys/socket.h (revision 2456) +++ branches/ErmaC/Enoch/i386/include/sys/socket.h (revision 2457) @@ -514,6 +514,7 @@ * peer from lying about its identity. (Note that cmcred_groups[0] * is the effective GID.) */ +#if 0 struct cmsgcred { pid_t cmcred_pid; /* PID of sending process */ uid_t cmcred_uid; /* real UID of sending process */ @@ -523,6 +524,7 @@ gid_t cmcred_groups[CMGROUP_MAX]; /* groups */ }; #endif +#endif #endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */ /* given pointer to struct cmsghdr, return pointer to data */ Index: branches/ErmaC/Enoch/i386/boot1/boot1f32.s =================================================================== --- branches/ErmaC/Enoch/i386/boot1/boot1f32.s (revision 2456) +++ branches/ErmaC/Enoch/i386/boot1/boot1f32.s (revision 2457) @@ -75,7 +75,7 @@ kBoot1LoadAddr EQU 0x7C00 ; boot1 load address kBoot1RelocAddr EQU 0xE000 ; boot1 relocated address -kBoot2Sectors EQU (448 * 1024 - 512) / kSectorBytes ; max size of 'boot' file in sectors +kBoot2Sectors EQU (480 * 1024 - 512) / kSectorBytes ; max size of 'boot' file in sectors kBoot2Segment EQU 0x2000 ; boot2 load segment kBoot2Address EQU kSectorBytes ; boot2 load address Index: branches/ErmaC/Enoch/i386/boot1/boot1he.s =================================================================== --- branches/ErmaC/Enoch/i386/boot1/boot1he.s (revision 2456) +++ branches/ErmaC/Enoch/i386/boot1/boot1he.s (revision 2457) @@ -79,7 +79,7 @@ kBoot1ExtAddr EQU kBoot1RelocAddr + kSectorBytes ; boot1 load address for sector 41-47 kHFSPlusBuffer EQU kBoot1RelocAddr + kBoot1ExtSize ; HFS+ Volume Header address -kBoot2Sectors EQU (448 * 1024 - 512) / kSectorBytes ; max size of 'boot' file in sectors +kBoot2Sectors EQU (480 * 1024 - 512) / kSectorBytes ; max size of 'boot' file in sectors = 448 but I want 472 kBoot2Segment EQU 0x2000 ; boot2 load segment kBoot2Address EQU kSectorBytes ; boot2 load address Index: branches/ErmaC/Enoch/i386/boot1/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/boot1/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/boot1/Makefile (revision 2457) @@ -32,8 +32,11 @@ all: $(DIRS_NEEDED) $(PROGRAMS) +#To rebuild boot1h if boot1h.s is touched +$(SYMROOT)/boot1h: boot1h.s + $(PROGRAMS): $(SRCROOT)/autoconf.inc - @echo "\t[NASM] $(@F)" + @echo " [NASM] $(@F)" @$(NASM) $(@F).s -o $@ install_i386:: all $(INSTALLDIR) @@ -41,5 +44,5 @@ cd $(INSTALLDIR); chmod u+w $(VERSIONED_FILES) clean-local: - @for p in $(PROGRAMS); do if [ -f "$${p}" ];then echo "\t[RM] $${p}"; fi; done + @for p in $(PROGRAMS); do if [ -f "$${p}" ];then echo " [RM] $${p}"; fi; done @rm -f $(PROGRAMS) Index: branches/ErmaC/Enoch/i386/boot1/boot1h.s =================================================================== --- branches/ErmaC/Enoch/i386/boot1/boot1h.s (revision 2456) +++ branches/ErmaC/Enoch/i386/boot1/boot1h.s (revision 2457) @@ -1,7 +1,7 @@ ; Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved. ; ; @APPLE_LICENSE_HEADER_START@ -; +; ; Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights ; Reserved. This file contains Original Code and/or Modifications of ; Original Code as defined in and that are subject to the Apple Public @@ -9,7 +9,7 @@ ; except in compliance with the License. Please obtain a copy of the ; License at http://www.apple.com/publicsource and read it before using ; this file. -; +; ; The Original Code and all software distributed under the License are ; distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER ; EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, @@ -17,7 +17,7 @@ ; FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the ; License for the specific language governing rights and limitations ; under the License. -; +; ; @APPLE_LICENSE_HEADER_END@ ; ; Partition Boot Loader: boot1h @@ -335,7 +335,7 @@ mov si, %1 call print_string %endmacro - + %macro LogString 1 mov di, %1 call log_string @@ -352,7 +352,7 @@ %define PutChar(x) %define PrintHex(x) %endif - + ;-------------------------------------------------------------------------- ; Start of text segment. @@ -388,7 +388,7 @@ mov cx, kSectorBytes ; copy 256 words rep movsb ; repeat string move (word) operation pop si - + ; ; Code relocated, jump to startReloc in relocated location. ; @@ -406,7 +406,7 @@ ; Initializing global variables. ; mov eax, [si + part.lba] - mov [gPartLBA], eax ; save the current partition LBA offset + mov [gPartLBA], eax ; save the current partition LBA offset mov [gBIOSDriveNumber], dl ; save BIOS drive number mov WORD [gMallocPtr], mallocStart ; set free space pointer @@ -500,7 +500,7 @@ %if VERBOSE LogString(error_str) %endif - + hang: hlt jmp hang @@ -977,7 +977,7 @@ ; %if VERBOSE -root_str db '/boot', NULL +root_str db '/boot', CR, LF, NULL %endif ;-------------------------------------------------------------------------- @@ -1058,11 +1058,11 @@ mov bx, [bp + BTree.nodeBuffer + BTNodeDescriptor.numRecords] xchg bh, bl dec bx - + .bsearch: cmp ax, bx ja .checkResult ; jump if lowerBound > upperBound - + mov cx, ax add cx, bx shr cx, 1 ; test index = (lowerBound + upperBound / 2) @@ -1088,7 +1088,7 @@ je .checkResult jl .searchLessThanTrial jg .searchGreaterThanTrial - jmp .bsearch + jmp .bsearch .searchLessThanTrial: mov bx, cx @@ -1099,7 +1099,7 @@ mov ax, cx inc ax ; lowerBound = index + 1 jmp .bsearch - + .checkResult: cmp BYTE [bp + BTree.searchResult], 0 jge .foundKey @@ -1115,7 +1115,7 @@ mov bx, [bx] mov edx, [bx] jmp .readNode - + .exit: cmp BYTE [bp + BTree.searchResult], 0 ret @@ -1183,7 +1183,7 @@ .exit: pop di ; restore address of trialKey -%if UNUSED +%if UNUSED ; ; Print catalog trial key ; @@ -1199,15 +1199,15 @@ .printLoop: lodsw call print_char - loop .printLoop + loop .printLoop .printExit: popad ; ; ; %endif ; UNUSED - -%if UNUSED + +%if UNUSED ; ; Print extent trial key ; @@ -1230,7 +1230,7 @@ pop si ; restore SI call bx ; call key compare proc popad - ret + ret ;-------------------------------------------------------------------------- ; readExtent - read extents from a HFS+ file (multiple extent support) @@ -1300,7 +1300,7 @@ pop ebx jmp .beginExtentBlock - + .continue: mov edx, [di + HFSPlusExtentDescriptor.blockCount] call blockToSector ; ECX = converted current extent's blockCount to sectors @@ -1328,20 +1328,20 @@ mov edx, [di + HFSPlusExtentDescriptor.startBlock] call blockToSector ; ECX = converted to sectors add ecx, eax ; file offset converted to sectors - + push si mov ax, si mov edx, [bp + BTree.readBufferPtr] call readSectors pop si - + add ebx, esi mov ax, si cwde shl ax, 9 ; convert SI (read sector count) to byte unit add [bp + BTree.readBufferPtr], eax sub [bp + BTree.readSize], esi - + jz .exit .nextExtent: @@ -1431,8 +1431,8 @@ ; %if VERBOSE -log_title_str db CR, LF, 'boot1: ', NULL -error_str db 'error', NULL +log_title_str db 'boot1: ', NULL +error_str db 'error', NULL %endif searchCatalogKey dd kHFSRootFolderID Index: branches/ErmaC/Enoch/i386/boot1/boot1hp.s =================================================================== --- branches/ErmaC/Enoch/i386/boot1/boot1hp.s (revision 2456) +++ branches/ErmaC/Enoch/i386/boot1/boot1hp.s (revision 2457) @@ -269,7 +269,7 @@ mov al, 1 ; read HFS+ Volume Header mov edx, kHFSPlusBuffer call readLBA - jc NEAR bios_read_error + jc NEAR bios_read_error ; ; Looking for HFSPlus ('H+') or HFSPlus case-sensitive ('HX') signature. Index: branches/ErmaC/Enoch/i386/klibc/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/klibc/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/klibc/Makefile (revision 2457) @@ -34,17 +34,17 @@ $(LIBS): $(OBJS) - @echo "\t[RM] $@" + @echo " [RM] $@" @rm -f $@ - @echo "\t[AR] $(@F)" + @echo " [AR] $(@F)" @ar q $@ $^ &> /dev/null - @echo "\t[RANLIB] $(@F)" + @echo " [RANLIB] $(@F)" @ranlib $@ # dependencies -include $(OBJROOT)/Makedep clean-local: - @for o in $(OBJS); do if [ -f "$${o}" ];then echo "\t[RM] $${o}"; fi; done - @for l in $(LIBS); do if [ -f "$${l}" ];then echo "\t[RM] $${l}"; fi; done + @for o in $(OBJS); do if [ -f "$${o}" ];then echo " [RM] $${o}"; fi; done + @for l in $(LIBS); do if [ -f "$${l}" ];then echo " [RM] $${l}"; fi; done @rm -f $(LIBS) $(OBJS) Index: branches/ErmaC/Enoch/i386/boot2/picopng.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/picopng.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/picopng.c (revision 2457) @@ -23,7 +23,8 @@ /*************************************************************************************************/ -typedef struct png_alloc_node { +typedef struct png_alloc_node +{ struct png_alloc_node *prev, *next; void *addr; size_t size; @@ -32,32 +33,55 @@ png_alloc_node_t *png_alloc_head = NULL; png_alloc_node_t *png_alloc_tail = NULL; +//============================================================================== + png_alloc_node_t *png_alloc_find_node(void *addr) { png_alloc_node_t *node; + for (node = png_alloc_head; node; node = node->next) + { if (node->addr == addr) + { break; + } + } + return node; } + +//============================================================================== + void png_alloc_add_node(void *addr, size_t size) { png_alloc_node_t *node; + if (png_alloc_find_node(addr)) + { return; - node = malloc(sizeof (png_alloc_node_t)); + } + + node = malloc(sizeof(png_alloc_node_t)); node->addr = addr; node->size = size; node->prev = png_alloc_tail; node->next = NULL; png_alloc_tail = node; + if (node->prev) + { node->prev->next = node; + } + if (!png_alloc_head) + { png_alloc_head = node; + } } +//============================================================================== + void png_alloc_remove_node(png_alloc_node_t *node) { if (!node) { @@ -911,12 +935,14 @@ vector8_resize(out, numpixels * 4); uint8_t *out_data = out->size ? out->data : 0; if (bitDepth == 8 && colorType == 0) // greyscale - for (i = 0; i < numpixels; i++) { + for (i = 0; i < numpixels; i++) + { out_data[4 * i + 0] = out_data[4 * i + 1] = out_data[4 * i + 2] = in[i]; out_data[4 * i + 3] = (info->key_defined && (in[i] == info->key_r)) ? 0 : 255; } else if (bitDepth == 8 && colorType == 2) // RGB color - for (i = 0; i < numpixels; i++) { + for (i = 0; i < numpixels; i++) + { for (c = 0; c < 3; c++) out_data[4 * i + c] = in[3 * i + c]; out_data[4 * i + 3] = (info->key_defined && (in[3 * i + 0] == info->key_r) && Index: branches/ErmaC/Enoch/i386/boot2/graphics.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/graphics.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/graphics.c (revision 2457) @@ -20,11 +20,10 @@ * under the License. * * @APPLE_LICENSE_HEADER_END@ + * + * Copyright 1993 NeXT, Inc. All rights reserved. + * */ -/* - * Copyright 1993 NeXT, Inc. - * All rights reserved. - */ #include "boot.h" #include "vbe.h" @@ -50,18 +49,18 @@ { VBEInfoBlock vbeInfo; int err, small; - + bzero( &vbeInfo, sizeof(vbeInfo) ); strcpy( (char*)&vbeInfo, "VBE2" ); err = getVBEInfo( &vbeInfo ); if (err != errSuccess) return 0; - + if ( strncmp( (char *)vbeInfo.VESASignature, "VESA", 4 ) ) return 0; - + small = (vbeInfo.TotalMemory < 16); - + return vbeInfo.TotalMemory * 64 * 1024; } @@ -78,18 +77,23 @@ strcpy( (char*)&vbeInfo, "VBE2" ); err = getVBEInfo( &vbeInfo ); if (err != errSuccess) + { return 0; - + } + if ( strncmp( (char *)vbeInfo.VESASignature, "VESA", 4 ) ) + { return 0; - + } + buff = malloc(sizeof(char) * 256); - if (!buff) { + if (!buff) + { return 0; } small = (vbeInfo.TotalMemory < 16); - + snprintf(buff, 256, "VESA v%d.%d %d%s (%s)\n", vbeInfo.VESAVersion >> 8, @@ -158,19 +162,25 @@ modeInfo.BitsPerPixel, modeInfo.MemoryModel, modeInfo.ModeAttributes); - if (line++ >= 20) { + if (line++ >= 20) + { pause(); line = 0; clearScreenRows(0, 24); setCursorPosition( 0, 0, 1 ); } - } - if (line != 0) { + } + + if (line != 0) + { pause(); } + setActiveDisplayPage(0); } +//============================================================================== + char *getVBEModeInfoString() { VBEInfoBlock vbeInfo; @@ -181,11 +191,14 @@ bzero( &vbeInfo, sizeof(vbeInfo) ); strcpy( (char*)&vbeInfo, "VBE2" ); err = getVBEInfo( &vbeInfo ); - if ( err != errSuccess ) { + if ( err != errSuccess ) + { return 0; } + char *buff=malloc(sizeof(char)*3072); - if(!buff) { + if(!buff) + { return 0; } @@ -200,7 +213,8 @@ bzero( &modeInfo, sizeof(modeInfo) ); err = getVBEModeInfo( *modePtr, &modeInfo ); - if ( err != errSuccess ) { + if ( err != errSuccess ) + { continue; } @@ -209,7 +223,7 @@ *modePtr, modeInfo.XResolution, modeInfo.YResolution, modeInfo.BitsPerPixel, modeInfo.MemoryModel, modeInfo.ModeAttributes); - } + } return buff; } @@ -220,141 +234,146 @@ // If a mode is not found, then return the "best" available mode. static unsigned short -getVESAModeWithProperties( unsigned short width, - unsigned short height, - unsigned char bitsPerPixel, - unsigned short attributesSet, - unsigned short attributesClear, - VBEModeInfoBlock * outModeInfo, - unsigned short * vesaVersion ) +getVESAModeWithProperties( unsigned short width, + unsigned short height, + unsigned char bitsPerPixel, + unsigned short attributesSet, + unsigned short attributesClear, + VBEModeInfoBlock *outModeInfo, + unsigned short *vesaVersion + ) { - VBEInfoBlock vbeInfo; - unsigned short * modePtr; - VBEModeInfoBlock modeInfo; - unsigned char modeBitsPerPixel; - unsigned short matchedMode = modeEndOfList; - int err; + VBEInfoBlock vbeInfo; + unsigned short * modePtr; + VBEModeInfoBlock modeInfo; + unsigned char modeBitsPerPixel; + unsigned short matchedMode = modeEndOfList; + int err; - // Clear output mode info. + // Clear output mode info. - bzero( outModeInfo, sizeof(*outModeInfo) ); + bzero( outModeInfo, sizeof(*outModeInfo) ); - // Get VBE controller info containing the list of supported modes. + // Get VBE controller info containing the list of supported modes. - bzero( &vbeInfo, sizeof(vbeInfo) ); - strcpy( (char*)&vbeInfo, "VBE2" ); - err = getVBEInfo( &vbeInfo ); - if ( err != errSuccess ) - { - return modeEndOfList; - } + bzero( &vbeInfo, sizeof(vbeInfo) ); + strcpy( (char*)&vbeInfo, "VBE2" ); + err = getVBEInfo( &vbeInfo ); + if ( err != errSuccess ) + { + return modeEndOfList; + } - // Report the VESA major/minor version number. + // Report the VESA major/minor version number. - if (vesaVersion) *vesaVersion = vbeInfo.VESAVersion; + if (vesaVersion) + { + *vesaVersion = vbeInfo.VESAVersion; + } - // Loop through the mode list, and find the matching mode. + // Loop through the mode list, and find the matching mode. - for ( modePtr = VBEDecodeFP( unsigned short *, vbeInfo.VideoModePtr ); - *modePtr != modeEndOfList; modePtr++ ) - { - // Get mode information. + for ( modePtr = VBEDecodeFP( unsigned short *, vbeInfo.VideoModePtr ); + *modePtr != modeEndOfList; modePtr++ ) + { + // Get mode information. - bzero( &modeInfo, sizeof(modeInfo) ); - err = getVBEModeInfo( *modePtr, &modeInfo ); - if ( err != errSuccess ) - { - continue; - } + bzero( &modeInfo, sizeof(modeInfo) ); + err = getVBEModeInfo( *modePtr, &modeInfo ); + if ( err != errSuccess ) + { + continue; + } #if DEBUG - printf("Mode %x: %dx%dx%d mm:%d attr:%x\n", + printf("Mode %x: %dx%dx%d mm:%d attr:%x\n", *modePtr, modeInfo.XResolution, modeInfo.YResolution, modeInfo.BitsPerPixel, modeInfo.MemoryModel, modeInfo.ModeAttributes); #endif - // Filter out unwanted modes based on mode attributes. + // Filter out unwanted modes based on mode attributes. - if ( ( ( modeInfo.ModeAttributes & attributesSet ) != attributesSet ) + if ( ( ( modeInfo.ModeAttributes & attributesSet ) != attributesSet ) || ( ( modeInfo.ModeAttributes & attributesClear ) != 0 ) ) - { - continue; - } + { + continue; + } - // Pixel depth in bits. + // Pixel depth in bits. - modeBitsPerPixel = modeInfo.BitsPerPixel; + modeBitsPerPixel = modeInfo.BitsPerPixel; - if ( ( modeBitsPerPixel == 4 ) && ( modeInfo.MemoryModel == 0 ) ) - { - // Text mode, 16 colors. - } - else if ( ( modeBitsPerPixel == 8 ) && ( modeInfo.MemoryModel == 4 ) ) - { - // Packed pixel, 256 colors. - } - else if ( ( ( modeBitsPerPixel == 16 ) || ( modeBitsPerPixel == 15 ) ) - && ( modeInfo.MemoryModel == 6 ) - && ( modeInfo.RedMaskSize == 5 ) - && ( modeInfo.GreenMaskSize == 5 ) - && ( modeInfo.BlueMaskSize == 5 ) ) - { - // Direct color, 16 bpp (1:5:5:5). - modeInfo.BitsPerPixel = modeBitsPerPixel = 16; - } - else if ( ( modeBitsPerPixel == 32 ) - && ( modeInfo.MemoryModel == 6 ) - && ( modeInfo.RedMaskSize == 8 ) - && ( modeInfo.GreenMaskSize == 8 ) - && ( modeInfo.BlueMaskSize == 8 ) ) - { - // Direct color, 32 bpp (8:8:8:8). - } - else - { - continue; // Not a supported mode. - } + if ( ( modeBitsPerPixel == 4 ) && ( modeInfo.MemoryModel == 0 ) ) + { + // Text mode, 16 colors. + } + else if ( ( modeBitsPerPixel == 8 ) && ( modeInfo.MemoryModel == 4 ) ) + { + // Packed pixel, 256 colors. + } + else if ( ( ( modeBitsPerPixel == 16 ) || ( modeBitsPerPixel == 15 ) ) + && ( modeInfo.MemoryModel == 6 ) + && ( modeInfo.RedMaskSize == 5 ) + && ( modeInfo.GreenMaskSize == 5 ) + && ( modeInfo.BlueMaskSize == 5 ) ) + { + // Direct color, 16 bpp (1:5:5:5). + modeInfo.BitsPerPixel = modeBitsPerPixel = 16; + } + else if ( ( modeBitsPerPixel == 32 ) + && ( modeInfo.MemoryModel == 6 ) + && ( modeInfo.RedMaskSize == 8 ) + && ( modeInfo.GreenMaskSize == 8 ) + && ( modeInfo.BlueMaskSize == 8 ) ) + { + // Direct color, 32 bpp (8:8:8:8). + } + else + { + continue; // Not a supported mode. + } - // Modes larger than the specified dimensions are skipped. + // Modes larger than the specified dimensions are skipped. - if ( ( modeInfo.XResolution > width ) || - ( modeInfo.YResolution > height ) ) - { - continue; - } + if ( ( modeInfo.XResolution > width ) || + ( modeInfo.YResolution > height ) ) + { + continue; + } - // Perfect match, we're done looking. + // Perfect match, we're done looking. - if ( ( modeInfo.XResolution == width ) && - ( modeInfo.YResolution == height ) && - ( modeBitsPerPixel == bitsPerPixel ) ) - { - matchedMode = *modePtr; - bcopy( &modeInfo, outModeInfo, sizeof(modeInfo) ); - break; - } + if ( ( modeInfo.XResolution == width ) && + ( modeInfo.YResolution == height ) && + ( modeBitsPerPixel == bitsPerPixel ) ) + { + matchedMode = *modePtr; + bcopy( &modeInfo, outModeInfo, sizeof(modeInfo) ); + break; + } - // Save the next "best" mode in case a perfect match is not found. + // Save the next "best" mode in case a perfect match is not found. - if ( modeInfo.XResolution == outModeInfo->XResolution && - modeInfo.YResolution == outModeInfo->YResolution && - modeBitsPerPixel <= outModeInfo->BitsPerPixel ) - { - continue; // Saved mode has more depth. - } - if ( modeInfo.XResolution < outModeInfo->XResolution || - modeInfo.YResolution < outModeInfo->YResolution || - modeBitsPerPixel < outModeInfo->BitsPerPixel ) - { - continue; // Saved mode has more resolution. - } + if ( modeInfo.XResolution == outModeInfo->XResolution && + modeInfo.YResolution == outModeInfo->YResolution && + modeBitsPerPixel <= outModeInfo->BitsPerPixel ) + { + continue; // Saved mode has more depth. + } - matchedMode = *modePtr; - bcopy( &modeInfo, outModeInfo, sizeof(modeInfo) ); - } + if ( modeInfo.XResolution < outModeInfo->XResolution || + modeInfo.YResolution < outModeInfo->YResolution || + modeBitsPerPixel < outModeInfo->BitsPerPixel ) + { + continue; // Saved mode has more resolution. + } - return matchedMode; + matchedMode = *modePtr; + bcopy( &modeInfo, outModeInfo, sizeof(modeInfo) ); + } + + return matchedMode; } //========================================================================== @@ -507,11 +526,9 @@ return err; } -int -convertImage( unsigned short width, - unsigned short height, - const unsigned char *imageData, - unsigned char **newImageData ) +//============================================================================== + +int convertImage( unsigned short width, unsigned short height, const unsigned char *imageData, unsigned char **newImageData ) { int cnt; unsigned char *img = 0; @@ -526,7 +543,7 @@ img16[cnt] = lookUpCLUTIndex(imageData[cnt], 16); img = (unsigned char *)img16; break; - + case 32 : img32 = malloc(width * height * 4); if ( !img32 ) break; @@ -534,7 +551,7 @@ img32[cnt] = lookUpCLUTIndex(imageData[cnt], 32); img = (unsigned char *)img32; break; - + default : img = malloc(width * height); bcopy(imageData, img, width * height); @@ -544,6 +561,8 @@ return 0; } +//============================================================================== + int loadPngImage(const char *filename, uint16_t *width, uint16_t *height, uint8_t **imageData) { @@ -596,6 +615,8 @@ return error; } +//============================================================================== + int loadEmbeddedPngImage(uint8_t *pngData, int pngSize, uint16_t *width, uint16_t *height, uint8_t **imageData) { PNG_info_t *info; int error = 0; @@ -624,6 +645,8 @@ return error; } +//============================================================================== + void blendImage(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t *data) { @@ -641,7 +664,7 @@ uint32_t a; // Alpha uint32_t dstrb, dstg, srcrb, srcg, drb, dg, rb, g, tempB; // Intermediate variables uint16_t pos; - + for (pos = 0; pos < drawWidth * 4; pos += 4) { // Fast pseudo-vector alpha blending, adapted from: http://www.stereopsis.com/doubleblend.html s = *((uint32_t*) (data + pos)); @@ -670,7 +693,7 @@ } } break; - + default: /*Universal version*/ { uint32_t s; @@ -678,7 +701,7 @@ uint32_t dr, dg, db, sr, sg, sb; // Intermediate variables uint16_t pos; int bpp = (VIDEO (depth) + 7)/8; - + for (pos = 0; pos < drawWidth; pos ++) { // Fast pseudo-vector alpha blending, adapted from: http://www.stereopsis.com/doubleblend.html s = *((uint32_t*) (data + 4*pos)); @@ -688,7 +711,7 @@ sr = (s & 0xFF); a = (s >> 24) + 1; - + switch (VIDEO (depth)) { case 24: @@ -705,7 +728,7 @@ db = ((*(uint16_t *)(vram + bpp*pos))&0x1f)<<3; dg = ((*(uint16_t *)(vram + bpp*pos))&0x03e0)>>2; dr = ((*(uint16_t *)(vram + bpp*pos))&0x7c00)>>7; - break; + break; default: return; } @@ -726,8 +749,8 @@ *(uint16_t *)(vram + bpp*pos) = ((db&0xf8)>>3) | ((dg&0xf8)<<2) | ((dr&0xf8)<<7); break; } - - } + + } } break; } @@ -736,6 +759,8 @@ } } +//============================================================================== + void drawCheckerBoard() { uint32_t *vram = (uint32_t *) VIDEO(baseAddr); @@ -753,8 +778,7 @@ //========================================================================== // LookUpCLUTIndex -unsigned long lookUpCLUTIndex( unsigned char index, - unsigned char depth ) +unsigned long lookUpCLUTIndex( unsigned char index, unsigned char depth ) { long result, red, green, blue; @@ -788,38 +812,43 @@ void * stosl(void * dst, long val, long len) { - asm volatile ( "rep; stosl" - : "=c" (len), "=D" (dst) - : "0" (len), "1" (dst), "a" (val) - : "memory" ); + asm volatile ( "rep; stosl" + : "=c" (len), "=D" (dst) + : "0" (len), "1" (dst), "a" (val) + : "memory" ); - return dst; + return dst; } +//============================================================================== + void drawColorRectangle( unsigned short x, unsigned short y, unsigned short width, unsigned short height, unsigned char colorIndex ) { - long pixelBytes; - long color = lookUpCLUTIndex( colorIndex, VIDEO(depth) ); - char * vram; + long pixelBytes; + long color = lookUpCLUTIndex( colorIndex, VIDEO(depth) ); + char * vram; - pixelBytes = VIDEO(depth) / 8; - vram = (char *) VIDEO(baseAddr) + - VIDEO(rowBytes) * y + pixelBytes * x; + pixelBytes = VIDEO(depth) / 8; + vram = (char *) VIDEO(baseAddr) + VIDEO(rowBytes) * y + pixelBytes * x; - width = MIN(width, VIDEO(width) - x); - height = MIN(height, VIDEO(height) - y); + width = MIN(width, VIDEO(width) - x); + height = MIN(height, VIDEO(height) - y); - while ( height-- ) - { - int rem = ( pixelBytes * width ) % 4; - if ( rem ) bcopy( &color, vram, rem ); - stosl( vram + rem, color, pixelBytes * width / 4 ); - vram += VIDEO(rowBytes); - } + while ( height-- ) + { + int rem = ( pixelBytes * width ) % 4; + if ( rem ) + { + bcopy( &color, vram, rem ); + } + + stosl( vram + rem, color, pixelBytes * width / 4 ); + vram += VIDEO(rowBytes); + } } //========================================================================== @@ -831,22 +860,23 @@ unsigned short height, unsigned char * data ) { - unsigned short drawWidth; - long pixelBytes = VIDEO(depth) / 8; - unsigned char * vram = (unsigned char *) VIDEO(baseAddr) + - VIDEO(rowBytes) * y + pixelBytes * x; + unsigned short drawWidth; + long pixelBytes = VIDEO(depth) / 8; + unsigned char * vram = (unsigned char *) VIDEO(baseAddr) + VIDEO(rowBytes) * y + pixelBytes * x; - drawWidth = MIN(width, VIDEO(width) - x); - height = MIN(height, VIDEO(height) - y); - while ( height-- ) { - bcopy( data, vram, drawWidth * pixelBytes ); - vram += VIDEO(rowBytes); - data += width * pixelBytes; - } + drawWidth = MIN(width, VIDEO(width) - x); + height = MIN(height, VIDEO(height) - y); + while ( height-- ) + { + bcopy( data, vram, drawWidth * pixelBytes ); + vram += VIDEO(rowBytes); + data += width * pixelBytes; + } } -void -loadImageScale (void *input, int iw, int ih, int ip, void *output, int ow, int oh, int op, int or) +//============================================================================== + +void loadImageScale (void *input, int iw, int ih, int ip, void *output, int ow, int oh, int op, int or) { int x,y, off; int red=0x7f, green=0x7f, blue=0x7f; @@ -863,7 +893,7 @@ red=(val>>7)&0xf8; green=(val>>2)&0xf8; blue=(val<<3)&0xf8; - break; + break; } case 32: { @@ -873,7 +903,7 @@ green=(val>>8)&0xff; blue=(val)&0xff; break; - } + } } char *ptr=(char *)output+x*(op/8)+y*or; switch (op) @@ -890,6 +920,8 @@ } } +//============================================================================== + DECLARE_IOHIBERNATEPROGRESSALPHA void drawPreview(void *src, uint8_t * saveunder) @@ -903,12 +935,15 @@ void *uncomp; int origwidth, origheight, origbpx; uint32_t saveindex[kIOHibernateProgressCount] = { 0 }; - + if (src && (uncomp=DecompressData(src, &origwidth, &origheight, &origbpx))) { if (!setVESAGraphicsMode(origwidth, origheight, origbpx, 0)) if (initGraphicsMode () != errSuccess) + { return; + } + screen = (uint8_t *) VIDEO (baseAddr); rowBytes = VIDEO (rowBytes); loadImageScale (uncomp, origwidth, origheight, origbpx, screen, VIDEO(width), VIDEO(height), VIDEO(depth), VIDEO (rowBytes)); @@ -916,21 +951,26 @@ else { if (initGraphicsMode () != errSuccess) + { return; + } + screen = (uint8_t *) VIDEO (baseAddr); rowBytes = VIDEO (rowBytes); // Set the screen to 75% grey. - drawColorRectangle(0, 0, VIDEO(width), VIDEO(height), 0x01 /* color index */); + drawColorRectangle(0, 0, VIDEO(width), VIDEO(height), 0x01 /* color index */); } - - + pixelShift = VIDEO (depth) >> 4; - if (pixelShift < 1) return; - + if (pixelShift < 1) + { + return; + } + screen += ((VIDEO (width) - kIOHibernateProgressCount * (kIOHibernateProgressWidth + kIOHibernateProgressSpacing)) << (pixelShift - 1)) + (VIDEO (height) - kIOHibernateProgressOriginY - kIOHibernateProgressHeight) * rowBytes; - + for (y = 0; y < kIOHibernateProgressHeight; y++) { out = screen + y * rowBytes; @@ -951,7 +991,10 @@ in = (in << 3) | (in >> 2); } else + { in = *((uint32_t *)out) & 0xff; // 32 + } + saveunder[blob * kIOHibernateProgressSaveUnderSize + saveindex[blob]++] = in; result = ((255 - alpha) * in + alpha * result + 0xff) >> 8; } @@ -961,7 +1004,10 @@ *((uint16_t *)out) = (result << 10) | (result << 5) | result; // 16 } else + { *((uint32_t *)out) = (result << 16) | (result << 8) | result; // 32 + } + } out += (1 << pixelShift); } @@ -970,6 +1016,8 @@ } } +//============================================================================== + void updateProgressBar(uint8_t * saveunder, int32_t firstBlob, int32_t select) { uint8_t * screen; @@ -979,20 +1027,20 @@ uint32_t alpha, in, color, result; uint8_t * out; uint32_t saveindex[kIOHibernateProgressCount] = { 0 }; - + pixelShift = VIDEO(depth) >> 4; if (pixelShift < 1) return; screen = (uint8_t *) VIDEO (baseAddr); rowBytes = VIDEO (rowBytes); - + screen += ((VIDEO (width) - kIOHibernateProgressCount * (kIOHibernateProgressWidth + kIOHibernateProgressSpacing)) << (pixelShift - 1)) + (VIDEO (height) - kIOHibernateProgressOriginY - kIOHibernateProgressHeight) * rowBytes; - + lastBlob = (select < kIOHibernateProgressCount) ? select : (kIOHibernateProgressCount - 1); - + screen += (firstBlob * (kIOHibernateProgressWidth + kIOHibernateProgressSpacing)) << pixelShift; - + for (y = 0; y < kIOHibernateProgressHeight; y++) { out = screen + y * rowBytes; @@ -1010,13 +1058,16 @@ in = saveunder[blob * kIOHibernateProgressSaveUnderSize + saveindex[blob]++]; result = ((255 - alpha) * in + alpha * result + 0xff) / 255; } + if (1 == pixelShift) { result >>= 3; *((uint16_t *)out) = (result << 10) | (result << 5) | result; // 16 } else + { *((uint32_t *)out) = (result << 16) | (result << 8) | result; // 32 + } } out += (1 << pixelShift); } @@ -1025,111 +1076,113 @@ } } - //========================================================================== // setVESATextMode -static int -setVESATextMode( unsigned short cols, - unsigned short rows, - unsigned char bitsPerPixel ) +static int setVESATextMode( unsigned short cols, unsigned short rows, unsigned char bitsPerPixel ) { - VBEModeInfoBlock minfo; - unsigned short mode = modeEndOfList; + VBEModeInfoBlock minfo; + unsigned short mode = modeEndOfList; - if ( (cols != 80) || (rows != 25) ) // not 80x25 mode - { - mode = getVESAModeWithProperties( cols, rows, bitsPerPixel, + if ( (cols != 80) || (rows != 25) ) // not 80x25 mode + { + mode = getVESAModeWithProperties( cols, rows, bitsPerPixel, maColorModeBit | maModeIsSupportedBit, maGraphicsModeBit, &minfo, NULL ); - } + } - if ( ( mode == modeEndOfList ) || ( setVBEMode(mode, NULL) != errSuccess ) ) - { - video_mode( 2 ); // VGA BIOS, 80x25 text mode. - minfo.XResolution = 80; - minfo.YResolution = 25; - } + if ( ( mode == modeEndOfList ) || ( setVBEMode(mode, NULL) != errSuccess ) ) + { + video_mode( 2 ); // VGA BIOS, 80x25 text mode. + minfo.XResolution = 80; + minfo.YResolution = 25; + } - // Update KernBootStruct using info provided by the selected - // VESA mode. + // Update KernBootStruct using info provided by the selected + // VESA mode. - bootArgs->Video.v_display = VGA_TEXT_MODE; - bootArgs->Video.v_baseAddr = 0xb8000; - bootArgs->Video.v_width = minfo.XResolution; - bootArgs->Video.v_height = minfo.YResolution; - bootArgs->Video.v_depth = 8; - bootArgs->Video.v_rowBytes = 0x8000; + bootArgs->Video.v_display = VGA_TEXT_MODE; + bootArgs->Video.v_baseAddr = 0xb8000; + bootArgs->Video.v_width = minfo.XResolution; + bootArgs->Video.v_height = minfo.YResolution; + bootArgs->Video.v_depth = 8; + bootArgs->Video.v_rowBytes = 0x8000; - return errSuccess; // always return success + return errSuccess; // always return success } //========================================================================== // getNumberArrayFromProperty -static int -getNumberArrayFromProperty( const char * propKey, +static int getNumberArrayFromProperty( const char * propKey, unsigned long numbers[], unsigned long maxArrayCount ) { - char * propStr; - unsigned long count = 0; + char * propStr; + unsigned long count = 0; - propStr = newStringForKey( (char *) propKey , &bootInfo->chameleonConfig ); - if ( propStr ) - { - char * delimiter = propStr; - char * p = propStr; + propStr = newStringForKey( (char *) propKey , &bootInfo->chameleonConfig ); + if ( propStr ) + { + char * delimiter = propStr; + char * p = propStr; - while ( count < maxArrayCount && *p != '\0' ) - { - unsigned long val = strtoul( p, &delimiter, 10 ); - if ( p != delimiter ) - { - numbers[count++] = val; - p = delimiter; - } - while ( ( *p != '\0' ) && !isdigit(*p) ) - p++; - } + while ( count < maxArrayCount && *p != '\0' ) + { + unsigned long val = strtoul( p, &delimiter, 10 ); + if ( p != delimiter ) + { + numbers[count++] = val; + p = delimiter; + } + while ( ( *p != '\0' ) && !isdigit(*p) ) + p++; + } - free( propStr ); - } + free( propStr ); + } - return count; + return count; } +//============================================================================== + int initGraphicsMode () { - unsigned long params[4]; - int count; - - params[3] = 0; - count = getNumberArrayFromProperty( kGraphicsModeKey, params, 4 ); + unsigned long params[4]; + int count; - // Try to find a resolution if "Graphics Mode" setting is not available. - if ( count < 3 ) - { - // Use the default resolution if we don't have an initialized GUI. - if (gui.screen.width == 0 || gui.screen.height == 0) - { - gui.screen.width = DEFAULT_SCREEN_WIDTH; - gui.screen.height = DEFAULT_SCREEN_HEIGHT; - } + params[3] = 0; + count = getNumberArrayFromProperty( kGraphicsModeKey, params, 4 ); - params[0] = gui.screen.width; - params[1] = gui.screen.height; - params[2] = 32; - } - - // Map from pixel format to bits per pixel. - - if ( params[2] == 256 ) params[2] = 8; - if ( params[2] == 555 ) params[2] = 16; - if ( params[2] == 888 ) params[2] = 32; - + // Try to find a resolution if "Graphics Mode" setting is not available. + if ( count < 3 ) + { + // Use the default resolution if we don't have an initialized GUI. + if (gui.screen.width == 0 || gui.screen.height == 0) + { + gui.screen.width = DEFAULT_SCREEN_WIDTH; + gui.screen.height = DEFAULT_SCREEN_HEIGHT; + } + + params[0] = gui.screen.width; + params[1] = gui.screen.height; + params[2] = 32; + } + + // Map from pixel format to bits per pixel. + + if ( params[2] == 256 ) + params[2] = 8; + + if ( params[2] == 555 ) + params[2] = 16; + + if ( params[2] == 888 ) + params[2] = 32; + return setVESAGraphicsMode( params[0], params[1], params[2], params[3] ); } @@ -1138,50 +1191,54 @@ // // Set the video mode to VGA_TEXT_MODE or GRAPHICS_MODE. -void -setVideoMode( int mode, int drawgraphics) +void setVideoMode( int mode, int drawgraphics) { - unsigned long params[4]; - int count; - int err = errSuccess; + unsigned long params[4]; + int count; + int err = errSuccess; - if ( mode == GRAPHICS_MODE ) - { - if ( (err=initGraphicsMode ()) == errSuccess ) { - if (gVerboseMode) { - // Tell the kernel to use text mode on a linear frame buffer display - bootArgs->Video.v_display = FB_TEXT_MODE; - } else { - bootArgs->Video.v_display = GRAPHICS_MODE; - } - } - } + if ( mode == GRAPHICS_MODE ) + { + if ( (err=initGraphicsMode ()) == errSuccess ) + { + if (gVerboseMode) + { + // Tell the kernel to use text mode on a linear frame buffer display + bootArgs->Video.v_display = FB_TEXT_MODE; + } + else + { + bootArgs->Video.v_display = GRAPHICS_MODE; + } + } + } - if ( (mode == VGA_TEXT_MODE) || (err != errSuccess) ) - { - count = getNumberArrayFromProperty( kTextModeKey, params, 2 ); - if ( count < 2 ) - { - params[0] = 80; // Default text mode is 80x25. - params[1] = 25; - } + if ( (mode == VGA_TEXT_MODE) || (err != errSuccess) ) + { + count = getNumberArrayFromProperty( kTextModeKey, params, 2 ); + if ( count < 2 ) + { + params[0] = 80; // Default text mode is 80x25. + params[1] = 25; + } - setVESATextMode( params[0], params[1], 4 ); - bootArgs->Video.v_display = VGA_TEXT_MODE; - } + setVESATextMode( params[0], params[1], 4 ); + bootArgs->Video.v_display = VGA_TEXT_MODE; + } - currentIndicator = 0; + currentIndicator = 0; } -void getGraphicModeParams(unsigned long params[]) { - +//============================================================================== +void getGraphicModeParams(unsigned long params[]) +{ params[3] = 0; VBEModeInfoBlock minfo; - unsigned short vesaVersion; - unsigned short mode = modeEndOfList; - + unsigned short vesaVersion; + unsigned short mode = modeEndOfList; + getNumberArrayFromProperty( kGraphicsModeKey, params, 4); mode = getVESAModeWithProperties( params[0], params[1], params[2], @@ -1191,7 +1248,7 @@ maLinearFrameBufferAvailBit, 0, &minfo, &vesaVersion ); - + params[0] = minfo.XResolution; params[1] = minfo.YResolution; params[2] = 32; @@ -1208,7 +1265,6 @@ //========================================================================== // Display and clear the activity indicator. -// BASIC Indicator static char indicator[] = {'-', '\\', '|', '/', '-', '\\', '|', '/', '\0'}; // Bouncing ball .oOo. @@ -1221,11 +1277,12 @@ // ensure a minimum of 1/9 sec between animation frames. #define MIN_TICKS 2 -void -spinActivityIndicator(int sectors) +//============================================================================== + +void spinActivityIndicator(int sectors) { static unsigned long lastTickTime = 0, currentTickTime; - + if (previewTotalSectors && previewSaveunder) { int blob, lastBlob; @@ -1240,12 +1297,14 @@ } return; } - + currentTickTime = time18(); // late binding if (currentTickTime < lastTickTime + MIN_TICKS) { return; - } else { + } + else + { lastTickTime = currentTickTime; } @@ -1260,8 +1319,9 @@ } } -void -clearActivityIndicator( void ) +//============================================================================== + +void clearActivityIndicator( void ) { if ( getVideoMode() == VGA_TEXT_MODE ) { @@ -1270,3 +1330,4 @@ } } +//============================================================================== Index: branches/ErmaC/Enoch/i386/boot2/graphics.h =================================================================== --- branches/ErmaC/Enoch/i386/boot2/graphics.h (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/graphics.h (revision 2457) @@ -1,7 +1,7 @@ /* * graphics.h - * * + * * Created by fassl on 22.12.08. * Copyright 2008 __MyCompanyName__. All rights reserved. * @@ -26,15 +26,12 @@ void drawDataRectangle( unsigned short x, unsigned short y, unsigned short width, unsigned short height, unsigned char * data ); int convertImage( unsigned short width, unsigned short height, const unsigned char *imageData, unsigned char **newImageData ); -int initGraphicsMode (); +int initGraphicsMode(); void drawCheckerBoard(); void blendImage(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t *data); -void drawCheckerBoard(); -void blendImage(uint16_t x, uint16_t y, uint16_t width, uint16_t height, uint8_t *data); - int loadEmbeddedPngImage(uint8_t *pngData, int pngSize, uint16_t *width, uint16_t *height, uint8_t **imageData); uint32_t getVBEVideoRam(); Index: branches/ErmaC/Enoch/i386/boot2/drivers.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/drivers.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/drivers.c (revision 2457) @@ -74,14 +74,14 @@ #define kDriverPackageSignature2 'MOSX' struct DriversPackage { - unsigned long signature1; - unsigned long signature2; - unsigned long length; - unsigned long adler32; - unsigned long version; - unsigned long numDrivers; - unsigned long reserved1; - unsigned long reserved2; + unsigned long signature1; + unsigned long signature2; + unsigned long length; + unsigned long adler32; + unsigned long version; + unsigned long numDrivers; + unsigned long reserved1; + unsigned long reserved2; }; typedef struct DriversPackage DriversPackage; @@ -103,8 +103,8 @@ static long MatchPersonalities(void); static long MatchLibraries(void); #ifdef NOTDEF -static ModulePtr FindModule(char *name); -static void ThinFatFile(void **loadAddrP, unsigned long *lengthP); + static ModulePtr FindModule(char *name); + static void ThinFatFile(void **loadAddrP, unsigned long *lengthP); #endif static long ParseXML(char *buffer, ModulePtr *module, TagPtr *personalities); static long InitDriverSupport(void); @@ -146,12 +146,10 @@ return result; } - //========================================================================== // InitDriverSupport -static long -InitDriverSupport( void ) +static long InitDriverSupport( void ) { gExtensionsSpec = malloc( 4096 ); gDriverSpec = malloc( 4096 ); @@ -173,7 +171,8 @@ { char dirSpecExtra[1024]; - if ( InitDriverSupport() != 0 ) { + if ( InitDriverSupport() != 0 ) + { return 0; } @@ -202,11 +201,13 @@ // Next try to load Extra extensions from the selected root partition. strcpy(dirSpecExtra, "/Extra/"); - if (FileLoadDrivers(dirSpecExtra, 0) != 0) { + if (FileLoadDrivers(dirSpecExtra, 0) != 0) + { // If failed, then try to load Extra extensions from the boot partition // in case we have a separate booter partition or a bt(0,0) aliased ramdisk. if ( !(gBIOSBootVolume->biosdev == gBootVolume->biosdev && gBIOSBootVolume->part_no == gBootVolume->part_no) - || (gRAMDiskVolume && gRAMDiskBTAliased) ) { + || (gRAMDiskVolume && gRAMDiskBTAliased) ) + { // Next try a specfic OS version folder ie 10.5 sprintf(dirSpecExtra, "bt(0,0)/Extra/%s/", &gMacOSVersion); if (FileLoadDrivers(dirSpecExtra, 0) != 0) { @@ -216,7 +217,8 @@ } } } - if(!gHaveKernelCache) { + if(!gHaveKernelCache) + { // Don't load main driver (from /System/Library/Extentions) if gHaveKernelCache is set. // since these drivers will already be in the kernel cache. // NOTE: when gHaveKernelCache, xnu cannot (by default) load *any* extra kexts from the bootloader. @@ -234,14 +236,19 @@ } } - if (gMKextName[0] != '\0') { + if (gMKextName[0] != '\0') + { verbose("LoadDrivers: Loading from [%s]\n", gMKextName); - if ( LoadDriverMKext(gMKextName) != 0 ) { + if ( LoadDriverMKext(gMKextName) != 0 ) + { error("Could not load %s\n", gMKextName); return -1; } - } else { - if (gMacOSVersion[3] == '9') { + } + else + { + if ( MAVERICKS || YOSEMITE ) // issue 352 + { strlcpy(gExtensionsSpec, dirSpec, 4087); /* 4096 - sizeof("Library/") */ strcat(gExtensionsSpec, "Library/"); FileLoadDrivers(gExtensionsSpec, 0); @@ -252,7 +259,9 @@ } } - } else { + } + else + { return 0; } @@ -268,8 +277,7 @@ //========================================================================== // FileLoadMKext -static long -FileLoadMKext( const char * dirSpec, const char * extDirSpec ) +static long FileLoadMKext( const char * dirSpec, const char * extDirSpec ) { long ret, flags, time, time2; char altDirSpec[512]; @@ -288,7 +296,8 @@ snprintf(gDriverSpec, sizeof(altDirSpec) + 18, "%sExtensions.mkext", altDirSpec); verbose("LoadDrivers: Loading from [%s]\n", gDriverSpec); - if (LoadDriverMKext(gDriverSpec) == 0) { + if (LoadDriverMKext(gDriverSpec) == 0) + { return 0; } } @@ -299,8 +308,7 @@ //========================================================================== // FileLoadDrivers -long -FileLoadDrivers( char * dirSpec, long plugin ) +long FileLoadDrivers( char * dirSpec, long plugin ) { long ret, length, flags, time, bundleType; long long index; @@ -315,7 +323,8 @@ } // Next try the legacy path. - else if (FileLoadMKext(dirSpec, "") == 0) { + else if (FileLoadMKext(dirSpec, "") == 0) + { return 0; } @@ -331,13 +340,15 @@ } // Make sure this is a directory. - if ((flags & kFileTypeMask) != kFileTypeDirectory) { + if ((flags & kFileTypeMask) != kFileTypeDirectory) + { continue; } // Make sure this is a kext. length = strlen(name); - if (strcmp(name + length - 5, ".kext")) { + if (strcmp(name + length - 5, ".kext")) + { continue; } @@ -347,23 +358,29 @@ // Determine the bundle type. snprintf(gTempSpec, 4096, "%s/%s", dirSpec, gFileName); ret = GetFileInfo(gTempSpec, "Contents", &flags, &time); - if (ret == 0) { + if (ret == 0) + { bundleType = kCFBundleType2; - } else { + } + else + { bundleType = kCFBundleType3; } - if (!plugin) { + if (!plugin) + { snprintf(gDriverSpec, 4096, "%s/%s/%sPlugIns", dirSpec, gFileName, (bundleType == kCFBundleType2) ? "Contents/" : ""); } ret = LoadDriverPList(dirSpec, gFileName, bundleType); - if (result != 0) { + if (result != 0) + { result = ret; } - if (!plugin) { + if (!plugin) + { FileLoadDrivers(gDriverSpec, 1); } } @@ -375,8 +392,7 @@ //========================================================================== // -long -NetLoadDrivers( char * dirSpec ) +long NetLoadDrivers( char * dirSpec ) { long tries; @@ -386,7 +402,8 @@ // Get the name of the kernel cnt = strlen(gBootFile); while (cnt--) { - if ((gBootFile[cnt] == '\\') || (gBootFile[cnt] == ',')) { + if ((gBootFile[cnt] == '\\') || (gBootFile[cnt] == ',')) + { cnt++; break; } @@ -401,11 +418,13 @@ tries = 3; while (tries--) { - if (LoadDriverMKext(gDriverSpec) == 0) { + if (LoadDriverMKext(gDriverSpec) == 0) + { break; } } - if (tries == -1) { + if (tries == -1) + { return -1; } @@ -415,8 +434,7 @@ //========================================================================== // loadDriverMKext -long -LoadDriverMKext( char * fileSpec ) +long LoadDriverMKext( char * fileSpec ) { unsigned long driversAddr, driversLength; long length; @@ -427,7 +445,8 @@ // Load the MKext. length = LoadThinFatFile(fileSpec, (void **)&package); - if (length < sizeof (DriversPackage)) { + if (length < sizeof (DriversPackage)) + { return -1; } @@ -530,7 +549,7 @@ break; } - if (!module) + if (!module) // cparm { ret = -1; break; @@ -773,7 +792,8 @@ { prop = GetProperty(module->dict, kPropCFBundleIdentifier); - if ((prop != 0) && !strcmp(name, prop->string)) { + if ((prop != 0) && !strcmp(name, prop->string)) + { break; } @@ -799,22 +819,26 @@ while (1) { length = XMLParseNextTag(buffer + pos, &moduleDict); - if (length == -1) { + if (length == -1) + { break; } pos += length; - if (moduleDict == 0) { + if (moduleDict == 0) + { continue; } - if (moduleDict->type == kTagTypeDict) { + if (moduleDict->type == kTagTypeDict) + { break; } XMLFreeTag(moduleDict); } - if (length == -1) { + if (length == -1) + { return -1; } @@ -827,7 +851,8 @@ } tmpModule = malloc(sizeof(Module)); - if (tmpModule == 0) { + if (tmpModule == 0) + { XMLFreeTag(moduleDict); return -1; } @@ -852,8 +877,7 @@ char *gDarwinBuildVerStr = "Darwin Kernel Version"; // Bungo -long -DecodeKernel(void *binary, entry_t *rentry, char **raddr, int *rsize) +long DecodeKernel(void *binary, entry_t *rentry, char **raddr, int *rsize) { long ret = 0; compressed_kernel_header * kernel_header = (compressed_kernel_header *) binary; @@ -875,7 +899,8 @@ { DBG("Decompressing Kernel: "); - if (kernel_header->compress_type != OSSwapBigToHostConstInt32('lzss')) + if ((kernel_header->compress_type != OSSwapBigToHostConstInt32('lzss')) && + (kernel_header->compress_type != OSSwapBigToHostConstInt32('lzvn'))) { error("ERROR: kernel compression is bad!\n"); return -1; @@ -885,6 +910,7 @@ { return -1; } + if (kernel_header->root_path[0] && strcmp(gBootFile, kernel_header->root_path)) { return -1; @@ -893,9 +919,35 @@ uncompressed_size = OSSwapBigToHostInt32(kernel_header->uncompressed_size); binary = buffer = malloc(uncompressed_size); - size = decompress_lzss((u_int8_t *)binary, &kernel_header->data[0], OSSwapBigToHostInt32(kernel_header->compressed_size)); - if (uncompressed_size != size) { - error("ERROR: size mismatch from lzss (found: %x, expected: %x).\n", size, uncompressed_size); + // MinusZwei + size = 0; + switch (kernel_header->compress_type) + { + case OSSwapBigToHostConstInt32('lzvn'): + size = decompress_lzvn( binary, uncompressed_size, &kernel_header->data[0], OSSwapBigToHostInt32(kernel_header->compressed_size)); + break; + + case OSSwapBigToHostConstInt32('lzss'): + size = decompress_lzss( (u_int8_t *)binary, uncompressed_size, &kernel_header->data[0], OSSwapBigToHostInt32(kernel_header->compressed_size)); + break; + + default: + break; + } + // MinusZwei + + if (uncompressed_size != size) + { + if ( kernel_header->compress_type == OSSwapBigToHostConstInt32('lzvn')) + { + error("ERROR: size mismatch from lzvn (found: %x, expected: %x).\n", size, uncompressed_size); + } + + if ( kernel_header->compress_type == OSSwapBigToHostConstInt32('lzss')) + { + error("ERROR: size mismatch from lzss (found: %x, expected: %x).\n", size, uncompressed_size); + } + return -1; } @@ -927,9 +979,9 @@ execute_hook("DecodeKernel", (void*)binary, NULL, NULL, NULL); ret = DecodeMachO(binary, rentry, raddr, rsize); - if (ret<0 && archCpuType==CPU_TYPE_X86_64) + if (ret < 0 && archCpuType == CPU_TYPE_X86_64) { - archCpuType=CPU_TYPE_I386; + archCpuType = CPU_TYPE_I386; ret = DecodeMachO(binary, rentry, raddr, rsize); } Index: branches/ErmaC/Enoch/i386/boot2/mboot.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/mboot.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/mboot.c (revision 2457) @@ -15,6 +15,8 @@ int multiboot_skip_partition=0; int multiboot_skip_partition_set=0; +void boot(int biosdev); + // Global multiboot info, if using multiboot. struct multiboot_info *gMI; @@ -61,29 +63,7 @@ // would be on the stack which would possibly be using way too much stack. void multiboot_to_boot(int multiboot_magic, struct multiboot_info *mi_orig) { - uint32_t bootdevice = hi_multiboot(multiboot_magic, mi_orig); - if(bootdevice != BAD_BOOT_DEVICE) - { - // boot only returns to do a chain load. - for(;;) - { // NOTE: boot only uses the last byte (the drive number) - common_boot(bootdevice); - if(chainbootflag) - chainLoad(); - else - waitThenReload(); - } - } - // Avoid returning to high-memory address which isn't valid in the segment - // we are now in. - // Calling sleep() ensures the user ought to be able to use Ctrl+Alt+Del - // because the BIOS will have interrupts on. - for(;;) - sleep(10); - // NOTE: *IF* we needed to return we'd have to fix up our return address to - // be in low memory using the same trick as below. - // However, there doesn't seem to be any point in returning to assembly - // particularly when the remaining code merely halts the processor. + hi_multiboot(multiboot_magic, mi_orig); } void chainLoad() @@ -344,6 +324,31 @@ // Since we call multiboot ourselves, its return address will be correct. // That is unless it's inlined in which case it does not matter. uint32_t bootdevice = multiboot(multiboot_magic, mi_p); + + if(bootdevice != BAD_BOOT_DEVICE) + { + // boot only returns to do a chain load. + for(;;) + { // NOTE: boot only uses the last byte (the drive number) + boot(bootdevice); + if(chainbootflag) + chainLoad(); + else + waitThenReload(); + } + } + + // Avoid returning to high-memory address which isn't valid in the segment + // we are now in. + // Calling sleep() ensures the user ought to be able to use Ctrl+Alt+Del + // because the BIOS will have interrupts on. + for(;;) + sleep(10); + // NOTE: *IF* we needed to return we'd have to fix up our return address to + // be in low memory using the same trick as below. + // However, there doesn't seem to be any point in returning to assembly + // particularly when the remaining code merely halts the processor. + // We're about to exit and temporaryBootArgs will no longer be valid bootArgs = NULL; return bootdevice; Index: branches/ErmaC/Enoch/i386/boot2/lzvn.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/lzvn.c (revision 0) +++ branches/ErmaC/Enoch/i386/boot2/lzvn.c (revision 2457) @@ -0,0 +1,497 @@ +// +// lzvn.c +// +// Based on works from Pike R. Alpha and AnV Software (Andy Vandijck). +// Converted to C by MinusZwei on 9/14/14. +// +// No dogs allowed. +// + +#include + +#include + + +static short Llzvn_tableref[256] = +{ + 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 4, 3, + 1, 1, 1, 1, 1, 1, 4, 3, 1, 1, 1, 1, 1, 1, 5, 3, + 1, 1, 1, 1, 1, 1, 5, 3, 1, 1, 1, 1, 1, 1, 5, 3, + 1, 1, 1, 1, 1, 1, 5, 3, 1, 1, 1, 1, 1, 1, 5, 3, + 1, 1, 1, 1, 1, 1, 0, 3, 1, 1, 1, 1, 1, 1, 0, 3, + 1, 1, 1, 1, 1, 1, 0, 3, 1, 1, 1, 1, 1, 1, 0, 3, + 1, 1, 1, 1, 1, 1, 0, 3, 1, 1, 1, 1, 1, 1, 0, 3, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 1, 1, 1, 1, 1, 1, 0, 3, 1, 1, 1, 1, 1, 1, 0, 3, + 1, 1, 1, 1, 1, 1, 0, 3, 1, 1, 1, 1, 1, 1, 0, 3, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 1, 1, 1, 1, 1, 1, 0, 3, 1, 1, 1, 1, 1, 1, 0, 3, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, + 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10 +}; + + +// mov (%rdx),%r8 +// movzbq (%rdx),%r9 +// jmpq *(%rbx,%r9,8) + +#define LABEL_JUMP \ + do { \ + r8 = *(uint64_t *)rdx; \ + r9 = r8 & 0xFF; \ + switch (Llzvn_tableref[r9]) { \ + case 0: goto Llzvn_table0; break; \ + case 1: goto Llzvn_table1; break; \ + case 2: return rax; \ + case 3: goto Llzvn_table3; break; \ + case 4: goto Llzvn_table4; break; \ + case 5: return 0; \ + case 6: goto Llzvn_table6; break; \ + case 7: goto Llzvn_table7; break; \ + case 8: goto Llzvn_table8; break; \ + case 9: goto Llzvn_table9; break; \ + case 10: goto Llzvn_table10; break; \ + } \ + } while (0) + + +size_t +decompress_lzvn(void * _dest, + size_t _dest_size, + void * _src, + size_t _src_size) +{ + size_t rax = 0; + + const uint64_t rdi = (const uint64_t)_dest; + uint64_t rsi = _dest_size; + uint64_t rcx = _src_size; + uint64_t rdx = (uint64_t)_src; + + uint64_t r8 = 0; + uint64_t r9 = 0; + uint64_t r10 = 0; + uint64_t r11 = 0; + uint64_t r12 = 0; + + uint64_t addr = 0; + unsigned char byte_data = 0; + + short jmp = 0; + + // lea Llzvn_tableref(%rip),%rbx + // + // this will load the address of the tableref label into the %rbx + // register. in our code, this is the 'Llzvn_tableref' array + // + // for clearness, it will be used directly. + + rax = 0; // xor %rax,%rax + r12 = 0; // xor %r12,%r12 + + // sub $0x8,%rsi + // jb Llzvn_exit + jmp = rsi < 0x8 ? 1 : 0; + rsi -= 0x8; + if (jmp) { + return 0; + } + + // lea -0x8(%rdx,%rcx,1),%rcx + // cmp %rcx,%rdx + // ja Llzvn_exit + rcx = rdx + rcx - 0x8; + if (rdx > rcx) { + return 0; + } + + LABEL_JUMP; + + + +Llzvn_table0: + r9 >>= 0x6; // shr $0x6,%r9 + rdx = rdx + r9 + 0x1; // lea 0x1(%rdx,%r9,1),%rdx + + // cmp %rcx,%rdx + // ja Llzvn_exit + if (rdx > rcx) { + return 0; + } + + r10 = 0x38; // mov $0x38,%r10 + r10 &= r8; // and %r8,%r10 + r8 >>= 0x8; // shr $0x8,%r8 + r10 >>= 0x3; // shr $0x3,%r10 + r10 += 0x3; // add $0x3,%r10 + goto Llzvn_l10; // jmp Llzvn_l10 + +Llzvn_table1: + r9 >>= 0x6; // shr $0x6,%r9 + rdx = rdx + r9 + 0x2; // lea 0x2(%rdx,%r9,1),%rdx + + // cmp %rcx,%rdx + // ja Llzvn_exit + if (rdx > rcx) { + return 0; + } + + r12 = r8; // mov %r8,%r12 + r12 = OSSwapInt64(r12); // bswap %r12 + r10 = r12; // mov %r12,%r10 + r12 <<= 0x5; // shl $0x5,%r12 + r12 >>= 0x35; // shr $0x35,%r12 + r10 <<= 0x2; // shl $0x2,%r10 + r10 >>= 0x3d; // shr $0x3d,%r10 + r10 += 0x3; // add $0x3,%r10 + r8 >>= 0x10; // shr $0x10,%r8 + goto Llzvn_l10; + + +Llzvn_table3: + r9 >>= 0x6; // shr $0x6,%r9 + rdx = rdx + r9 + 0x3; // lea 0x3(%rdx,%r9,1),%rdx + + // cmp %rcx,%rdx + // ja Llzvn_exit + if (rdx > rcx) { + return 0; + } + + r10 = 0x38; // mov $0x38,%r10 + r12 = 0xFFFF; // mov $0xffff,%r12 + r10 &= r8; // and %r8,%r10 + r8 >>= 0x8; // shr $0x8,%r8 + r10 >>= 0x3; // shr $0x3,%r10 + r12 &= r8; // and %r8,%r12 + r8 >>= 0x10; // shr $0x10,%r8 + r10 += 0x3; // add $0x3,%r10 + goto Llzvn_l10; // jmp Llzvn_l10 + + +Llzvn_table4: + // add $0x1,%rdx + // cmp %rcx,%rdx + // ja Llzvn_exit + rdx += 1; + if (rdx > rcx) { + return 0; + } + + LABEL_JUMP; + + +Llzvn_table6: + r9 >>= 0x3; // shr $0x3,%r9 + r9 &= 0x3; // and $0x3,%r9 + rdx = rdx + r9 + 0x3; // lea 0x3(%rdx,%r9,1),%rdx + + // cmp %rcx,%rdx + // ja Llzvn_exit + if (rdx > rcx) { + return 0; + } + + r10 = r8; // mov %r8,%r10 + r10 &= 0x307; // and $0x307,%r10 + r8 >>= 0xa; // shr $0xa,%r8 + + // movzbq %r10b,%r12 + r12 = r10 & 0xFF; + + r10 >>= 0x8; // shr $0x8,%r10 + r12 <<= 0x2; // shl $0x2,%r12 + r10 |= r12; // or %r12,%r10 + r12 = 0x3FFF; // mov $0x3fff,%r12 + r10 += 0x3; // add $0x3,%r10 + r12 &= r8; // and %r8,%r12 + r8 >>= 0xE; // shr $0xe,%r8 + goto Llzvn_l10; // jmp Llzvn_l10 + + +Llzvn_table7: + r8 >>= 0x8; // shr $0x8,%r8 + r8 &= 0xFF; // and $0xff,%r8 + r8 += 0x10; // add $0x10,%r8 + rdx = rdx + r8 + 0x2; // lea 0x2(%rdx,%r8,1),%rdx + goto Llzvn_l0; + + +Llzvn_table8: + r8 &= 0xF; // and $0xf,%r8 + rdx = rdx + r8 + 0x1; // lea 0x1(%rdx,%r8,1),%rdx + goto Llzvn_l0; // jmp Llzvn_l0 + + +Llzvn_table9: + rdx += 0x2; // add $0x2,%rdx + + // cmp %rcx,%rdx + // ja Llzvn_exit + if (rdx > rcx) { + return 0; + } + + r10 = r8; // mov %r8,%r10 + r10 >>= 0x8; // shr $0x8,%r10 + r10 &= 0xFF; // and $0xff,%r10 + r10 += 0x10; // add $0x10,%r10 + goto Llzvn_l11; + + +Llzvn_table10: + rdx += 1; // add $0x1,%rdx + + //cmp %rcx,%rdx + //ja Llzvn_exit + if (rdx > rcx) { + return 0; + } + + r10 = r8; // mov %r8,%r10 + r10 &= 0xF; // and $0xf,%r10 + goto Llzvn_l11; // jmp Llzvn_l11 + + + + +Llzvn_l10: + r11 = rax + r9; // lea (%rax,%r9,1),%r11 + r11 += r10; // add %r10,%r11 + + // cmp %rsi,%r11 + // jae Llzvn_l8 + if (r11 >= rsi) { + goto Llzvn_l8; + } + + // mov %r8,(%rdi,%rax,1) + addr = rdi + rax; + *((uint64_t *)addr) = r8; + + rax += r9; // add %r9,%rax + r8 = rax; // mov %rax,%r8 + + // sub %r12,%r8 + // jb Llzvn_exit + jmp = r8 < r12 ? 1 : 0; + r8 -= r12; + if (jmp) { + return 0; + } + + // cmp $0x8,%r12 + // jb Llzvn_l4 + if (r12 < 0x8) { + goto Llzvn_l4; + } + + +Llzvn_l5: + do + { + // mov (%rdi,%r8,1),%r9 + addr = rdi + r8; + r9 = *((uint64_t *)addr); + + r8 += 0x8; // add $0x8,%r8 + + // mov %r9,(%rdi,%rax,1) + addr = rdi + rax; + *((uint64_t *)addr) = r9; + + rax += 0x8; // add $0x8,%rax + + // sub $0x8,%r10 + // ja Llzvn_l5 + jmp = r10 > 0x8 ? 1 : 0; + r10 -= 0x8; + } + while (jmp); + + rax += r10; // add %r10,%rax + + LABEL_JUMP; + + +Llzvn_l8: + // test %r9,%r9 + // je Llzvn_l7 + if (r9 != 0) + { + r11 = rsi + 0x8; // lea 0x8(%rsi),%r11 + + do + { + // mov %r8b,(%rdi,%rax,1) + addr = rdi + rax; + byte_data = (unsigned char)(r8 & 0xFF); + *((unsigned char *)addr) = byte_data; + + rax += 0x1; // add $0x1,%rax + + // cmp %rax,%r11 + // je Llzvn_exit2 + if (rax == r11) { + return rax; + } + + r8 >>= 0x8; // shr $0x8,%r8 + + // sub $0x1,%r9 + // jne Llzvn_l6 + jmp = r9 != 0x1 ? 1 : 0; + r9 -= 1; + } + while (jmp); + } + + // mov %rax,%r8 + r8 = rax; + + // sub %r12,%r8 + // jb Llzvn_exit + jmp = r8 < r12 ? 1 : 0; + r8 -= r12; + if (jmp) { + return 0; + } + + +Llzvn_l4: + r11 = rsi + 0x8; // lea 0x8(%rsi),%r11 + + do + { + // movzbq (%rdi,%r8,1),%r9 + addr = rdi + r8; + byte_data = *((unsigned char *)addr); + r9 = byte_data; + r9 &= 0xFF; + + r8 += 0x1; // add $0x1,%r8 + + // mov %r9b,(%rdi,%rax,1) + addr = rdi + rax; + byte_data = (unsigned char)r9; + *((unsigned char *)addr) = byte_data; + + rax += 0x1; // add $0x1,%rax + + // cmp %rax,%r11 + // je Llzvn_exit2 + if (rax == r11) { + return rax; + } + + // sub $0x1,%r10 + // jne Llzvn_l9 + jmp = r10 != 0x1 ? 1 : 0; + r10 -= 0x1; + } + while (jmp); + + LABEL_JUMP; + + +Llzvn_l11: + r8 = rax; // mov %rax,%r8 + r8 -= r12; // sub %r12,%r8 + r11 = rax + r10; // lea (%rax,%r10,1),%r11 + + // cmp %rsi,%r11 + // jae Llzvn_l4 + if (r11 >= rsi) { + goto Llzvn_l4; + } + + // cmp $0x8,%r12 + // jae Llzvn_l5 + if (r12 >= 0x8) { + goto Llzvn_l5; + } + + goto Llzvn_l4; // jmp Llzvn_l4 + + +Llzvn_l0: + // cmp %rcx,%rdx + // ja Llzvn_exit + if (rdx > rcx) { + return 0; + } + + r11 = rax + r8; // lea (%rax,%r8,1),%r11 + r8 = -r8; // neg %r8 + + // cmp %rsi,%r11 + // ja Llzvn_l2 + if (r11 <= rsi) + { + r11 = rdi + r11; // lea (%rdi,%r11,1),%r11 + + uint64_t check = 0; + + do + { + // mov (%rdx,%r8,1),%r9 + addr = rdx + r8; + r9 = *(uint64_t *)addr; + + // mov %r9,(%r11,%r8,1) + addr = r11 + r8; + *(uint64_t *)addr = r9; + + // add $0x8,%r8 + // jae Llzvn_l1 + + check = UINT64_MAX; + check -= (uint64_t)r8; + + r8 += 0x8; + } + while (check >= 0x8); + + rax = r11; // mov %r11,%rax + rax -= rdi; // sub %rdi,%rax + + LABEL_JUMP; + } + + r11 = rsi + 0x8; // lea 0x8(%rsi),%r11 + + do + { + // movzbq (%rdx,%r8,1),%r9 + addr = rdx + r8; + r9 = *((uint64_t *)addr); + r9 &= 0xFF; + + // mov %r9b,(%rdi,%rax,1) + addr = rdi + rax; + byte_data = (unsigned char)r9; + *((unsigned char *)addr) = byte_data; + + rax += 0x1; // add $0x1,%rax + + // cmp %rax,%r11 + // je Llzvn_exit2 + if (r11 == rax) { + return rax; + } + + // add $0x1,%r8 + // jne Llzvn_l3 + jmp = ((int64_t)r8 + 0x1 == 0) ? 0 : 1; + r8 += 0x1; + } + while (jmp); + + LABEL_JUMP; + + + // should never come here. + return 0; +} Property changes on: branches/ErmaC/Enoch/i386/boot2/lzvn.c ___________________________________________________________________ Added: svn:executable + * Index: branches/ErmaC/Enoch/i386/boot2/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/boot2/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/Makefile (revision 2457) @@ -19,7 +19,7 @@ DIR = boot2 include ${SRCROOT}/Make.rules -OPTIM = -Os -Oz +OPTIM = $(CONFIG_OPTIMIZATION_LEVEL) CFLAGS = $(RC_CFLAGS) $(OPTIM) $(MORECPP) -arch i386 -g -Wmost -Werror \ -fno-builtin -DSAIO_INTERNAL_USER -static $(OMIT_FRAME_POINTER_CFLAG) -fno-stack-protector \ -march=pentium4 -msse2 -msoft-float -nostdinc -include $(SRCROOT)/autoconf.h @@ -29,10 +29,10 @@ DEFINES= CONFIG = hd SYMDIR = $(SYMROOT) -LIBSADIR = ../libsa -LIBSAIODIR = ../libsaio +LIBSADIR = $(SRCROOT)/i386/libsa +LIBSAIODIR = $(SRCROOT)/i386/libsaio THEME = $(CONFIG_EMBEDED_THEME) -THEMEDIR = ../../artwork/themes/$(THEME) +THEMEDIR = $(SRCROOT)/artwork/themes/$(THEME) INC = -I. -I$(SRCROOT) -I$(SYMDIR) -I$(LIBSADIR) -I$(LIBSAIODIR) -I${SRCROOT}/i386/include LIBS= -L$(SYMDIR) -lsaio -lsa -lklibc @@ -42,13 +42,13 @@ # The ordering is important; # boot2.o must be first. -OBJS = boot2.o boot.o graphics.o drivers.o prompt.o options.o lzss.o mboot.o ramdisk.o \ - picopng.o resume.o bmdecompress.o graphic_utils.o gui.o modules.o \ - modules_support.o boot_modules.o +OBJS = boot2.o boot.o graphics.o drivers.o prompt.o options.o lzss.o lzvn.o mboot.o \ + ramdisk.o picopng.o resume.o bmdecompress.o graphic_utils.o gui.o modules.o \ + modules_support.o boot_modules.o # button.o browser.o scrollbar.o == NOTYET OBJS := $(addprefix $(OBJROOT)/, $(OBJS)) -UTILDIR = ../util +UTILDIR = $(SRCROOT)/i386/util DIRS_NEEDED = $(OBJROOT) $(SYMROOT) BOOT2ADDR = 20200 MAXBOOTSIZE = 458240 @@ -82,7 +82,7 @@ @${MKDIRS} $(OBJROOT)/../boot2_modules/ @### First pass, don't worry abount segment alignment. - @echo "\t[LD] boot.sys" + @echo " [LD] boot.sys" @$(CC) -Wl,-preload -Wl,-alias,boot2,start \ -nostdlib -arch i386 -Wl,-pie \ -Wl,-read_only_relocs,suppress \ @@ -94,10 +94,10 @@ ifeq (${CONFIG_MODULES}, y) @# Generate the Symbols.dylib file - @echo "\t[dyldsymboltool] Symbols.dylib" + @echo " [dyldsymboltool] Symbols.dylib" @$(SYMROOT)/dyldsymboltool $(SYMROOT)/boot.sys $(SYMROOT)/${SYMBOLS_MODULE} - @echo "\t[LD] boot.sys" + @echo " [LD] boot.sys" @$(CC) -Wl,-preload -Wl,-alias,boot2,start \ -nostdlib -arch i386 -Wl,-pie \ -Wl,-sectcreate,__DATA,__Symbols,$(SYMROOT)/Symbols.dylib \ @@ -114,10 +114,10 @@ @${RM} $(SYMROOT)/${SYMBOLS_MODULE} @# Generate the Symbols.dylib file - @echo "\t[dyldsymboltool] Symbols.dylib" + @echo " [dyldsymboltool] Symbols.dylib" @$(SYMROOT)/dyldsymboltool $(SYMROOT)/boot.sys $(SYMROOT)/${SYMBOLS_MODULE} - @echo "\t[LD] boot.sys" + @echo " [LD] boot.sys" @$(CC) -Wl,-preload -Wl,-alias,boot2,start \ -nostdlib -arch i386 -Wl,-pie \ -Wl,-sectcreate,__DATA,__Symbols,$(SYMROOT)/Symbols.dylib \ @@ -142,7 +142,7 @@ -o $(OBJROOT)/Symbols_LINKER_ONLY.dylib else - @echo "\t[LD] boot.sys" + @echo " [LD] boot.sys" @$(CC) -Wl,-preload -Wl,-alias,boot2,start \ -nostdlib -arch i386 -Wl,-pie \ -Wl,-segaddr,__INIT,`echo obase=16\; $$((0x${BOOT2ADDR})) | bc` \ @@ -155,7 +155,7 @@ endif - @echo "\t[MACHOCONV] boot" + @echo " [MACHOCONV] boot" @$(SYMROOT)/machOconv ${SYMROOT}/$@.sys $(SYMROOT)/$@ &> /dev/null @( size=`ls -l $(SYMROOT)/boot | awk '{ print $$5}'` ; \ @@ -190,7 +190,7 @@ @echo "" >> $(SYMROOT)/art.h @echo "embeddedpng_t embeddedImages[] = {" >> $(SYMROOT)/art.h @cd $(SYMROOT)/embed && find . -name '*.png' | sort | cut -f 2 -d '/' | cut -f 1 -d '.' | \ - awk '{ printf "\t{.name = \"%s\", .pngdata = __%s_png, .length = &__%s_png_len},\n", $$1, $$1, $$1 }' >> $(SYMROOT)/art.h + awk '{ printf " {.name = \"%s\", .pngdata = __%s_png, .length = &__%s_png_len},\n", $$1, $$1, $$1 }' >> $(SYMROOT)/art.h @echo "};" >> $(SYMROOT)/art.h @echo "#endif /* !__BOOT2_ART_H */" >> $(SYMROOT)/art.h ;\ @@ -204,7 +204,7 @@ clean-local: @for o in $(SYMROOT)/boot $(SYMROOT)/boot.sys $(SYMROOT)/embedded.h $(OBJROOT)/Symbols_LINKER_ONLY.dylib; do \ - if [ -f "$${o}" ];then echo "\t[RM] $${o}"; fi; done - @if [ -d "$(OBJROOT)" ];then echo "\t[RM] all objects in $(OBJROOT)"; fi + if [ -f "$${o}" ];then echo " [RM] $${o}"; fi; done + @if [ -d "$(OBJROOT)" ];then echo " [RM] all objects in $(OBJROOT)"; fi @rm -f $(SYMROOT)/boot $(SYMROOT)/boot.sys $(SYMROOT)/embedded.h $(OBJS) @rm -rf $(OBJROOT) Index: branches/ErmaC/Enoch/i386/boot2/boot.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/boot.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/boot.c (revision 2457) @@ -6,7 +6,7 @@ * Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights * Reserved. This file contains Original Code and/or Modifications of * Original Code as defined in and that are subject to the Apple Public - * Source License Version 2.0 (the "License"). You may not use this file + * Source License Version 2.0 (the "License"). You may not use this file * except in compliance with the License. Please obtain a copy of the * License at http://www.apple.com/publicsource and read it before using * this file. @@ -26,7 +26,7 @@ * Mach Operating System * Copyright (c) 1990 Carnegie-Mellon University * Copyright (c) 1989 Carnegie-Mellon University - * All rights reserved. The CMU software License Agreement specifies + * All rights reserved. The CMU software License Agreement specifies * the terms and conditions for use and redistribution. * * INTEL CORPORATION PROPRIETARY INFORMATION @@ -86,8 +86,6 @@ long gBootMode; /* defaults to 0 == kBootModeNormal */ BVRef bvr, menuBVR, bvChain; -static bool checkOSVersion(const char * version); -static void getOSVersion(); static unsigned long Adler32(unsigned char *buffer, long length); //static void selectBiosDevice(void); @@ -145,7 +143,9 @@ (int *)&bootArgs->ksize ); if ( ret != 0 ) + { return ret; + } // Reserve space for boot args reserveKernBootStruct(); @@ -157,13 +157,16 @@ // Load boot drivers from the specifed root path. //if (!gHaveKernelCache) - LoadDrivers("/"); + { + LoadDrivers("/"); + } execute_hook("DriversLoaded", (void*)binary, NULL, NULL, NULL); clearActivityIndicator(); - if (gErrors) { + if (gErrors) + { printf("Errors encountered while starting up the computer.\n"); printf("Pausing %d seconds...\n", kBootErrorTimeout); sleep(kBootErrorTimeout); @@ -173,15 +176,18 @@ // Cleanup the PXE base code. - if ( (gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit ) { - if ( (ret = nbpUnloadBaseCode()) != nbpStatusSuccess ) { + if ( (gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit ) + { + if ( (ret = nbpUnloadBaseCode()) != nbpStatusSuccess ) + { printf("nbpUnloadBaseCode error %d\n", (int) ret); sleep(2); } } bool dummyVal; - if (getBoolForKey(kWaitForKeypressKey, &dummyVal, &bootInfo->chameleonConfig) && dummyVal) { + if (getBoolForKey(kWaitForKeypressKey, &dummyVal, &bootInfo->chameleonConfig) && dummyVal) + { showTextBuffer(msgbuf, strlen(msgbuf)); } @@ -190,9 +196,12 @@ // If we were in text mode, switch to graphics mode. // This will draw the boot graphics unless we are in // verbose mode. - if (gVerboseMode) { + if (gVerboseMode) + { setVideoMode( GRAPHICS_MODE, 0 ); - } else { + } + else + { drawBootGraphics(); } @@ -204,16 +213,17 @@ finalizeBootStruct(); // Jump to kernel's entry point. There's no going back now. - if ((checkOSVersion("10.7")) || (checkOSVersion("10.8")) || (checkOSVersion("10.9"))) + if ( LION || MOUNTAIN_LION || MAVERICKS || YOSEMITE ) { - // Notify modules that the kernel is about to be started execute_hook("Kernel Start", (void*)kernelEntry, (void*)bootArgs, NULL, NULL); // Masking out so that Lion doesn't doublefault startprog( kernelEntry, bootArgs ); - } else { + } + else + { // Notify modules that the kernel is about to be started execute_hook("Kernel Start", (void*)kernelEntry, (void*)bootArgsPreLion, NULL, NULL); @@ -235,7 +245,8 @@ long flags, time, cachetime, kerneltime, exttime, ret=-1; unsigned long adler32; - if((gBootMode & kBootModeSafe) != 0) { + if((gBootMode & kBootModeSafe) != 0) + { DBG("Kernel Cache ignored.\n"); return -1; } @@ -248,14 +259,16 @@ } else { - // Lion, Mountain Lion and Mavericks prelink kernel cache file - if ((checkOSVersion("10.7")) || (checkOSVersion("10.8")) || (checkOSVersion("10.9"))) + // Lion, Mountain Lion, Mavericks, and Yosemite prelink kernel cache file + // for 10.7 10.8 10.9 10.10 + if ( LION || MOUNTAIN_LION || MAVERICKS || YOSEMITE) { snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%skernelcache", kDefaultCachePathSnow); - verbose("10.7, 10.8 & 10.9 kernel cache file path = %s\n", kernelCacheFile); + verbose("10.7, 10.8, 10.9 & 10.10 kernel cache file path = %s\n", kernelCacheFile); } // Snow Leopard prelink kernel cache file - else if (checkOSVersion("10.6")) { + else if ( SNOW_LEOPARD ) + { snprintf(kernelCacheFile, sizeof(kernelCacheFile), "kernelcache_%s", (archCpuType == CPU_TYPE_I386) ? "i386" : "x86_64"); @@ -266,10 +279,13 @@ struct dirstuff* cacheDir = opendir(kDefaultCachePathSnow); /* TODO: handle error? */ - if (cacheDir) { - while(readdir(cacheDir, (const char**)&name, &flags, &time) >= 0) { + if (cacheDir) + { + while(readdir(cacheDir, (const char**)&name, &flags, &time) >= 0) + { if (((flags & kFileTypeMask) != kFileTypeDirectory) && time > prev_time - && strstr(name, kernelCacheFile) && (name[lnam] != '.')) { + && strstr(name, kernelCacheFile) && (name[lnam] != '.')) + { snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%s%s", kDefaultCachePathSnow, name); prev_time = time; } @@ -280,9 +296,7 @@ } else { // Reset cache name. bzero(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64); - snprintf(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64, - "%s,%s", - gRootDevice, bootInfo->bootFile); + snprintf(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64, "%s,%s", gRootDevice, bootInfo->bootFile); adler32 = Adler32((unsigned char *)gCacheNameAdler, sizeof(gCacheNameAdler)); snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%s.%08lX", kDefaultCachePathLeo, adler32); verbose("Reseted kernel cache file path = %s\n", kernelCacheFile); @@ -293,32 +307,44 @@ ret = -1; // If boot from a boot helper partition check the kernel cache file on it - if (gBootVolume->flags & kBVFlagBooter) { + if (gBootVolume->flags & kBVFlagBooter) + { snprintf(kernelCachePath, sizeof(kernelCachePath), "com.apple.boot.P%s", kernelCacheFile); ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime); - if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat)) { + + if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat)) + { snprintf(kernelCachePath, sizeof(kernelCachePath), "com.apple.boot.R%s", kernelCacheFile); ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime); - if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat)) { + + if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat)) + { snprintf(kernelCachePath, sizeof(kernelCachePath), "com.apple.boot.S%s", kernelCacheFile); ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime); - if ((flags & kFileTypeMask) != kFileTypeFlat) { + + if ((flags & kFileTypeMask) != kFileTypeFlat) + { ret = -1; } } } } + // If not found, use the original kernel cache path. - if (ret == -1) { + if (ret == -1) + { strlcpy(kernelCachePath, kernelCacheFile, sizeof(kernelCachePath)); ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime); - if ((flags & kFileTypeMask) != kFileTypeFlat) { + + if ((flags & kFileTypeMask) != kFileTypeFlat) + { ret = -1; } } // Exit if kernel cache file wasn't found - if (ret == -1) { + if (ret == -1) + { DBG("No Kernel Cache File '%s' found\n", kernelCacheFile); return -1; } @@ -326,20 +352,20 @@ // Check if the kernel cache file is more recent (mtime) // than the kernel file or the S/L/E directory ret = GetFileInfo(NULL, bootInfo->bootFile, &flags, &kerneltime); + // Check if the kernel file is more recent than the cache file - if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeFlat) - && (kerneltime > cachetime)) { - DBG("Kernel file (%s) is more recent than Kernel Cache (%s)! Ignoring Kernel Cache.\n", - bootInfo->bootFile, kernelCacheFile); + if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeFlat) && (kerneltime > cachetime)) + { + DBG("Kernel file (%s) is more recent than Kernel Cache (%s)! Ignoring Kernel Cache.\n", bootInfo->bootFile, kernelCacheFile); return -1; } ret = GetFileInfo("/System/Library/", "Extensions", &flags, &exttime); + // Check if the S/L/E directory time is more recent than the cache file - if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeDirectory) - && (exttime > cachetime)) { - DBG("Folder: '/System/Library/Extensions' is more recent than Kernel Cache file (%s)! Ignoring Kernel Cache.\n", - kernelCacheFile); + if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeDirectory) && (exttime > cachetime)) + { + DBG("Folder: '/System/Library/Extensions' is more recent than Kernel Cache file (%s)! Ignoring Kernel Cache.\n", kernelCacheFile); return -1; } @@ -418,12 +444,14 @@ // Load boot.plist config file status = loadChameleonConfig(&bootInfo->chameleonConfig, bvChain); - if (getBoolForKey(kQuietBootKey, &quiet, &bootInfo->chameleonConfig) && quiet) { + if (getBoolForKey(kQuietBootKey, &quiet, &bootInfo->chameleonConfig) && quiet) + { gBootMode |= kBootModeQuiet; } // Override firstRun to get to the boot menu instantly by setting "Instant Menu"=y in system config - if (getBoolForKey(kInstantMenuKey, &instantMenu, &bootInfo->chameleonConfig) && instantMenu) { + if (getBoolForKey(kInstantMenuKey, &instantMenu, &bootInfo->chameleonConfig) && instantMenu) + { firstRun = false; } @@ -434,29 +462,31 @@ gEnableCDROMRescan = false; // Enable it with Rescan=y in system config - if (getBoolForKey(kRescanKey, &gEnableCDROMRescan, &bootInfo->chameleonConfig) - && gEnableCDROMRescan) { + if (getBoolForKey(kRescanKey, &gEnableCDROMRescan, &bootInfo->chameleonConfig) && gEnableCDROMRescan) + { gEnableCDROMRescan = true; } // Ask the user for Rescan option by setting "Rescan Prompt"=y in system config. rescanPrompt = false; - if (getBoolForKey(kRescanPromptKey, &rescanPrompt , &bootInfo->chameleonConfig) - && rescanPrompt && biosDevIsCDROM(gBIOSDev)) + if (getBoolForKey(kRescanPromptKey, &rescanPrompt , &bootInfo->chameleonConfig) && rescanPrompt && biosDevIsCDROM(gBIOSDev)) { gEnableCDROMRescan = promptForRescanOption(); } // Enable touching a single BIOS device only if "Scan Single Drive"=y is set in system config. - if (getBoolForKey(kScanSingleDriveKey, &gScanSingleDrive, &bootInfo->chameleonConfig) - && gScanSingleDrive) { + if (getBoolForKey(kScanSingleDriveKey, &gScanSingleDrive, &bootInfo->chameleonConfig) && gScanSingleDrive) + { gScanSingleDrive = true; } // Create a list of partitions on device(s). - if (gScanSingleDrive) { + if (gScanSingleDrive) + { scanBootVolumes(gBIOSDev, &bvCount); - } else { + } + else + { scanDisks(gBIOSDev, &bvCount); } @@ -544,23 +574,26 @@ updateVRAM(); } - // Find out which version mac os we're booting. - getOSVersion(); - - if (platformCPUFeature(CPU_FEATURE_EM64T)) { + if (platformCPUFeature(CPU_FEATURE_EM64T)) + { archCpuType = CPU_TYPE_X86_64; - } else { + } + else + { archCpuType = CPU_TYPE_I386; } - if (getValueForKey(karch, &val, &len, &bootInfo->chameleonConfig)) { - if (strncmp(val, "i386", 4) == 0) { + if (getValueForKey(karch, &val, &len, &bootInfo->chameleonConfig)) + { + if (strncmp(val, "i386", 4) == 0) + { archCpuType = CPU_TYPE_I386; } } if (getValueForKey(kKernelArchKey, &val, &len, &bootInfo->chameleonConfig)) { - if (strncmp(val, "i386", 4) == 0) { + if (strncmp(val, "i386", 4) == 0) + { archCpuType = CPU_TYPE_I386; } } @@ -568,10 +601,13 @@ // Notify modules that we are attempting to boot execute_hook("PreBoot", NULL, NULL, NULL, NULL); - if (!getBoolForKey (kWake, &tryresume, &bootInfo->chameleonConfig)) { + if (!getBoolForKey (kWake, &tryresume, &bootInfo->chameleonConfig)) + { tryresume = true; tryresumedefault = true; - } else { + } + else + { tryresumedefault = false; } @@ -579,12 +615,14 @@ forceresume = false; } - if (forceresume) { + if (forceresume) + { tryresume = true; tryresumedefault = false; } - while (tryresume) { + while (tryresume) + { const char *tmp; BVRef bvr; if (!getValueForKey(kWakeImage, &val, &len, &bootInfo->chameleonConfig)) @@ -603,7 +641,8 @@ if ((ret != 0) || ((flags & kFileTypeMask) != kFileTypeFlat)) break; - if (!forceresume && ((sleeptime+3)modTime)) { + if (!forceresume && ((sleeptime+3)modTime)) + { #if DEBUG printf ("Hibernate image is too old by %d seconds. Use ForceWake=y to override\n", bvr->modTime-sleeptime); @@ -627,16 +666,20 @@ } /* FIXME: check len vs sizeof(kernelCacheFile) */ strlcpy(kernelCacheFile, val, len + 1); - } else { + } + else + { kernelCacheFile[0] = 0; // Use default kernel cache file } - if (gOverrideKernel && kernelCacheFile[0] == 0) { + if (gOverrideKernel && kernelCacheFile[0] == 0) + { DBG("Using a non default kernel (%s) without specifying 'Kernel Cache' path, KernelCache will not be used\n", bootInfo->bootFile); useKernelCache = false; break; } - if (gMKextName[0] != 0) { + if (gMKextName[0] != 0) + { DBG("Using a specific MKext Cache (%s), KernelCache will not be used\n", gMKextName); useKernelCache = false; @@ -648,10 +691,13 @@ } while(0); do { - if (useKernelCache) { + if (useKernelCache) + { ret = LoadKernelCache(kernelCacheFile, &binary); if (ret >= 0) + { break; + } } bool bootFileWithDevice = false; @@ -663,13 +709,30 @@ // bootFile must start with a / if it not start with a device name if (!bootFileWithDevice && (bootInfo->bootFile)[0] != '/') - snprintf(bootFile, sizeof(bootFile), "/%s", bootInfo->bootFile); // append a leading / + { + if (!YOSEMITE) + { + //printf(HEADER " (%s).\n", bootInfo->bootFile); + snprintf(bootFile, sizeof(bootFile), "/%s", bootInfo->bootFile); // append a leading / + //sleep(1); + } + else + { + + //printf(HEADER " (%s).\n", bootInfo->bootFile); + snprintf(bootFile, sizeof(bootFile), kDefaultKernelPathForYos"%s", bootInfo->bootFile); // Yosemite + //sleep(1); + } + } else + { strlcpy(bootFile, bootInfo->bootFile, sizeof(bootFile)); + } // Try to load kernel image from alternate locations on boot helper partitions. ret = -1; - if ((gBootVolume->flags & kBVFlagBooter) && !bootFileWithDevice) { + if ((gBootVolume->flags & kBVFlagBooter) && !bootFileWithDevice) + { snprintf(bootFilePath, sizeof(bootFilePath), "com.apple.boot.P%s", bootFile); ret = GetFileInfo(NULL, bootFilePath, &flags, &time); if (ret == -1) @@ -683,7 +746,8 @@ } } } - if (ret == -1) { + if (ret == -1) + { // No alternate location found, using the original kernel image path. strlcpy(bootFilePath, bootFile, sizeof(bootFilePath)); } @@ -704,32 +768,39 @@ sleep(8); #endif - if (ret <= 0) { + if (ret <= 0) + { printf("Can't find %s\n", bootFile); sleep(1); - if (gBootFileType == kNetworkDeviceType) { + if (gBootFileType == kNetworkDeviceType) + { // Return control back to PXE. Don't unload PXE base code. gUnloadPXEOnExit = false; break; } pause(); - } else { + } + else + { /* Won't return if successful. */ ret = ExecKernel(binary); } } // chainboot - if (status == 1) { + if (status == 1) + { // if we are already in graphics-mode, - if (getVideoMode() == GRAPHICS_MODE) { + if (getVideoMode() == GRAPHICS_MODE) + { setVideoMode(VGA_TEXT_MODE, 0); // switch back to text mode. } } - if ((gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit) { + if ((gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit) + { nbpUnloadBaseCode(); } } @@ -757,15 +828,18 @@ bool checkOSVersion(const char * version) { - return ((gMacOSVersion[0] == version[0]) && (gMacOSVersion[1] == version[1]) - && (gMacOSVersion[2] == version[2]) && (gMacOSVersion[3] == version[3])); + if ( (sizeof(version) > 4) && (version[3] == '1') ) { + return ((gMacOSVersion[0] == version[0]) && (gMacOSVersion[1] == version[1]) + && (gMacOSVersion[2] == version[2]) && (gMacOSVersion[3] == version[3]) + && (gMacOSVersion[4] == version[4])); + } + else + { + return ((gMacOSVersion[0] == version[0]) && (gMacOSVersion[1] == version[1]) + && (gMacOSVersion[2] == version[2]) && (gMacOSVersion[3] == version[3])); + } } -static void getOSVersion() -{ - strncpy(gMacOSVersion, gBootVolume->OSVersion, sizeof(gMacOSVersion)); -} - #define BASE 65521L /* largest prime smaller than 65536 */ #define NMAX 5000 // NMAX (was 5521) the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 Index: branches/ErmaC/Enoch/i386/boot2/boot2.s =================================================================== --- branches/ErmaC/Enoch/i386/boot2/boot2.s (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/boot2.s (revision 2457) @@ -153,7 +153,7 @@ # cannot do that and have GRUB find it because GRUB only searches the first # 8k of the binary. Since __TEXT,__const follows __TEXT,__text (the code # section) and since the code is well over 8k long, it doesn't work. -.align 2, 0x90 # Make sure we're on a 4-byte boundary. Required by Multiboot. +.align 4, 0x90 # Make sure we're on a 4-byte boundary. Required by Multiboot. _multiboot_header: # magic (NOTE: this shows up as 02b0 ad1b in a hex dump) .long MULTIBOOT_HEADER_MAGIC @@ -176,7 +176,7 @@ nop nop nop -.align 3, 0x90 # Align to 8 byte boundary which should be enough nops +.align 8, 0x90 # Align to 8 byte boundary which should be enough nops # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - _multiboot_entry: @@ -276,7 +276,7 @@ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # _continue_at_low_address does some trickery to get the caller running from the low address with the right selector .globl _continue_at_low_address - .align 2, 0x90 + .align 4, 0x90 _continue_at_low_address: # Our stack frame has been set up with the return address on top # First, fix that to be 1 MB lower @@ -325,7 +325,7 @@ # We aren't using it right now so it's in an if 0 block. #if 0 .globl _cause_crash - .align 2, 0x90 + .align 4, 0x90 _cause_crash: # Cause a crash, there is no GDT selector f0 jmp $0xf0,$0 @@ -338,7 +338,7 @@ # See the comments above as to why we have OFFSET_1MEG. //.data .section __INIT,__data // turbo - .align 2, 0x90 + .align 4, 0x90 _Gdtr_high: .word GDTLIMIT .long vtop(_Gdt + OFFSET_1MEG) Index: branches/ErmaC/Enoch/i386/boot2/boot.h =================================================================== --- branches/ErmaC/Enoch/i386/boot2/boot.h (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/boot.h (revision 2457) @@ -28,11 +28,21 @@ #define __BOOT2_BOOT_H #include "libsaio.h" + +// OS X Versions +#define YOSEMITE checkOSVersion("10.10") // Yosemite +#define MAVERICKS checkOSVersion("10.9") // Mavericks +#define MOUNTAIN_LION checkOSVersion("10.8") // Mountain Lion +#define LION checkOSVersion("10.7") // Lion +#define SNOW_LEOPARD checkOSVersion("10.6") // Snow Leopard +#define LEOPARD checkOSVersion("10.5") // Leopard +#define TIGER checkOSVersion("10.4") // Tiger + /* * Paths used by chameleon */ -//kernel cache +// kernel cache #define kDefaultCachePathLeo "/System/Library/Caches/com.apple.kernelcaches/" #define kDefaultCachePathSnow "/System/Library/Caches/com.apple.kext.caches/Startup/" @@ -44,6 +54,10 @@ #define kMLionInstallerDataFolder "/OS X Install Data/" #define kMLionInstallerPlist kMLionInstallerDataFolder "com.apple.Boot.plist" +//kernel path +#define kDefaultKernelPathPreYos "/" +#define kDefaultKernelPathForYos "/System/Library/Kernels/" //for Yosemite + /* * Keys used in system Boot.plist */ @@ -70,9 +84,10 @@ #define kScanSingleDriveKey "Scan Single Drive" #define kInstantMenuKey "Instant Menu" #define kDefaultKernel "mach_kernel" +#define kOSXKernel "kernel" // Yosemite #define kGUIKey "GUI" #define kBootBannerKey "Boot Banner" -#define kShowInfoKey "ShowInfo" // gui.c +#define kShowInfoKey "ShowInfo" /* gui.c */ #define kWaitForKeypressKey "Wait" /* AsereBLN: added these keys */ @@ -88,7 +103,7 @@ #define kHidePartition "Hide Partition" /* disk.c */ #define kRenamePartition "Rename Partition" /* disk.c */ #define kSMBIOSKey "SMBIOS" /* fake_efi.c */ -#define kSystemID "SystemId" /* fake_efi.c */ +//#define kSystemID "SystemId" /* fake_efi.c */ #define kSystemType "SystemType" /* fake_efi.c */ #define kUseNvidiaROM "UseNvidiaROM" /* nvidia.c */ #define kVBIOS "VBIOS" /* nvidia.c && ati.c */ @@ -153,7 +168,7 @@ #define kDcfg1 "display_1" /* nvidia.c */ /* Marchrius: added these keys */ -#define kEnableBacklight "EnableBacklight" /* ati.c && nvidia.c */ +#define kEnableBacklight "EnableBacklight" /* nvidia.c */ /* Kabyl: added these keys */ #define kAtiConfig "AtiConfig" /* ati.c */ @@ -312,8 +327,15 @@ /* * lzss.c */ -extern int decompress_lzss(u_int8_t *dst, u_int8_t *src, u_int32_t srclen); +extern int decompress_lzss(u_int8_t *dst, u_int32_t dstlen, u_int8_t *src, u_int32_t srclen); +extern u_int8_t *compress_lzss(u_int8_t *dst, u_int32_t dstlen, u_int8_t *src, u_int32_t srcLen); +/* + * lzvn.c + */ +extern size_t decompress_lzvn(void * _dest, size_t _dest_size, void * _src, size_t _src_size); +// extern u_int8_t *compress_lzvn(u_int8_t *dst, u_int32_t dstlen, u_int8_t *src, u_int32_t srcLen); + struct compressed_kernel_header { u_int32_t signature; u_int32_t compress_type; @@ -323,7 +345,7 @@ u_int32_t reserved[11]; char platform_name[64]; char root_path[256]; - u_int8_t data[0]; + u_int8_t data[0]; }; typedef struct compressed_kernel_header compressed_kernel_header; @@ -334,4 +356,6 @@ /* bmdecompress.c */ void * DecompressData(void *srcbase, int *dw, int *dh, int *bytesPerPixel); +bool checkOSVersion(const char * version); + #endif /* !__BOOT2_BOOT_H */ Index: branches/ErmaC/Enoch/i386/boot2/modules.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/modules.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/modules.c (revision 2457) @@ -105,6 +105,11 @@ long flags; long time; struct dirstuff* moduleDir = opendir("/Extra/modules/"); + if(!moduleDir) + { + verbose("Warning: Unable to open modules folder at '/Extra/modules/'. Ingoring modules.\n"); + return; + } while (readdir(moduleDir, (const char**)&name, &flags, &time) >= 0) { if(strcmp(&name[strlen(name) - sizeof("dylib")], ".dylib") == 0) { char* tmp = malloc(strlen(name) + 1); @@ -121,6 +126,7 @@ } } + closedir(moduleDir); } @@ -282,6 +288,11 @@ //DBG("External symbol %s located at 0x%X\n", name, entry->addr); return entry->addr; } + else if(strcmp(entry->symbol, name + 1) == 0 && *name == '_') // Allow _strstr to bing to strstr, etc + { + //DBG("External symbol %s located at 0x%X\n", name, entry->addr); + return entry->addr; + } else { entry = entry->next; Index: branches/ErmaC/Enoch/i386/boot2/bmdecompress.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/bmdecompress.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/bmdecompress.c (revision 2457) @@ -22,18 +22,15 @@ #include "libsa.h" -static void -PreviewDecompress16(uint32_t * compressBuffer, +static void PreviewDecompress16(uint32_t * compressBuffer, uint32_t width, uint32_t height, uint32_t row, uint16_t * output); -static void -PreviewDecompress32(uint32_t * compressBuffer, +static void PreviewDecompress32(uint32_t * compressBuffer, uint32_t width, uint32_t height, uint32_t row, uint32_t * output); -static void -PreviewDecompress16(uint32_t * compressBuffer, +static void PreviewDecompress16(uint32_t * compressBuffer, uint32_t width, uint32_t height, uint32_t row, uint16_t * output) { @@ -60,9 +57,12 @@ for (j = 0; j < (height + 2); j++) { input = compressBuffer; - if (j < height) { + if (j < height) + { input += j; - } else { + } + else + { input += height - 1; } @@ -71,20 +71,26 @@ uint32_t data = 0, repeat = 0, fetch = 0, count = 0; sr0 = sr1 = sr2 = sr3 = 0; - for (i = 0; i < (width + 2); i++) { - if (i < width) { - if (!count) { + for (i = 0; i < (width + 2); i++) + { + if (i < width) + { + if (!count) + { count = *input++; repeat = (count & 0xff000000); count ^= repeat; fetch = true; - } else { + } + else + { fetch = (0 == repeat); } count--; - if (fetch) { + if (fetch) + { data = *((uint16_t *)input); (*((uint16_t *)input))++; @@ -123,12 +129,14 @@ sc3[i] = tmp2; out &= 0x1f; - if ((i > 1) && (j > 1)) { + if ((i > 1) && (j > 1)) + { output[i-2] = out | (out << 5) | (out << 10); } } - if (j > 1) { + if (j > 1) + { output += row; } } @@ -138,8 +146,7 @@ free(sc0); } -static void -PreviewDecompress32(uint32_t * compressBuffer, +static void PreviewDecompress32(uint32_t * compressBuffer, uint32_t width, uint32_t height, uint32_t row, uint32_t * output) { @@ -151,7 +158,8 @@ uint16_t * sc2 = malloc((width+2) * sizeof(uint16_t)); uint16_t * sc3 = malloc((width+2) * sizeof(uint16_t)); - if (!sc0 || !sc1 || !sc2 || !sc3) { + if (!sc0 || !sc1 || !sc2 || !sc3) + { return; } @@ -163,11 +171,15 @@ bzero(sc3, (width+2) * sizeof(uint16_t)); uint32_t tmp1, tmp2, out; - for (j = 0; j < (height + 2); j++) { + for (j = 0; j < (height + 2); j++) + { input = compressBuffer; - if (j < height) { + if (j < height) + { input += j; - } else { + } + else + { input += height - 1; } input = (uint32_t *)(input[3] + ((uint8_t *)compressBuffer)); @@ -175,20 +187,26 @@ uint32_t data = 0, repeat = 0, fetch = 0, count = 0; sr0 = sr1 = sr2 = sr3 = 0; - for (i = 0; i < (width + 2); i++) { - if (i < width) { - if (!count) { + for (i = 0; i < (width + 2); i++) + { + if (i < width) + { + if (!count) + { count = *input++; repeat = (count & 0xff000000); count ^= repeat; fetch = true; - } else { + } + else + { fetch = (0 == repeat); } count--; - if (fetch) { + if (fetch) + { data = *input++; // grayscale @@ -226,12 +244,14 @@ sc3[i] = tmp2; out &= 0xff; - if ((i > 1) && (j > 1)) { + if ((i > 1) && (j > 1)) + { output[i-2] = out | (out << 8) | (out << 16); } } - if (j > 1) { + if (j > 1) + { output += row; } } @@ -253,18 +273,21 @@ *dh = (int) src[2]; size = (*dw * *dh * *bitsPerPixel)/ 8; - if (!size) { + if (!size) + { return 0; } ret = malloc (size); - if (!ret) { - return 0; + if (!ret) + { + return 0; } bzero(ret, size); - switch(*bitsPerPixel) { + switch(*bitsPerPixel) + { case 32: PreviewDecompress32((uint32_t *)srcbase, *dw, *dh, *dw, ret); break; Index: branches/ErmaC/Enoch/i386/boot2/gui.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/gui.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/gui.c (revision 2457) @@ -31,6 +31,7 @@ int lasttime = 0; // we need this for animating maybe +// ==================================================================== /* * ATTENTION: the enum and the following array images[] MUST match !!! @@ -43,6 +44,8 @@ iDeviceGeneric_o, iDeviceHFS, iDeviceHFS_o, + iDeviceHFS_yos, + iDeviceHFS_yos_o, iDeviceHFS_mav, iDeviceHFS_mav_o, iDeviceHFS_ML, @@ -58,6 +61,8 @@ iDeviceHFSRAID, iDeviceHFSRAID_o, + iDeviceHFSRAID_yos, + iDeviceHFSRAID_yos_o, iDeviceHFSRAID_mav, iDeviceHFSRAID_mav_o, iDeviceHFSRAID_ML, @@ -126,6 +131,8 @@ iFontSmall, }; +// ==================================================================== + image_t images[] = { {.name = "background", .image = NULL}, {.name = "logo", .image = NULL}, @@ -134,6 +141,8 @@ {.name = "device_generic_o", .image = NULL}, {.name = "device_hfsplus", .image = NULL}, {.name = "device_hfsplus_o", .image = NULL}, + {.name = "device_hfsplus_yos", .image = NULL}, + {.name = "device_hfsplus_yos_o", .image = NULL}, {.name = "device_hfsplus_mav", .image = NULL}, {.name = "device_hfsplus_mav_o", .image = NULL}, {.name = "device_hfsplus_ml", .image = NULL}, @@ -149,6 +158,8 @@ {.name = "device_hfsraid", .image = NULL}, {.name = "device_hfsraid_o", .image = NULL}, + {.name = "device_hfsraid_yos", .image = NULL}, + {.name = "device_hfsraid_yos_o", .image = NULL}, {.name = "device_hfsraid_mav", .image = NULL}, {.name = "device_hfsraid_mav_o", .image = NULL}, {.name = "device_hfsraid_ml", .image = NULL}, @@ -162,8 +173,8 @@ {.name = "device_hfsraid_tiger", .image = NULL}, {.name = "device_hfsraid_tiger_o", .image = NULL}, - {.name = "device_hfsrecovery", .image = NULL}, - {.name = "device_hfsrecovery_o", .image = NULL}, + {.name = "device_hfsplus_recovery", .image = NULL}, + {.name = "device_hfsplus_recovery_o", .image = NULL}, {.name = "device_hfsfusion", .image = NULL}, {.name = "device_hfsfusion_o", .image = NULL}, @@ -217,6 +228,8 @@ {.name = "font_small", .image = NULL}, }; +// ==================================================================== + int imageCnt = 0; extern int gDeviceCount; @@ -364,6 +377,8 @@ return 1; } +// ==================================================================== + static int loadGraphics(void) { LOADPNG(background, IMG_REQUIRED); @@ -373,6 +388,8 @@ LOADPNG(device_generic_o, iDeviceGeneric); LOADPNG(device_hfsplus, iDeviceGeneric); LOADPNG(device_hfsplus_o, iDeviceHFS); + LOADPNG(device_hfsplus_yos, iDeviceHFS); + LOADPNG(device_hfsplus_yos_o, iDeviceHFS_yos); LOADPNG(device_hfsplus_mav, iDeviceHFS); LOADPNG(device_hfsplus_mav_o, iDeviceHFS_mav); LOADPNG(device_hfsplus_ml, iDeviceHFS); @@ -388,6 +405,8 @@ LOADPNG(device_hfsraid, iDeviceHFS); LOADPNG(device_hfsraid_o, iDeviceHFSRAID); + LOADPNG(device_hfsraid_yos, iDeviceHFSRAID); + LOADPNG(device_hfsraid_yos_o, iDeviceHFSRAID_yos); LOADPNG(device_hfsraid_mav, iDeviceHFSRAID); LOADPNG(device_hfsraid_mav_o, iDeviceHFSRAID_mav); LOADPNG(device_hfsraid_ml, iDeviceHFSRAID); @@ -401,8 +420,8 @@ LOADPNG(device_hfsraid_tiger, iDeviceHFSRAID); LOADPNG(device_hfsraid_tiger_o, iDeviceHFSRAID_Tiger); - LOADPNG(device_hfsrecovery, iDeviceHFS); - LOADPNG(device_hfsrecovery_o, iDeviceHFSRECOVERY); + LOADPNG(device_hfsplus_recovery, iDeviceHFS); + LOADPNG(device_hfsplus_recovery_o, iDeviceHFSRECOVERY); LOADPNG(device_hfsfusion, iDeviceHFS); LOADPNG(device_hfsfusion_o, iDeviceHFSFUSION); @@ -461,6 +480,8 @@ return 0; } +// ==================================================================== + static int unloadGraphics(void) { int i; @@ -479,6 +500,8 @@ return 0; } +// ==================================================================== + int freeBackBuffer( window_t *window ) { if (gui.backbuffer && gui.backbuffer->pixels) { @@ -491,6 +514,8 @@ return 1; } +// ==================================================================== + pixmap_t *getCroppedPixmapAtPosition( pixmap_t *from, position_t pos, uint16_t width, uint16_t height ) { pixmap_t *cropped = malloc( sizeof( pixmap_t ) ); @@ -515,6 +540,8 @@ return cropped; } +// ==================================================================== + int createBackBuffer( window_t *window ) { gui.backbuffer = malloc(sizeof(pixmap_t)); @@ -534,6 +561,8 @@ return 0; } +// ==================================================================== + int createWindowBuffer( window_t *window ) { window->pixmap = malloc(sizeof(pixmap_t)); @@ -554,6 +583,8 @@ return 0; } +// ==================================================================== + int freeWindowBuffer( window_t *window ) { if (window->pixmap && window->pixmap->pixels) { @@ -564,6 +595,8 @@ return 1; } +// ==================================================================== + void fillPixmapWithColor(pixmap_t *pm, uint32_t color) { int x,y; @@ -576,6 +609,8 @@ } } +// ==================================================================== + void drawBackground() { // reset text cursor @@ -596,6 +631,8 @@ memcpy( gui.backbuffer->pixels, gui.screen.pixmap->pixels, gui.backbuffer->width * gui.backbuffer->height * 4 ); } +// ==================================================================== + void setupDeviceList(config_file_t *theme) { unsigned int pixel; @@ -668,6 +705,8 @@ } } +// ==================================================================== + void loadThemeValues(config_file_t *theme) { unsigned int screen_width = gui.screen.width; @@ -867,6 +906,8 @@ } } +// ==================================================================== + int initGUI(void) { int val; @@ -948,11 +989,15 @@ return 1; } +// ==================================================================== + bool is_image_loaded(int i) { return (images[i].image != NULL) ? true : false; } +// ==================================================================== + void drawDeviceIcon(BVRef device, pixmap_t *buffer, position_t p, bool isSelected) { int devicetype; @@ -964,33 +1009,52 @@ { case kPartitionTypeHFS: { - // Use HFS or HFSRAID icon depending on bvr flags. Fallbacks are handled by alt_image above. - switch (device->OSVersion[3]) { - case '9': - devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_mav : iDeviceHFS_mav); - //devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSFUSION_mav : iDeviceHFS_mav); - break; - case '8': - devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_ML : iDeviceHFS_ML); - //devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSFUSION_ML : iDeviceHFS_ML); - break; - case '7': - devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_Lion : iDeviceHFS_Lion); - break; - case '6': - devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_SL : iDeviceHFS_SL); - break; - case '5': - devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_Leo : iDeviceHFS_Leo); - break; - case '4': - devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_Tiger : iDeviceHFS_Tiger); - break; - default: - devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID : iDeviceHFS); - break; - } + // ErmaC : TODO test needed for recovery icon + + // Use HFSRECOVERY icon. +// if (device->flags & kBVFlagBooter) +// { +// devicetype = iDeviceHFSRECOVERY; +// } +// else +// { + + // Use HFS or HFSRAID icon depending on bvr flags. Fallbacks are handled by alt_image above. + switch (device->OSVersion[3]) { + case '9': + devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_mav : iDeviceHFS_mav); + break; + case '8': + devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_ML : iDeviceHFS_ML); + break; + case '7': + devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_Lion : iDeviceHFS_Lion); + break; + case '6': + devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_SL : iDeviceHFS_SL); + break; + case '5': + devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_Leo : iDeviceHFS_Leo); + break; + case '4': + devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_Tiger : iDeviceHFS_Tiger); + break; + case '1': + if (device->OSVersion[4] == '0') { // 10.10 + devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_yos : iDeviceHFS_yos); + break; + } + //if (device->OSVersion[4] == '1') { // 10.11 + // devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID_??? : iDeviceHFS_???); + // break; + //} + default: + devicetype = (device->flags & kBVFlagBooter ? iDeviceHFSRAID : iDeviceHFS); + break; + } +// } + break; } @@ -1049,6 +1113,8 @@ } +// ==================================================================== + void drawDeviceList (int start, int end, int selection) { int i; @@ -1153,6 +1219,8 @@ } +// ==================================================================== + void clearGraphicBootPrompt() { // clear text buffer @@ -1170,6 +1238,8 @@ return; } +// ==================================================================== + void updateGraphicBootPrompt() { fillPixmapWithColor( gui.bootprompt.pixmap, gui.bootprompt.bgcolor); @@ -1195,6 +1265,8 @@ return; } +// ==================================================================== + static inline void vramwrite (void *data, int width, int height) { @@ -1229,6 +1301,8 @@ } } +// ==================================================================== + void updateVRAM() { if (gui.redraw) { @@ -1254,12 +1328,16 @@ } } +// ==================================================================== + struct putc_info //Azi: exists on console.c & printf.c { char * str; char * last_str; }; +// ==================================================================== + static int sputc(int c, struct putc_info * pi) //Azi: same as above { @@ -1273,6 +1351,8 @@ return c; } +// ==================================================================== + int gprintf( window_t * window, const char * fmt, ...) { char *formattedtext; @@ -1355,6 +1435,8 @@ return 1; } +// ==================================================================== + int dprintf( window_t * window, const char * fmt, ...) { char *formattedtext; @@ -1438,6 +1520,8 @@ return 1; } +// ==================================================================== + int vprf(const char * fmt, va_list ap) { int i; @@ -1513,6 +1597,8 @@ return 1; } +// ==================================================================== + pixmap_t* charToPixmap(unsigned char ch, font_t *font) { unsigned int cha = (unsigned int)ch - 32; if (cha >= font->count) { @@ -1522,6 +1608,8 @@ return font->chars[cha] ? font->chars[cha] : NULL; } +// ==================================================================== + position_t drawChar(unsigned char ch, font_t *font, pixmap_t *blendInto, position_t p) { pixmap_t* pm = charToPixmap(ch, font); if (pm && ((p.x + pm->width) < blendInto->width)) { @@ -1532,6 +1620,8 @@ } } +// ==================================================================== + void drawStr(char *ch, font_t *font, pixmap_t *blendInto, position_t p) { int i=0; @@ -1555,6 +1645,8 @@ } } +// ==================================================================== + void drawStrCenteredAt(char *text, font_t *font, pixmap_t *blendInto, position_t p) { int i = 0; @@ -1586,6 +1678,8 @@ drawStr(text, font, blendInto, p); } +// ==================================================================== + int destroyFont(font_t *font) { int i; @@ -1601,6 +1695,8 @@ return 0; } +// ==================================================================== + int initFont(font_t *font, image_t *data) { unsigned int x = 0, y = 0, x2 = 0, x3 = 0; @@ -1657,6 +1753,8 @@ return 0; } +// ==================================================================== + void colorFont(font_t *font, uint32_t color) { if( !color ) { @@ -1683,6 +1781,8 @@ } } +// ==================================================================== + void makeRoundedCorners(pixmap_t *p) { int x,y; @@ -1727,6 +1827,8 @@ } } +// ==================================================================== + void showInfoBox(char *title, char *text_orig) { char* text; @@ -1857,6 +1959,8 @@ free(text); } +// ==================================================================== + void animateProgressBar() { int y; @@ -1877,6 +1981,8 @@ } } +// ==================================================================== + void drawProgressBar(pixmap_t *blendInto, uint16_t width, position_t p, uint8_t progress) { if(progress>100) { @@ -1937,6 +2043,8 @@ free(progressbar.pixels); } +// ==================================================================== + void drawInfoMenuItems() { int i,n; @@ -1979,6 +2087,8 @@ gui.redraw = true; } +// ==================================================================== + int drawInfoMenu() { drawInfoMenuItems(); @@ -1990,6 +2100,8 @@ return 1; } +// ==================================================================== + int updateInfoMenu(int key) { switch (key) @@ -2047,6 +2159,8 @@ return DO_NOT_BOOT; } +// ==================================================================== + uint16_t bootImageWidth = 0; uint16_t bootImageHeight = 0; uint8_t *bootImageData = NULL; @@ -2149,5 +2263,6 @@ } free(appleBootPict); } - } + } } +// ==================================================================== Index: branches/ErmaC/Enoch/i386/boot2/modules_support.s =================================================================== --- branches/ErmaC/Enoch/i386/boot2/modules_support.s (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/modules_support.s (revision 2457) @@ -3,8 +3,8 @@ LABEL(dyld_stub_binder) jmp _dyld_stub_binder - + LABEL(dyld_void_start) ret -#endif \ No newline at end of file +#endif Index: branches/ErmaC/Enoch/i386/boot2/appleClut8.h =================================================================== --- branches/ErmaC/Enoch/i386/boot2/appleClut8.h (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/appleClut8.h (revision 2457) @@ -2,7 +2,7 @@ * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ - * + * * Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights * Reserved. This file contains Original Code and/or Modifications of * Original Code as defined in and that are subject to the Apple Public @@ -10,7 +10,7 @@ * except in compliance with the License. Please obtain a copy of the * License at http://www.apple.com/publicsource and read it before using * this file. - * + * * The Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, @@ -18,7 +18,7 @@ * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. - * + * * @APPLE_LICENSE_HEADER_END@ */ @@ -31,62 +31,77 @@ 0xbc,0xbc,0xbc, 0xff,0xff,0x00, 0xba,0xba,0xba, 0xb9,0xb9,0xb9, 0xb8,0xb8,0xb8, 0xb7,0xb7,0xb7, 0xb6,0xb6,0xb6, 0xb5,0xb5,0xb5, 0xb4,0xb4,0xb4, 0xb3,0xb3,0xb3, 0xb2,0xb2,0xb2, 0x00,0x00,0x00, + 0xb1,0xb1,0xb1, 0xb0,0xb0,0xb0, 0xaf,0xaf,0xaf, 0xae,0xae,0xae, 0xad,0xad,0xad, 0xac,0xac,0xac, 0xab,0xab,0xab, 0xaa,0xaa,0xaa, 0xff,0x00,0xff, 0xa9,0xa9,0xa9, 0xa8,0xa8,0xa8, 0xa7,0xa7,0xa7, 0xa6,0xa6,0xa6, 0xa5,0xa5,0xa5, 0xa4,0xa4,0xa4, 0xa3,0xa3,0xa3, + 0xa2,0xa2,0xa2, 0xa1,0xa1,0xa1, 0xa0,0xa0,0xa0, 0xff,0x00,0x00, 0x9f,0x9f,0x9f, 0x9e,0x9e,0x9e, 0x9d,0x9d,0x9d, 0x9c,0x9c,0x9c, 0x9b,0x9b,0x9b, 0x9a,0x9a,0x9a, 0xcc,0xcc,0xff, 0xcc,0xcc,0xcc, 0x99,0x99,0x99, 0x98,0x98,0x98, 0x97,0x97,0x97, 0x96,0x96,0x96, + 0x95,0x95,0x95, 0x94,0x94,0x94, 0x93,0x93,0x93, 0x92,0x92,0x92, 0x91,0x91,0x91, 0x90,0x90,0x90, 0x8f,0x8f,0x8f, 0x8e,0x8e,0x8e, 0x8d,0x8d,0x8d, 0x8c,0x8c,0x8c, 0x8b,0x8b,0x8b, 0x8a,0x8a,0x8a, - 0x89,0x89,0x89, 0x87,0x87,0x87, 0x86,0x86,0x86, 0x85,0x85,0x85, + 0x89,0x89,0x89, 0x88,0x88,0x88, 0x86,0x86,0x86, 0x85,0x85,0x85, + 0x84,0x84,0x84, 0x83,0x83,0x83, 0x82,0x82,0x82, 0x81,0x81,0x81, 0x80,0x80,0x80, 0x7f,0x7f,0x7f, 0x7e,0x7e,0x7e, 0x7d,0x7d,0x7d, 0x7c,0x7c,0x7c, 0x7b,0x7b,0x7b, 0x7a,0x7a,0x7a, 0x79,0x79,0x79, 0x78,0x78,0x78, 0x76,0x76,0x76, 0x75,0x75,0x75, 0x74,0x74,0x74, + 0x73,0x73,0x73, 0x72,0x72,0x72, 0x71,0x71,0x71, 0x70,0x70,0x70, 0x6f,0x6f,0x6f, 0x6e,0x6e,0x6e, 0x6d,0x6d,0x6d, 0x6c,0x6c,0x6c, 0x6b,0x6b,0x6b, 0x6a,0x6a,0x6a, 0x69,0x69,0x69, 0x68,0x68,0x68, 0x67,0x67,0x67, 0x66,0x66,0x66, 0x64,0x64,0x64, 0x63,0x63,0x63, + 0x62,0x62,0x62, 0x61,0x61,0x61, 0x60,0x60,0x60, 0x5f,0x5f,0x5f, 0x5e,0x5e,0x5e, 0x5d,0x5d,0x5d, 0x5c,0x5c,0x5c, 0x5b,0x5b,0x5b, 0x5a,0x5a,0x5a, 0x59,0x59,0x59, 0x58,0x58,0x58, 0x57,0x57,0x57, 0x56,0x56,0x56, 0x54,0x54,0x54, 0x53,0x53,0x53, 0x52,0x52,0x52, + 0x51,0x51,0x51, 0x50,0x50,0x50, 0x4f,0x4f,0x4f, 0x4e,0x4e,0x4e, 0x4d,0x4d,0x4d, 0x4c,0x4c,0x4c, 0x4b,0x4b,0x4b, 0x4a,0x4a,0x4a, 0x49,0x49,0x49, 0x48,0x48,0x48, 0x47,0x47,0x47, 0x46,0x46,0x46, 0x45,0x45,0x45, 0x43,0x43,0x43, 0x42,0x42,0x42, 0x41,0x41,0x41, + 0x40,0x40,0x40, 0x3f,0x3f,0x3f, 0x3e,0x3e,0x3e, 0x3d,0x3d,0x3d, 0x3c,0x3c,0x3c, 0x3b,0x3b,0x3b, 0x3a,0x3a,0x3a, 0x39,0x39,0x39, 0x38,0x38,0x38, 0x37,0x37,0x37, 0x36,0x36,0x36, 0x35,0x35,0x35, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x00,0xff,0xff, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x00,0xff,0x00, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x00,0x00,0xff, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, - 0xdd,0x00,0x00, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0xd0,0x00,0x00, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x00,0xbb,0x00, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, + 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0x65,0x65,0x65, 0xbb,0xbb,0xbb, 0x65,0x65,0x65, 0x88,0x88,0x88, 0x77,0x77,0x77, 0x55,0x55,0x55, Index: branches/ErmaC/Enoch/i386/boot2/gui.h =================================================================== --- branches/ErmaC/Enoch/i386/boot2/gui.h (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/gui.h (revision 2457) @@ -33,11 +33,15 @@ #define MENU_SHOW_VIDEO_INFO 5 #define MENU_SHOW_HELP 6 +// ==================================================================== + enum { HorizontalLayout = 0, VerticalLayout = 1, }; +// ==================================================================== + /* * Menu item structure. */ @@ -49,6 +53,8 @@ bool expandable; } menuitem_t; +// ==================================================================== + /* * Image structure. */ @@ -57,6 +63,8 @@ char name[32]; } image_t; +// ==================================================================== + /* * Font structure. */ @@ -67,6 +75,8 @@ uint16_t count; // Number of chars in font } font_t; +// ==================================================================== + /* * Window structure. */ @@ -86,7 +96,9 @@ uint32_t font_console_color; // Color for consle font AARRGGBB bool draw; // Draw flag } window_t; - + +// ==================================================================== + /* * gui structure */ Index: branches/ErmaC/Enoch/i386/boot2/lzss.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/lzss.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/lzss.c (revision 2457) @@ -42,12 +42,11 @@ #include -#define N 4096 /* Size of ring buffer - must be power of 2. */ -#define N_MIN_1 4095 -#define F 18 /* Upper limit for match_length. */ -#define R N - F -#define THRESHOLD 2 /* Encode string into position and length if match_length is greater than this. */ -#define NIL N /* Index for root of binary search trees. */ +#define N 4096 /* size of ring buffer - must be power of 2 */ +#define F 18 /* upper limit for match_length */ +#define THRESHOLD 2 /* encode string into position and length + if match_length is greater than this */ +#define NIL N /* index for root of binary search trees */ struct encode_state { /* @@ -65,51 +64,53 @@ int match_position, match_length; }; -//============================================================================== -// Refactoring and bug fix Copyright (c) 2010 by DHP. - -int decompress_lzss(u_int8_t * dst, u_int8_t * src, u_int32_t srclen) +int +decompress_lzss( u_int8_t *dst, u_int32_t dstlen, u_int8_t *src, u_int32_t srclen ) { - /* Four KB ring buffer with 17 extra bytes added to aid string comparisons. */ - u_int8_t text_buf[N_MIN_1 + F]; - u_int8_t * dststart = dst; - const u_int8_t * srcend = (src + srclen); + /* ring buffer of size N, with extra F-1 bytes to aid string comparison */ + u_int8_t text_buf[N + F - 1]; + u_int8_t *dststart = dst; + u_int8_t *dstend = dst + dstlen; + u_int8_t *srcend = src + srclen; + int i, j, k, r, c; + unsigned int flags; - int r = R; - int i, j, k, c; - unsigned int flags = 0; - - for (i = 0; i < R; i++) { + dst = dststart; + srcend = src + srclen; + for (i = 0; i < N - F; i++) text_buf[i] = ' '; - } - - while (src < srcend) { + r = N - F; + flags = 0; + for ( ; ; ) { if (((flags >>= 1) & 0x100) == 0) { - c = *src++; - flags = c | 0xFF00; // Clever use of the high byte. - } - - if ((src < srcend) && (flags & 1)) { - c = *src++; + if (src < srcend) c = *src++; else break; + flags = c | 0xFF00; /* uses higher byte cleverly */ + } /* to count eight */ + if (flags & 1) { + if (src < srcend) c = *src++; else break; *dst++ = c; + if (dst >= dstend) { + goto finish; + } text_buf[r++] = c; - r &= N_MIN_1; - } else if ((src + 2) <= srcend) { - i = *src++; - j = *src++; - + r &= (N - 1); + } else { + if (src < srcend) i = *src++; else break; + if (src < srcend) j = *src++; else break; i |= ((j & 0xF0) << 4); - j = (j & 0x0F) + THRESHOLD; - + j = (j & 0x0F) + THRESHOLD; for (k = 0; k <= j; k++) { - c = text_buf[(i + k) & N_MIN_1]; + c = text_buf[(i + k) & (N - 1)]; *dst++ = c; + if (dst >= dstend) { + goto finish; + } text_buf[r++] = c; - r &= N_MIN_1; + r &= (N - 1); } } } - +finish: return dst - dststart; } @@ -227,23 +228,20 @@ sp->parent[p] = NIL; } -u_int8_t *compress_lzss( - u_int8_t * dst, - u_int32_t dstlen, - u_int8_t * src, - u_int32_t srclen) +u_int8_t *compress_lzss( u_int8_t *dst, u_int32_t dstlen, u_int8_t *src, u_int32_t srcLen ) { - u_int8_t * result = NULL; /* Encoding state, mostly tree but some current match stuff */ struct encode_state *sp; + int i, c, len, r, s, last_match_length, code_buf_ptr; u_int8_t code_buf[17], mask; - u_int8_t * srcend = src + srclen; + u_int8_t *srcend = src + srcLen; u_int8_t *dstend = dst + dstlen; + /* initialize trees */ sp = (struct encode_state *) malloc(sizeof(*sp)); - if (!sp) goto finish; init_state(sp); + /* * code_buf[1..16] saves eight units of code, and code_buf[0] works * as eight flags, "1" representing that the unit is an unencoded @@ -252,13 +250,16 @@ */ code_buf[0] = 0; code_buf_ptr = mask = 1; + /* Clear the buffer with any character that will appear often. */ s = 0; r = N - F; + /* Read F bytes into the last F bytes of the buffer */ for (len = 0; len < F && src < srcend; len++) sp->text_buf[r + len] = *src++; if (!len) - goto finish; + return (void *) 0; /* text of size zero */ + /* * Insert the F strings, each of which begins with one or more * 'space' characters. Note the order in which these strings are @@ -266,6 +267,7 @@ */ for (i = 1; i <= F; i++) insert_node(sp, r - i); + /* * Finally, insert the whole string just read. * The global variables match_length and match_position are set. @@ -292,7 +294,7 @@ if (dst < dstend) *dst++ = code_buf[i]; else - goto finish; + return (void *) 0; code_buf[0] = 0; code_buf_ptr = mask = 1; } @@ -301,20 +303,24 @@ delete_node(sp, s); /* Delete old strings and */ c = *src++; sp->text_buf[s] = c; /* read new bytes */ + /* * If the position is near the end of buffer, extend the buffer * to make string comparison easier. */ if (s < F - 1) sp->text_buf[s + N] = c; + /* Since this is a ring buffer, increment the position modulo N. */ s = (s + 1) & (N - 1); r = (r + 1) & (N - 1); + /* Register the string in text_buf[r..r+F-1] */ insert_node(sp, r); } while (i++ < last_match_length) { delete_node(sp, s); + /* After the end of text, no need to read, */ s = (s + 1) & (N - 1); r = (r + 1) & (N - 1); @@ -323,15 +329,14 @@ insert_node(sp, r); } } while (len > 0); /* until length of string to be processed is zero */ + if (code_buf_ptr > 1) { /* Send remaining code. */ for (i = 0; i < code_buf_ptr; i++) if (dst < dstend) *dst++ = code_buf[i]; else - goto finish; + return (void *) 0; } - result = dst; -finish: - if (sp) free(sp); - return result; + + return dst; } Index: branches/ErmaC/Enoch/i386/boot2/options.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/options.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/options.c (revision 2457) @@ -1094,8 +1094,8 @@ bool copyArgument(const char *argName, const char *val, int cnt, char **argP, int *cntRemainingP) { - int argLen = argName ? strlen(argName) : 0; - int len = argLen + cnt + 1; // +1 to account for space + int argLen = argName ? strlen(argName) : 0; + int len = argLen + cnt + 1; // + 1 to account for space. if (argName) { @@ -1107,8 +1107,9 @@ return false; } - if (argName) { - strncpy( *argP, argName, argLen ); + if (argName) + { + strncpy(*argP, argName, argLen); *argP += argLen; *argP[0] = '='; (*argP)++; @@ -1118,8 +1119,8 @@ *argP += cnt; *argP[0] = ' '; (*argP)++; + *cntRemainingP -= len; - *cntRemainingP -= len; return true; } @@ -1201,6 +1202,9 @@ return -1; } + // Find out which version mac os we're booting. + strncpy(gMacOSVersion, gBootVolume->OSVersion, sizeof(gMacOSVersion)); + // Load config table specified by the user, or use the default. if (!getValueForBootKey(cp, "config", &val, &cnt)) { @@ -1222,25 +1226,57 @@ // to be used. gOverrideKernel = false; - if (( kernel = extractKernelName((char **)&cp) )) { + if (( kernel = extractKernelName((char **)&cp) )) + { strlcpy( bootInfo->bootFile, kernel, sizeof(bootInfo->bootFile) ); - } else { - if ( getValueForKey( kKernelNameKey, &val, &cnt, &bootInfo->bootConfig ) ) { + } + else + { + if ( getValueForKey( kKernelNameKey, &val, &cnt, &bootInfo->bootConfig ) ) + { strlcpy( bootInfo->bootFile, val, cnt+1 ); - } else { - strlcpy( bootInfo->bootFile, kDefaultKernel, sizeof(bootInfo->bootFile) ); } + else + { + if( YOSEMITE ) // is 10.10 + { + + strlcpy( bootInfo->bootFile, kOSXKernel, sizeof(bootInfo->bootFile) ); + //printf(HEADER "/System/Library/Kernels/%s\n", bootInfo->bootFile); + } + else + { // OSX is not 10.10 + + strlcpy( bootInfo->bootFile, kDefaultKernel, sizeof(bootInfo->bootFile) ); + //printf(HEADER "/%s\n", bootInfo->bootFile); + } + } } - if (strcmp( bootInfo->bootFile, kDefaultKernel ) != 0) { - gOverrideKernel = true; + + if (!YOSEMITE) // not 10.10 so 10.9 and previus + { + if (strcmp( bootInfo->bootFile, kDefaultKernel ) != 0) + { + //printf(HEADER "org.chameleon.Boot.plist found path for custom '%s' found!\n", bootInfo->bootFile); + gOverrideKernel = true; + } } + else + { // OSX is 10.10 + if (strcmp( bootInfo->bootFile, kOSXKernel ) != 0) + { + //printf(HEADER "org.chameleon.Boot.plist found path for custom '%s' found!\n", bootInfo->bootFile); + gOverrideKernel = true; + } + } cntRemaining = BOOT_STRING_LEN - 2; // save 1 for NULL, 1 for space argP = bootArgs->CommandLine; // Get config kernel flags, if not ignored. if (getValueForBootKey(cp, kIgnoreBootFileFlag, &val, &cnt) || - !getValueForKey( kKernelFlagsKey, &val, &cnt, &bootInfo->bootConfig )) { + !getValueForKey( kKernelFlagsKey, &val, &cnt, &bootInfo->bootConfig )) + { val = ""; cnt = 0; } @@ -1249,49 +1285,63 @@ // boot-uuid can be set either on the command-line or in the config file if (!processBootArgument(kBootUUIDKey, cp, configKernelFlags, bootInfo->config, - &argP, &cntRemaining, gBootUUIDString, sizeof(gBootUUIDString))) { + &argP, &cntRemaining, gBootUUIDString, sizeof(gBootUUIDString))) + { // // Try an alternate method for getting the root UUID on boot helper partitions. // - if (gBootVolume->flags & kBVFlagBooter) { + if (gBootVolume->flags & kBVFlagBooter) + { // Load the configuration store in the boot helper partition - if (loadHelperConfig(&bootInfo->helperConfig) == 0) { + if (loadHelperConfig(&bootInfo->helperConfig) == 0) + { val = getStringForKey(kHelperRootUUIDKey, &bootInfo->helperConfig); - if (val != NULL) { + if (val != NULL) + { strlcpy(gBootUUIDString, val, sizeof(gBootUUIDString)); } } } /* // Try to get the volume uuid string - if (!strlen(gBootUUIDString) && gBootVolume->fs_getuuid) { + if (!strlen(gBootUUIDString) && gBootVolume->fs_getuuid) + { gBootVolume->fs_getuuid(gBootVolume, gBootUUIDString); } */ // If we have the volume uuid add it to the commandline arguments - if (strlen(gBootUUIDString)) { + if (strlen(gBootUUIDString)) + { copyArgument(kBootUUIDKey, gBootUUIDString, strlen(gBootUUIDString), &argP, &cntRemaining); } // Try to get the volume uuid string - if (!strlen(gBootUUIDString) && gBootVolume->fs_getuuid) { + if (!strlen(gBootUUIDString) && gBootVolume->fs_getuuid) + { gBootVolume->fs_getuuid(gBootVolume, gBootUUIDString); DBG("boot-uuid: %s\n", gBootUUIDString); } } if (!processBootArgument(kRootDeviceKey, cp, configKernelFlags, bootInfo->config, - &argP, &cntRemaining, gRootDevice, ROOT_DEVICE_SIZE)) { + &argP, &cntRemaining, gRootDevice, ROOT_DEVICE_SIZE)) + { cnt = 0; - if ( getValueForKey( kBootDeviceKey, &val, &cnt, &bootInfo->chameleonConfig)) { + if ( getValueForKey( kBootDeviceKey, &val, &cnt, &bootInfo->chameleonConfig)) + { valueBuffer[0] = '*'; cnt++; strlcpy(valueBuffer + 1, val, cnt); val = valueBuffer; - } else { /* - if (strlen(gBootUUIDString)) { + } + else + { /* + if (strlen(gBootUUIDString)) + { val = "*uuid"; cnt = 5; - } else { */ + } + else + { */ // Don't set "rd=.." if there is no boot device key // and no UUID. val = ""; @@ -1299,7 +1349,8 @@ /* } */ } - if (cnt > 0) { + if (cnt > 0) + { copyArgument( kRootDeviceKey, val, cnt, &argP, &cntRemaining); } strlcpy( gRootDevice, val, (cnt + 1)); @@ -1309,15 +1360,18 @@ * Removed. We don't need this anymore. * if (!processBootArgument(kPlatformKey, cp, configKernelFlags, bootInfo->config, - &argP, &cntRemaining, gPlatformName, sizeof(gCacheNameAdler))) { + &argP, &cntRemaining, gPlatformName, sizeof(gCacheNameAdler))) + { getPlatformName(gPlatformName); copyArgument(kPlatformKey, gPlatformName, strlen(gPlatformName), &argP, &cntRemaining); } */ if (!getValueForBootKey(cp, kSafeModeFlag, &val, &cnt) && - !getValueForBootKey(configKernelFlags, kSafeModeFlag, &val, &cnt)) { - if (gBootMode & kBootModeSafe) { + !getValueForBootKey(configKernelFlags, kSafeModeFlag, &val, &cnt)) + { + if (gBootMode & kBootModeSafe) + { copyArgument(0, kSafeModeFlag, strlen(kSafeModeFlag), &argP, &cntRemaining); } } @@ -1325,8 +1379,10 @@ // Store the merged kernel flags and boot args. cnt = strlen(configKernelFlags); - if (cnt) { - if (cnt > cntRemaining) { + if (cnt) + { + if (cnt > cntRemaining) + { error("Warning: boot arguments too long, truncating\n"); cnt = cntRemaining; } @@ -1335,28 +1391,34 @@ cntRemaining -= cnt; } userCnt = strlen(cp); - if (userCnt > cntRemaining) { + if (userCnt > cntRemaining) + { error("Warning: boot arguments too long, truncating\n"); userCnt = cntRemaining; } strncpy(&argP[cnt], cp, userCnt); argP[cnt+userCnt] = '\0'; - if(!shouldboot) { + if(!shouldboot) + { gVerboseMode = getValueForKey( kVerboseModeFlag, &val, &cnt, &bootInfo->chameleonConfig ) || getValueForKey( kSingleUserModeFlag, &val, &cnt, &bootInfo->chameleonConfig ); gBootMode = ( getValueForKey( kSafeModeFlag, &val, &cnt, &bootInfo->chameleonConfig ) ) ? kBootModeSafe : kBootModeNormal; - if ( getValueForKey( kIgnoreCachesFlag, &val, &cnt, &bootInfo->chameleonConfig ) ) { + if ( getValueForKey( kIgnoreCachesFlag, &val, &cnt, &bootInfo->chameleonConfig ) ) + { gBootMode = kBootModeSafe; } } - if ( getValueForKey( kMKextCacheKey, &val, &cnt, &bootInfo->bootConfig ) ) { + if ( getValueForKey( kMKextCacheKey, &val, &cnt, &bootInfo->bootConfig ) ) + { strlcpy(gMKextName, val, cnt + 1); - } else { + } + else + { gMKextName[0]=0; } @@ -1446,9 +1508,12 @@ void showHelp(void) { - if (bootArgs->Video.v_display != VGA_TEXT_MODE) { + if (bootArgs->Video.v_display != VGA_TEXT_MODE) + { showInfoBox("Help. Press q to quit.\n", (char *)BootHelp_txt); - } else { + } + else + { showTextBuffer((char *)BootHelp_txt, BootHelp_txt_len); } } @@ -1460,14 +1525,16 @@ int fd; int size; - if ((fd = open_bvdev("bt(0,0)", filename, 0)) < 0) { + if ((fd = open_bvdev("bt(0,0)", filename, 0)) < 0) + { printf("\nFile not found: %s\n", filename); sleep(2); return; } size = file_size(fd); - if (size > MAX_TEXT_FILE_SIZE) { + if (size > MAX_TEXT_FILE_SIZE) + { size = MAX_TEXT_FILE_SIZE; } buf = malloc(size); @@ -1494,9 +1561,11 @@ printf("Enter two-digit hexadecimal boot device [%02x]: ", bootdevice); do { key = getchar(); - switch (ASCII_KEY(key)) { + switch (ASCII_KEY(key)) + { case KEY_BKSP: - if (digitsI > 0) { + if (digitsI > 0) + { int x, y, t; getCursorPositionAndType(&x, &y, &t); // Assume x is not 0; @@ -1505,7 +1574,9 @@ // Overwrite with space without moving cursor position putca(' ', 0x07, 1); digitsI--; - } else { + } + else + { // TODO: Beep or something } break; @@ -1513,7 +1584,8 @@ case KEY_ENTER: digits[digitsI] = '\0'; newbootdevice = strtol(digits, &end, 16); - if (end == digits && *end == '\0') { + if (end == digits && *end == '\0') + { // User entered empty string printf("\nUsing default boot device %x\n", bootdevice); key = 0; @@ -1528,10 +1600,13 @@ break; default: - if (isxdigit(ASCII_KEY(key)) && digitsI < 2) { + if (isxdigit(ASCII_KEY(key)) && digitsI < 2) + { putchar(ASCII_KEY(key)); digits[digitsI++] = ASCII_KEY(key); - } else { + } + else + { // TODO: Beep or something } break; @@ -1544,9 +1619,12 @@ bool promptForRescanOption(void) { printf("\nWould you like to enable media rescan option?\nPress ENTER to enable or any key to skip.\n"); - if (getchar() == KEY_ENTER) { + if (getchar() == KEY_ENTER) + { return true; - } else { + } + else + { return false; } } Index: branches/ErmaC/Enoch/i386/boot2/graphic_utils.c =================================================================== --- branches/ErmaC/Enoch/i386/boot2/graphic_utils.c (revision 2456) +++ branches/ErmaC/Enoch/i386/boot2/graphic_utils.c (revision 2457) @@ -17,17 +17,21 @@ uint16_t width = (blendThis->width + position.x < blendInto->width) ? blendThis->width: blendInto->width-position.x; uint16_t height = (blendThis->height + position.y < blendInto->height) ? blendThis->height: blendInto->height-position.y; - for (dy = position.y, sy = 0; sy < height; dy++, sy++) { - for (dx = position.x, sx = 0; sx < width; dx++, sx++) { + for (dy = position.y, sy = 0; sy < height; dy++, sy++) + { + for (dx = position.x, sx = 0; sx < width; dx++, sx++) + { alpha = (pixel(blendThis, sx, sy).ch.a); /* Skip blending for fully transparent pixel */ - if (alpha == 0) { + if (alpha == 0) + { continue; } /* For fully opaque pixel, there is no need to interpolate */ - if (alpha == 255) { + if (alpha == 255) + { pixel(blendInto, dx, dy).value = pixel(blendThis, sx, sy).value; continue; } @@ -51,7 +55,8 @@ } } -position_t centeredIn( const pixmap_t *background, const pixmap_t *toCenter ) { +position_t centeredIn( const pixmap_t *background, const pixmap_t *toCenter ) +{ position_t centered; centered.x = ( background->width - toCenter->width ) / 2; centered.y = ( background->height - toCenter->height ) / 2; Index: branches/ErmaC/Enoch/i386/config/confdata.c =================================================================== --- branches/ErmaC/Enoch/i386/config/confdata.c (revision 2456) +++ branches/ErmaC/Enoch/i386/config/confdata.c (revision 2457) @@ -13,6 +13,18 @@ #include #include +char * +int_stpncpy (dst, src, len) + char *dst; + const char *src; + size_t len; +{ + size_t n = strlen (src); + if (n > len) + n = len; + return strncpy (dst, src, len) + n; +} + #define LKC_DIRECT_LINK #include "lkc.h" @@ -95,14 +107,16 @@ const char *src; *res_ptr = 0; res_ptr[SYMBOL_MAXLENGTH] = 0; - while ((src = strchr(in, '$'))) { + while ((src = strchr(in, '$'))) + { struct symbol *sym; const char *symval; char *name_ptr = name; size_t n = min(res_rem, src - in); - res_ptr = stpncpy(res_ptr, in, n); - if (!(res_rem -= n)) { + res_ptr = int_stpncpy(res_ptr, in, n); + if (!(res_rem -= n)) + { return res_value; /* buffer full, quit now */ } src++; @@ -118,8 +132,9 @@ symval = sym_get_string_value(sym); n = min(res_rem, strlen(symval)); - res_ptr = stpncpy(res_ptr, symval, n); - if (!(res_rem -= n)) { + res_ptr = int_stpncpy(res_ptr, symval, n); + if (!(res_rem -= n)) + { return res_value; /* buffer full, quit now */ } in = src; Index: branches/ErmaC/Enoch/i386/config/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/config/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/config/Makefile (revision 2457) @@ -33,11 +33,11 @@ all: $(DIRS_NEEDED) $(SYMPROG) $(SYMPROG): $(OBJS) - @echo "\t[LD32] $(@F)_32" + @echo " [LD32] $(@F)_32" @$(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -arch i386 -o $(SYMROOT)/$(@F)_32 $(OBJROOT)/*.o32 - @echo "\t[LD64] $(@F)_64" + @echo " [LD64] $(@F)_64" @$(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -arch x86_64 -o $(SYMROOT)/$(@F)_64 $(OBJROOT)/*.o64 - @echo "\t[LIPO] $(@F)" + @echo " [LIPO] $(@F)" @lipo -create -arch i386 $(SYMROOT)/$(@F)_32 -arch x86_64 $(SYMROOT)/$(@F)_64 -output $(SYMROOT)/$(@F) @$(RM) $(SYMROOT)/$(@F)_32 $(SYMROOT)/$(@F)_64 Index: branches/ErmaC/Enoch/i386/config/textbox.c =================================================================== --- branches/ErmaC/Enoch/i386/config/textbox.c (revision 2456) +++ branches/ErmaC/Enoch/i386/config/textbox.c (revision 2457) @@ -320,7 +320,6 @@ */ static void print_line(WINDOW * win, int row, int width) { - int y, x; char *line; line = get_line(); @@ -329,9 +328,9 @@ waddch(win, ' '); waddnstr(win, line, MIN(strlen(line), width - 2)); - getyx(win, y, x); /* Clear 'residue' of previous line */ #if OLD_NCURSES + getyx(win, y, x); { int i; for (i = 0; i < width - x; i++) Index: branches/ErmaC/Enoch/i386/modules/FileNVRAM/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/modules/FileNVRAM/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/modules/FileNVRAM/Makefile (revision 2457) @@ -13,7 +13,7 @@ include ../MakeInc.dir $(SYMROOT)/modules/$(MODULE_NAME).dylib: - @echo "\t[CP] $(MODULE_NAME).dylib" + @echo " [CP] $(MODULE_NAME).dylib" @cp $(MODULE_NAME).dylib $(SRCROOT)/sym/i386/modules/$(MODULE_NAME).dylib $(SRCROOT)/sym/i386/boot_modules.c: Index: branches/ErmaC/Enoch/i386/modules/MakeInc.dir =================================================================== --- branches/ErmaC/Enoch/i386/modules/MakeInc.dir (revision 2456) +++ branches/ErmaC/Enoch/i386/modules/MakeInc.dir (revision 2457) @@ -105,10 +105,10 @@ ifeq ($(BUILT_IN),yes) $(SYMROOT)/modules/$(MODULE_NAME).dylib: $(MODULE_OBJS) $(MODULE_DEPENDENCIES) $(OBJROOT)/$(MODULE_NAME).desc $(OBJROOT)/$(MODULE_NAME).author Makefile - @echo "\t[LD] $(MODULE_NAME).dylib" + @echo " [LD] $(MODULE_NAME).dylib" @ld -arch i386 -undefined dynamic_lookup \ -dylib -read_only_relocs suppress \ - -S -x -Z -dead_strip_dylibs \ + -S -Z -dead_strip_dylibs \ -no_uuid \ -current_version $(MODULE_VERSION) -compatibility_version $(MODULE_COMPAT_VERSION) \ -final_output $(MODULE_NAME) \ @@ -121,12 +121,12 @@ else $(SYMROOT)/modules/$(MODULE_NAME).dylib: $(MODULE_OBJS) $(MODULE_DEPENDENCIES) $(OBJROOT)/$(MODULE_NAME).desc $(OBJROOT)/$(MODULE_NAME).author $(SRCROOT)/obj/i386/boot2/Symbols_LINKER_ONLY.dylib Makefile - @echo "\t[LD] $(MODULE_NAME).dylib" + @echo " [LD] $(MODULE_NAME).dylib" @ld -arch i386 \ -alias _$(MODULE_START) start \ -dylib -read_only_relocs suppress \ - -S -x -Z -dead_strip_dylibs \ + -S -Z -dead_strip_dylibs \ -no_uuid \ -current_version $(MODULE_VERSION) -compatibility_version $(MODULE_COMPAT_VERSION) \ -final_output $(MODULE_NAME) \ @@ -143,22 +143,22 @@ clean-local: @if [ -f "$(SYMROOT)/modules/$(MODULE_NAME).dylib" ];then \ - echo "\t[RM] $(SYMROOT)/modules/$(MODULE_NAME).dylib";\ + echo " [RM] $(SYMROOT)/modules/$(MODULE_NAME).dylib";\ fi - @for o in $(MODULE_OBJS); do if [ -f "$${o}" ];then echo "\t[RM] $${o}"; fi; done + @for o in $(MODULE_OBJS); do if [ -f "$${o}" ];then echo " [RM] $${o}"; fi; done @rm -f $(SYMROOT)/modules/$(MODULE_NAME).dylib @rm -rf $(OBJROOT) ${SYMROOT}/modules/: - @echo "\t[MKDIR] $@" + @echo " [MKDIR] $@" @$(MKDIRS) $@ .PHONY: $(SRCROOT)/sym/i386/boot_modules.h .PHONY: $(SRCROOT)/sym/i386/boot_modules.c $(SRCROOT)/sym/i386/boot_modules.c: - @echo "\tstart_built_in_module(\"$(MODULE_NAME)\", \"$(MODULE_AUTHOR)\", \"$(MODULE_DESCRIPTION)\", 0, 0, &$(MODULE_START));" >> $@ + @echo " start_built_in_module(\"$(MODULE_NAME)\", \"$(MODULE_AUTHOR)\", \"$(MODULE_DESCRIPTION)\", 0, 0, &$(MODULE_START));" >> $@ $(SRCROOT)/sym/i386/boot_modules.h: @echo "void $(MODULE_START)(); // $(MODULE_NAME)" >> $@ Index: branches/ErmaC/Enoch/i386/modules/klibc/strndup.c =================================================================== --- branches/ErmaC/Enoch/i386/modules/klibc/strndup.c (revision 2456) +++ branches/ErmaC/Enoch/i386/modules/klibc/strndup.c (revision 2457) @@ -10,7 +10,9 @@ char *d = malloc(l); if (d) + { memcpy(d, s, l); - d[n] = '\0'; + d[n] = '\0'; + } return d; } Index: branches/ErmaC/Enoch/i386/modules/HDAEnabler/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/modules/HDAEnabler/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/modules/HDAEnabler/Makefile (revision 2457) @@ -13,7 +13,7 @@ include ../MakeInc.dir $(SYMROOT)/modules/$(MODULE_NAME).dylib: - @echo "\t[CP] $(MODULE_NAME).dylib" + @echo " [CP] $(MODULE_NAME).dylib" @cp $(MODULE_NAME).dylib $(SRCROOT)/sym/i386/modules/$(MODULE_NAME).dylib $(SRCROOT)/sym/i386/boot_modules.c: Index: branches/ErmaC/Enoch/i386/modules/Keylayout/layouts/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/modules/Keylayout/layouts/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/modules/Keylayout/layouts/Makefile (revision 2457) @@ -28,13 +28,13 @@ all: $(DIRS_NEEDED) $(OBJROOT) $(SYMROOT) keymaps $(PROGRAMS): $(OBJS) - @echo "\t[LD32] $(@F)_32" + @echo " [LD32] $(@F)_32" @$(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) $(INCLUDES) -arch i386 \ -o $(SYMROOT)/$(@F)_32 $(OBJROOT)/$(@F).o32 - @echo "\t[LD64] $(@F)_64" + @echo " [LD64] $(@F)_64" @$(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) $(INCLUDES) -arch x86_64 \ -o $(SYMROOT)/$(@F)_64 $(OBJROOT)/$(@F).o64 - @echo "\t[LIPO] $(@F)" + @echo " [LIPO] $(@F)" @lipo -create -arch i386 $(SYMROOT)/$(@F)_32 -arch x86_64 $(SYMROOT)/$(@F)_64 \ -output $(SYMROOT)/$(@F) @$(RM) $(SYMROOT)/$(@F)_32 $(SYMROOT)/$(@F)_64 @@ -42,16 +42,16 @@ keymaps: $(KEYBOARD_LAYOUTS) $(KEYMAPSROOT)/%.lyt: $(LAYOUTS_SRC_DIR)/%.slt $(MKLAYOUT) - @echo "\t[LAYOUT] Creating keyboard layout: $*" + @echo " [LAYOUT] Creating keyboard layout: $*" @$(MKLAYOUT) -i $< -o $@ #.PHONY layouts clean-local: - @for o in $(OBJS); do if [ -f "$${o}" ];then echo "\t[RM] $${o}"; fi; done - @for p in $(PROGRAMS); do if [ -f "$${p}" ];then echo "\t[RM] $${p}"; fi; done - @for k in $(KEYBOARD_LAYOUTS); do if [ -f "$${k}" ];then echo "\t[RM] $${k}"; fi; done + @for o in $(OBJS); do if [ -f "$${o}" ];then echo " [RM] $${o}"; fi; done + @for p in $(PROGRAMS); do if [ -f "$${p}" ];then echo " [RM] $${p}"; fi; done + @for k in $(KEYBOARD_LAYOUTS); do if [ -f "$${k}" ];then echo " [RM] $${k}"; fi; done @$(RM) -f $(PROGRAMS) $(OBJS) distclean-local: - @if [ -d "$(KEYMAPSROOT)" ];then echo "\t[RMDIR] $(KEYMAPSROOT)"; fi + @if [ -d "$(KEYMAPSROOT)" ];then echo " [RMDIR] $(KEYMAPSROOT)"; fi @$(RM) -rf $(KEYMAPSROOT) Index: branches/ErmaC/Enoch/i386/modules/KernelPatcher/Cconfig =================================================================== --- branches/ErmaC/Enoch/i386/modules/KernelPatcher/Cconfig (revision 2456) +++ branches/ErmaC/Enoch/i386/modules/KernelPatcher/Cconfig (revision 2457) @@ -6,5 +6,5 @@ bool "Kernel Patcher Module" default y ---help--- - Say Y here if you want to enable to use of this module. + Say Y here if you want to enable the use of this module. Index: branches/ErmaC/Enoch/i386/modules/KernelPatcher/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/modules/KernelPatcher/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/modules/KernelPatcher/Makefile (revision 2457) @@ -13,7 +13,7 @@ include ../MakeInc.dir $(SYMROOT)/modules/$(MODULE_NAME).dylib: - @echo "\t[CP] $(MODULE_NAME).dylib" + @echo " [CP] $(MODULE_NAME).dylib" @cp $(MODULE_NAME).dylib $(SRCROOT)/sym/i386/modules/$(MODULE_NAME).dylib $(SRCROOT)/sym/i386/boot_modules.c: Index: branches/ErmaC/Enoch/i386/modules/AcpiCodec/acpi_codec.c =================================================================== --- branches/ErmaC/Enoch/i386/modules/AcpiCodec/acpi_codec.c (revision 2456) +++ branches/ErmaC/Enoch/i386/modules/AcpiCodec/acpi_codec.c (revision 2457) @@ -196,8 +196,10 @@ return entry; \ } -__RES(pss, long) -__RES(cst, int) +__RES(pss, long) +#if UNUSED + __RES(cst, int) +#endif /* UNUSED */ static ACPI_TABLE_HEADER * get_new_table_in_list(U32 *new_table_list, U32 Signature, U8 *retIndex ) { Index: branches/ErmaC/Enoch/i386/modules/AcpiCodec/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/modules/AcpiCodec/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/modules/AcpiCodec/Makefile (revision 2457) @@ -6,8 +6,8 @@ MODULE_START = $(MODULE_NAME)_start MODULE_DEPENDENCIES = -DIR = ACPICodec +DIR = AcpiCodec MODULE_OBJS = ACPICodec.o acpi_tools.o acpi_codec.o acpidecode.o acpicode.o -include ../MakeInc.dir \ No newline at end of file +include ../MakeInc.dir Index: branches/ErmaC/Enoch/i386/modules/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/modules/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/modules/Makefile (revision 2457) @@ -11,7 +11,7 @@ include ${SRCROOT}/Make.rules # The order of building modules is important. -SUBDIRS = KernelPatcher +SUBDIRS = ifdef CONFIG_KLIBC_MODULE SUBDIRS += klibc @@ -25,6 +25,14 @@ SUBDIRS += Resolution endif +ifdef CONFIG_KERNELPATCHER_MODULE +SUBDIRS += KernelPatcher +endif + +ifdef CONFIG_KEXTPATCHER_MODULE +SUBDIRS += KextPatcher +endif + ifdef CONFIG_HELLOWORLD_MODULE SUBDIRS += HelloWorld endif @@ -45,10 +53,6 @@ SUBDIRS += FileNVRAM endif -#ifdef CONFIG_KEXTPATCHER_MODULE -#SUBDIRS += KextPatcher -#endif - #ifdef CONFIG_HDAENABLER_MODULE #SUBDIRS += HDAEnabler #endif Index: branches/ErmaC/Enoch/i386/cdboot/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/cdboot/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/cdboot/Makefile (revision 2457) @@ -16,7 +16,7 @@ all embedtheme optionrom: $(DIRS_NEEDED) $(SYMROOT)/cdboot $(SYMROOT)/cdboot: - @echo "\t[NASM] cdboot.s" + @echo " [NASM] cdboot.s" @$(NASM) cdboot.s -o $(SYMROOT)/cdboot @dd if=$(SYMROOT)/boot of=$(SYMROOT)/cdboot conv=sync bs=2k seek=1 &> /dev/null @@ -26,5 +26,5 @@ | dd of=$(SYMROOT)/cdboot bs=1 count=4 seek=2044 conv=notrunc &> /dev/null clean-local: - @if [ -f "$(SYMROOT)/cdboot" ];then echo "\t[RM] $(SYMROOT)/cdboot"; fi + @if [ -f "$(SYMROOT)/cdboot" ];then echo " [RM] $(SYMROOT)/cdboot"; fi @rm -f $(SYMROOT)/cdboot Index: branches/ErmaC/Enoch/i386/libsa/zalloc.c =================================================================== --- branches/ErmaC/Enoch/i386/libsa/zalloc.c (revision 2456) +++ branches/ErmaC/Enoch/i386/libsa/zalloc.c (revision 2457) @@ -57,7 +57,7 @@ static void zcoalesce(void); #if ZDEBUG -size_t zalloced_size; + size_t zalloced_size; #endif #define ZALLOC_NODES 32767 /* was 16384 */ @@ -78,7 +78,8 @@ zavailable = (zmem *) zalloc_base + sizeof(zmem) * totalNodes; zavailable[0].start = (char *)zavailable + sizeof(zmem) * totalNodes; - if (size == 0) { + if (size == 0) + { size = ZALLOC_LEN; } @@ -108,8 +109,10 @@ size = ((size + 0xf) & ~0xf); - if (size == 0) { - if (zerror) { + if (size == 0) + { + if (zerror) + { (*zerror)((char *)0xdeadbeef, 0, file, line); } } @@ -155,12 +158,14 @@ done: if ((ret == 0) || (ret + size >= zalloc_end)) { - if (zerror) { + if (zerror) + { (*zerror)(ret, size, file, line); } } - if (ret != 0) { + if (ret != 0) + { bzero(ret, size); } #if ZDEBUG @@ -186,7 +191,8 @@ rp = 0; #endif - if (!start) { + if (!start) + { return; } @@ -207,8 +213,10 @@ break; } } - if (!found) { - if (zerror) { + if (!found) + { + if (zerror) + { (*zerror)(pointer, rp, "free", 0); } else { return; @@ -218,7 +226,8 @@ zalloced_size -= tsize; #endif - for (i = 0; i < availableNodes; i++) { + for (i = 0; i < availableNodes; i++) + { if ((start + tsize) == zavailable[i].start) // merge it in { zavailable[i].start = start; @@ -227,15 +236,19 @@ return; } - if ((i > 0) && (zavailable[i-1].start + zavailable[i-1].size == start)) { + if ((i > 0) && (zavailable[i-1].start + zavailable[i-1].size == start)) + { zavailable[i-1].size += tsize; zcoalesce(); return; } - if ((start + tsize) < zavailable[i].start) { - if (++availableNodes > totalNodes) { - if (zerror) { + if ((start + tsize) < zavailable[i].start) + { + if (++availableNodes > totalNodes) + { + if (zerror) + { (*zerror)((char *)0xf000f000, 0, "free", 0); } } @@ -246,8 +259,10 @@ } } - if (++availableNodes > totalNodes) { - if (zerror) { + if (++availableNodes > totalNodes) + { + if (zerror) + { (*zerror)((char *)0xf000f000, 1, "free", 0); } } @@ -270,8 +285,10 @@ zalloced[allocedNodes].start = start; zalloced[allocedNodes].size = size; - if (++allocedNodes > totalNodes) { - if (zerror) { + if (++allocedNodes > totalNodes) + { + if (zerror) + { (*zerror)((char *)0xf000f000, 2, "zallocate", 0); } }; @@ -287,7 +304,8 @@ z1 = zp + i; z2 = z1 + 1; - for (; i >= ndx; i--, z1--, z2--) { + for (; i >= ndx; i--, z1--, z2--) + { *z2 = *z1; } } @@ -301,7 +319,8 @@ z1 = zp + ndx; z2 = z1 + 1; - for (i = ndx; i < totalNodes - 1; i++, z1++, z2++) { + for (i = ndx; i < totalNodes - 1; i++, z1++, z2++) + { *z1 = *z2; } } @@ -311,8 +330,10 @@ { int i; - for (i = 0; i < availableNodes-1; i++) { - if ( zavailable[i].start + zavailable[i].size == zavailable[i + 1].start ) { + for (i = 0; i < availableNodes-1; i++) + { + if ( zavailable[i].start + zavailable[i].size == zavailable[i + 1].start ) + { zavailable[i].size += zavailable[i + 1].size; zdelete(zavailable, i + 1); availableNodes--; return; Index: branches/ErmaC/Enoch/i386/libsa/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/libsa/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/libsa/Makefile (revision 2457) @@ -36,17 +36,17 @@ $(LIBS): $(OBJS) - @echo "\t[RM] $@" + @echo " [RM] $@" @rm -f $@ - @echo "\t[AR] $(@F)" + @echo " [AR] $(@F)" @ar q $@ $^ &> /dev/null - @echo "\t[RANLIB] $(@F)" + @echo " [RANLIB] $(@F)" @ranlib $@ # dependencies -include $(OBJROOT)/Makedep clean-local: - @for o in $(OBJS); do if [ -f "$${o}" ];then echo "\t[RM] $${o}"; fi; done - @for l in $(LIBS); do if [ -f "$${l}" ];then echo "\t[RM] $${l}"; fi; done + @for o in $(OBJS); do if [ -f "$${o}" ];then echo " [RM] $${o}"; fi; done + @for l in $(LIBS); do if [ -f "$${l}" ];then echo " [RM] $${l}"; fi; done @rm -f $(LIBS) $(OBJS) Index: branches/ErmaC/Enoch/i386/util/fdisk/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/util/fdisk/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/util/fdisk/Makefile (revision 2457) @@ -29,11 +29,11 @@ all: $(SYMROOT) $(OBJROOT) $(PROGRAM) $(PROGRAM): $(OBJS) - @echo "\t[LD32] $@_32" + @echo " [LD32] $@_32" @$(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -arch i386 -o $@_32 $(filter %.o32,$^) - @echo "\t[LD64] $@_64" + @echo " [LD64] $@_64" @$(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -arch x86_64 -o $@_64 $(filter %.o64,$^) - @echo "\t[LIPO] $@" + @echo " [LIPO] $@" @lipo -create -arch i386 $@_32 -arch x86_64 $@_64 -output $@ @rm $@_32 $@_64 @@ -48,6 +48,6 @@ -include $(OBJROOT)/Makedep clean-local: - @for p in $(PROGRAMS); do if [ -f "$${p}" ];then echo "\t[RM] $${p}"; fi; done - @for o in $(OBJS); do if [ -f "$${o}" ];then echo "\t[RM] $${o}"; fi; done + @for p in $(PROGRAMS); do if [ -f "$${p}" ];then echo " [RM] $${p}"; fi; done + @for o in $(OBJS); do if [ -f "$${o}" ];then echo " [RM] $${o}"; fi; done @rm -f $(PROGRAM) $(OBJS) Index: branches/ErmaC/Enoch/i386/util/bdmesg.c =================================================================== --- branches/ErmaC/Enoch/i386/util/bdmesg.c (revision 2456) +++ branches/ErmaC/Enoch/i386/util/bdmesg.c (revision 2457) @@ -20,7 +20,9 @@ root = IORegistryEntryFromPath(kIOMasterPortDefault, "IOService:/"); if (root) + { bootLog = IORegistryEntryCreateCFProperty(root, CFSTR("boot-log"), kCFAllocatorDefault, 0); + } if (!bootLog) { @@ -28,7 +30,9 @@ root = IORegistryEntryFromPath(kIOMasterPortDefault, "IODeviceTree:/efi/platform"); if (root) + { bootLog = IORegistryEntryCreateCFProperty(root, CFSTR("boot-log"), kCFAllocatorDefault, 0); + } } if (!bootLog) @@ -40,7 +44,11 @@ const UInt8 *msglog = CFDataGetBytePtr((CFDataRef)bootLog); if (msglog) + { printf("%s\n", msglog); + } + CFRelease(bootLog); + return 0; } Index: branches/ErmaC/Enoch/i386/util/Makefile =================================================================== --- branches/ErmaC/Enoch/i386/util/Makefile (revision 2456) +++ branches/ErmaC/Enoch/i386/util/Makefile (revision 2457) @@ -12,14 +12,12 @@ IMGSKELROOT = $(SRCROOT)/imgskel CDBOOT = ${IMGROOT}/usr/standalone/i386/cdboot - DIR = util include ${SRCROOT}/Make.rules PROGRAMS = machOconv dyldsymboltool segsize OBJS = dyldsymboltool.o32 dyldsymboltool.o64 machOconv.o32 machOconv.o64 segsize.o32 segsize.o64 - ifeq (${CONFIG_BDMESG}, y) PROGRAMS += bdmesg OBJS += bdmesg.o32 bdmesg.o64 @@ -43,11 +41,11 @@ all: $(DIRS_NEEDED) $(SYMPROG) all-recursive $(SYMPROG): $(OBJS) - @echo "\t[LD32] $(@F)_32" + @echo " [LD32] $(@F)_32" @$(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -arch i386 -o $(SYMROOT)/$(@F)_32 $(OBJROOT)/$(@F).o32 - @echo "\t[LD64] $(@F)_64" + @echo " [LD64] $(@F)_64" @$(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -arch x86_64 -o $(SYMROOT)/$(@F)_64 $(OBJROOT)/$(@F).o64 - @echo "\t[LIPO] $(@F)" + @echo " [LIPO] $(@F)" @lipo -create -arch i386 $(SYMROOT)/$(@F)_32 -arch x86_64 $(SYMROOT)/$(@F)_64 -output $(SYMROOT)/$(@F) @$(RM) $(SYMROOT)/$(@F)_32 $(SYMROOT)/$(@F)_64 @@ -55,6 +53,6 @@ -include $(OBJROOT)/Makedep clean-local: - @for o in $(OBJS); do if [ -f "$${o}" ];then echo "\t[RM] $${o}"; fi; done - @for p in $(SYMPROG); do if [ -f "$${p}" ];then echo "\t[RM] $${p}"; fi; done + @for o in $(OBJS); do if [ -f "$${o}" ];then echo " [RM] $${o}"; fi; done + @for p in $(SYMPROG); do if [ -f "$${p}" ];then echo " [RM] $${p}"; fi; done @rm -f $(SYMPROG) $(OBJS) Index: branches/ErmaC/Enoch/artwork/themes/default/device_hfsplus_recovery.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/Enoch/artwork/themes/default/device_hfsplus_recovery.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/Enoch/artwork/themes/default/device_hfsplus_yos.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/Enoch/artwork/themes/default/device_hfsplus_yos.png ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/Enoch/artwork/themes/default/device_hfsraid_yos_o.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/Enoch/artwork/themes/default/device_hfsraid_yos_o.png ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/Enoch/artwork/themes/default/device_hfsplus_recovery_o.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/Enoch/artwork/themes/default/device_hfsplus_recovery_o.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/Enoch/artwork/themes/default/device_hfsplus_yos_o.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/Enoch/artwork/themes/default/device_hfsplus_yos_o.png ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/Enoch/artwork/themes/default/device_hfsraid_yos.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: branches/ErmaC/Enoch/artwork/themes/default/device_hfsraid_yos.png ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Index: branches/ErmaC/Enoch/package/Changes.txt =================================================================== --- branches/ErmaC/Enoch/package/Changes.txt (revision 2456) +++ branches/ErmaC/Enoch/package/Changes.txt (revision 2457) @@ -1,3 +1,5 @@ +- ErmaC - Auto increase year for pkg resource. + - JrCs - Add translation to the project. - ErmaC - Update Language for whobuild resources. Index: branches/ErmaC/Enoch/package/OptionalSettings/HDEFLayout.txt =================================================================== --- branches/ErmaC/Enoch/package/OptionalSettings/HDEFLayout.txt (revision 2456) +++ branches/ErmaC/Enoch/package/OptionalSettings/HDEFLayout.txt (revision 2457) @@ -28,6 +28,8 @@ Text@HDEFLayoutIDx01:HDEFLayoutID=01000000 Text@HDEFLayoutIDx02:HDEFLayoutID=02000000 Text@HDEFLayoutIDx03:HDEFLayoutID=03000000 +Text@HDEFLayoutIDx05:HDEFLayoutID=05000000 +Text@HDEFLayoutIDx07:HDEFLayoutID=07000000 Text@HDEFLayoutIDx12:HDEFLayoutID=0C000000 Text@HDEFLayoutIDx32:HDEFLayoutID=20000000 Text@HDEFLayoutIDx40:HDEFLayoutID=28000000 Index: branches/ErmaC/Enoch/package/OptionalSettings/PowerManagement.txt =================================================================== --- branches/ErmaC/Enoch/package/OptionalSettings/PowerManagement.txt (revision 2456) +++ branches/ErmaC/Enoch/package/OptionalSettings/PowerManagement.txt (revision 2457) @@ -36,6 +36,7 @@ Bool@EnableC3State:EnableC3State=Yes Bool@EnableC4State:EnableC4State=Yes #Bool@EnableC6State:EnableC6State=Yes +#Bool@EnableC7State:EnableC7State=Yes Bool@GenerateCStates:GenerateCStates=Yes Bool@GeneratePStates:GeneratePStates=Yes #Bool@GenerateTStates:GenerateTStates=Yes Index: branches/ErmaC/Enoch/package/OptionalSettings/HDAULayout.txt =================================================================== --- branches/ErmaC/Enoch/package/OptionalSettings/HDAULayout.txt (revision 2456) +++ branches/ErmaC/Enoch/package/OptionalSettings/HDAULayout.txt (revision 2457) @@ -28,6 +28,8 @@ Text@HDAULayoutIDx01:HDAULayoutID=01000000 Text@HDAULayoutIDx02:HDAULayoutID=02000000 Text@HDAULayoutIDx03:HDAULayoutID=03000000 +Text@HDAULayoutIDx05:HDAULayoutID=05000000 +Text@HDAULayoutIDx07:HDAULayoutID=07000000 Text@HDAULayoutIDx12:HDAULayoutID=0C000000 Text@HDAULayoutIDx32:HDAULayoutID=20000000 Text@HDAULayoutIDx40:HDAULayoutID=28000000 Index: branches/ErmaC/Enoch/package/smbios.plist =================================================================== --- branches/ErmaC/Enoch/package/smbios.plist (revision 2456) +++ branches/ErmaC/Enoch/package/smbios.plist (revision 2457) @@ -1,25 +1,55 @@ - + - SMbiosversion - MP31.88Z.00C1.B00.0802091544 - SMmanufacturer - Apple Inc. - SMproductname - MacPro3,1 - SMsystemversion - 1.0 - SMserial - W87234JHYA4 + SMbiosvendor + Apple Inc. + SMbiosversion + MP41.88Z.0081.B08.1001221313 + SMbiosdate + 01/22/10 + SMmanufacturer + Apple Inc. + SMproductname + MacPro4,1 + SMsystemversion + 1.4 + SMserial + CK0215824PC + SMsystemuuid + a8dd17a0-cf10-4323-9841-29a9f08c1d49 + SMfamily + Mac Pro + SMboardmanufacturer + Apple Inc. + + SMboardproduct + Mac-F221BEC8 + SMboardversion + MacPro4,1 + SMboardserial + C02140302D5DMT31M + SMboardlocation + Part Component + + SMchassismanufacturer + Apple Inc. + SMchassisversion + Mac-F221BEC8 + SMchassisserial + CK0215824PC + + SMchassisassettag + Pro-Enclosure SMexternalclock - 333 + 133 SMmaximalclock 3000 + SMmemtype - 19 + 24 SMmemspeed - 800 + 1600 SMmemmanufacturer_1 0xAD00000000000000 SMmemserial_1 @@ -44,18 +74,47 @@ 0x00003021 SMmempart_4 0x48594D503131325336344350362D59352020 + Index: branches/ErmaC/Enoch/package/bin/clean_po_headers.sh =================================================================== --- branches/ErmaC/Enoch/package/bin/clean_po_headers.sh (revision 2456) +++ branches/ErmaC/Enoch/package/bin/clean_po_headers.sh (revision 2457) @@ -10,7 +10,7 @@ lang=${pofile##*/} lang=${lang%.*} gsed -i 's/; charset=CHARSET/; charset=UTF-8/g' $pofile - gsed -i 's/^\"Project-Id-Version: PACKAGE VERSION/\"Project-Id-Version: Chameleon 2.2/' $pofile + gsed -i 's/^\"Project-Id-Version: PACKAGE VERSION/\"Project-Id-Version: Chameleon 2.3/' $pofile gsed -i "s/^\"Language:.*\"/\"Language: $lang\\\n\"/" $pofile gsed -i "s/^\"Language-Team:.*\"/\"Language-Team: $lang <$lang@li.org>\\\n\"/" $pofile done Index: branches/ErmaC/Enoch/package/Resources/templates/Localizable.strings =================================================================== --- branches/ErmaC/Enoch/package/Resources/templates/Localizable.strings (revision 2456) +++ branches/ErmaC/Enoch/package/Resources/templates/Localizable.strings (revision 2457) @@ -194,6 +194,9 @@ "EnableC6State_title" = "EnableC6State=Yes"; "EnableC6State_description" = "Enable specific Processor power state, C6."; +"EnableC7State_title" = "EnableC7State=Yes"; +"EnableC7State_description" = "Enable specific Processor power state, C7."; + "GenerateCStates_title" = "GenerateCStates=Yes"; "GenerateCStates_description" = "Enable auto generation of processor idle sleep states (C-States)."; @@ -258,6 +261,14 @@ "HDEFLayoutIDx03_description" = "Set HDEF layout-it to 3: 003 (0x03, 0x00, 0x00, 0x00)."; +"HDEFLayoutIDx05_title" = "LayoutID=5"; +"HDEFLayoutIDx05_description" = "Set HDEF layout-it to 5: +005 (0x05, 0x00, 0x00, 0x00)."; + +"HDEFLayoutIDx07_title" = "LayoutID=7"; +"HDEFLayoutIDx07_description" = "Set HDEF layout-it to 7: +007 (0x07, 0x00, 0x00, 0x00)."; + "HDEFLayoutIDx12_title" = "LayoutID=12"; "HDEFLayoutIDx12_description" = "Set HDEF layout-it to 12: 00C (0x0C, 0x00, 0x00, 0x00)."; @@ -356,6 +367,14 @@ "HDAULayoutIDx03_description" = "Set HDAU layout-it to 3: 003 (0x03, 0x00, 0x00, 0x00)."; +"HDAULayoutIDx05_title" = "LayoutID=5"; +"HDAULayoutIDx05_description" = "Set HDAU layout-it to 5: +005 (0x05, 0x00, 0x00, 0x00)."; + +"HDAULayoutIDx07_title" = "LayoutID=7"; +"HDAULayoutIDx07_description" = "Set HDAU layout-it to 7: +007 (0x07, 0x00, 0x00, 0x00)."; + "HDAULayoutIDx12_title" = "LayoutID=12"; "HDAULayoutIDx12_description" = "Set HDAU layout-it to 12: 00C (0x0C, 0x00, 0x00, 0x00)."; Index: branches/ErmaC/Enoch/package/buildpkg.sh =================================================================== --- branches/ErmaC/Enoch/package/buildpkg.sh (revision 2456) +++ branches/ErmaC/Enoch/package/buildpkg.sh (revision 2457) @@ -73,7 +73,7 @@ declare -r CHAMELEON_DEVELOP=$(awk "NR==6{print;exit}" ${PKGROOT}/../CREDITS) declare -r CHAMELEON_CREDITS=$(awk "NR==10{print;exit}" ${PKGROOT}/../CREDITS) declare -r CHAMELEON_PKGDEV=$(awk "NR==14{print;exit}" ${PKGROOT}/../CREDITS) -declare -r CHAMELEON_CPRYEAR=$(awk "NR==18{print;exit}" ${PKGROOT}/../CREDITS) +declare -r CHAMELEON_CPRYEAR=$(awk "NR==18{print;exit}" ${PKGROOT}/../CREDITS)"-"$( date +"%Y" ) if [[ $(whoami | awk '{print $1}' | cut -d ":" -f3) == "admin" ]];then declare -r CHAMELEON_WHOBUILD="VoodooLabs BuildBot" else Index: branches/ErmaC/Enoch/package/po/ar.po =================================================================== --- branches/ErmaC/Enoch/package/po/ar.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/ar.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-04-26 18:34+0000\n" "Last-Translator: magnifico \n" "Language-Team: ar \n" @@ -263,7 +263,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "قياسى" @@ -375,7 +375,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "الدقة" @@ -1067,7 +1067,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "" @@ -1082,7 +1082,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "" @@ -1097,7 +1097,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "" @@ -1110,15 +1110,45 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1126,14 +1156,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1141,14 +1171,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1156,14 +1186,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1171,14 +1201,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1186,14 +1216,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1201,14 +1231,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1216,14 +1246,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1231,14 +1261,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1246,14 +1276,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1261,14 +1291,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1276,14 +1306,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1291,14 +1321,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1306,14 +1336,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1321,14 +1351,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1336,14 +1366,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1351,14 +1381,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1366,14 +1396,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1381,14 +1411,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1396,14 +1426,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1411,14 +1441,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1426,7 +1456,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1434,7 +1464,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1442,15 +1472,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1458,7 +1504,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1466,7 +1512,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1474,7 +1520,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1482,7 +1528,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1490,7 +1536,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1498,7 +1544,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1506,7 +1552,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1514,7 +1560,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1522,7 +1568,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1530,7 +1576,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1538,7 +1584,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1546,7 +1592,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1554,7 +1600,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1562,7 +1608,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1570,7 +1616,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1578,7 +1624,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1586,7 +1632,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1594,7 +1640,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1602,7 +1648,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1610,7 +1656,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1618,615 +1664,615 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "" #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "" #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "" #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, fuzzy, no-wrap #| msgid "EnableC2State=Yes" msgid "EnableBacklight=Yes" msgstr "EnableC2State=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, fuzzy, no-wrap #| msgid "EnableC2State=Yes" msgid "EnableDualLink=Yes" msgstr "EnableC2State=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "" #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "" #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "" #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2235,25 +2281,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "" #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2263,25 +2309,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2289,277 +2335,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "" #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "" #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "" #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "" #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "" #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "" #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "" #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/en.po =================================================================== --- branches/ErmaC/Enoch/package/po/en.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/en.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-12-29 12:14+0000\n" "Last-Translator: ErmaC \n" "Language-Team: en \n" @@ -267,7 +267,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Standard" @@ -388,7 +388,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Resolution" @@ -1079,7 +1079,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1096,7 +1096,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1113,7 +1113,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1128,15 +1128,49 @@ "Set HDEF layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "LayoutID=5" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "LayoutID=7" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1146,14 +1180,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1163,14 +1197,14 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1180,14 +1214,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1197,14 +1231,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1214,14 +1248,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1231,14 +1265,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1248,14 +1282,14 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1265,14 +1299,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1282,14 +1316,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1299,14 +1333,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1316,14 +1350,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1333,14 +1367,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1350,14 +1384,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1367,14 +1401,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1384,14 +1418,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1401,14 +1435,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1418,14 +1452,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1435,14 +1469,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1452,14 +1486,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1469,14 +1503,14 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1486,7 +1520,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1496,7 +1530,7 @@ "001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1506,7 +1540,7 @@ "002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1515,8 +1549,28 @@ "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1526,7 +1580,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1536,7 +1590,7 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1546,7 +1600,7 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1556,7 +1610,7 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1566,7 +1620,7 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1576,7 +1630,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1586,7 +1640,7 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1596,7 +1650,7 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1606,7 +1660,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1616,7 +1670,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1626,7 +1680,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1636,7 +1690,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1646,7 +1700,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1656,7 +1710,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1666,7 +1720,7 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1676,7 +1730,7 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1686,7 +1740,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1696,7 +1750,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1706,7 +1760,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1716,7 +1770,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1726,613 +1780,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "Set HDEF PinConfiguration for Analog Devices AD2000b." #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "Set HDEF PinConfiguration for Analog Devices AD1981HD." #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "Set HDEF PinConfiguration for Analog Devices AD1988b." #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Set HDEF PinConfiguration for Realtek ALC888." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Set HDEF PinConfiguration for Realtek ALC1200." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "Set HDEF PinConfiguration for ???." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Enables the option to auto detect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Inject HDMi audio for NVIDIA or AMD/ATI." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Enables UseAtiROM options." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Enables UseNvidiaROM options." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Enables VBIOS option" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "Skip the GraphicsEnbaler autodetect for Intel based GPUs." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "Enables Backlight options for laptop with nVidia cards." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Enables DualLink options for nVidia and ATi cards." #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "Use the classic Nvidia name for the SystemProfiler (disabled by default)." #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "A troubleshooting option used for booting into OS X's BSD/Unix command line." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2344,25 +2398,25 @@ "Findings credits to bcc9." #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2376,25 +2430,25 @@ "Findings credits to meklort and Rampage Dev." #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2404,277 +2458,277 @@ "More information by bcc9 here: http://www.insanelymac.com/forum/topic/282989-vtd0-fault-after-1082-google-hasnt-heard-of-it-any-help/#entry1867000" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "German Mac Keyboard" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Use the keyboard layout for a German Mac keyboard" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spanish Mac Keyboard" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Use the keyboard layout for a Spanish Mac keyboard" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "French Mac Keyboard" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Use the keyboard layout for a French Mac keyboard" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italian Mac Keyboard" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Use the keyboard layout for an Italian Mac keyboard" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Swedish Mac Keyboard" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Use the keyboard layout for a Swedish Mac keyboard" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "French PC Keyboard" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Use the keyboard layout for a French PC keyboard" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Chameleon's original default theme introduced for v2.0 RC1" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Chameleon default theme introduced for v2.0 RC5" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "A lovely simple theme by NoSmokingBandit from April 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "A selection of options that deal with audio." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Control Options" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Settings to control how Chameleon works." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "General Options" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Choose from a selection of base options." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Flags" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Choose from a selection of kernel flags." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Power Management" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "A selection of options that deal with power management and speedstep." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Set one resolution to use." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "Set one HDEF Layout ID to use for your HDA controller." #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "Set one HDAU Layout ID to use for your HDMi controller." #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Set one AAPL,ig-platform-id to use for your Intel HD4000." #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "Set one AAPL,ig-platform-id to use for your Intel HD5000." #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "Set one HDEF PinConfiguration to use." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "A selection of options that deal with video." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "KeyLayout" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Select one keylayout to use. This will also install the Keylayout module and keymaps." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Themes" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/bs.po =================================================================== --- branches/ErmaC/Enoch/package/po/bs.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/bs.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2012-03-07 00:12-0000\n" "Last-Translator: ErmaC\n" "Language-Team: bs \n" @@ -269,7 +269,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Standard" @@ -381,7 +381,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Resolution" @@ -1081,7 +1081,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, fuzzy, no-wrap #| msgid "KeyLayout" msgid "LayoutID=1" @@ -1097,7 +1097,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, fuzzy, no-wrap #| msgid "KeyLayout" msgid "LayoutID=2" @@ -1113,7 +1113,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, fuzzy, no-wrap #| msgid "KeyLayout" msgid "LayoutID=3" @@ -1127,16 +1127,48 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, fuzzy, no-wrap #| msgid "KeyLayout" +msgid "LayoutID=5" +msgstr "KeyLayout" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "KeyLayout" +msgid "LayoutID=7" +msgstr "KeyLayout" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, fuzzy, no-wrap +#| msgid "KeyLayout" msgid "LayoutID=12" msgstr "KeyLayout" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1144,15 +1176,15 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, fuzzy, no-wrap #| msgid "KeyLayout" msgid "LayoutID=32" msgstr "KeyLayout" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1160,15 +1192,15 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, fuzzy, no-wrap #| msgid "KeyLayout" msgid "LayoutID=40" msgstr "KeyLayout" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1176,15 +1208,15 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, fuzzy, no-wrap #| msgid "KeyLayout" msgid "LayoutID=65" msgstr "KeyLayout" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1192,15 +1224,15 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, fuzzy, no-wrap #| msgid "KeyLayout" msgid "LayoutID=99" msgstr "KeyLayout" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1208,14 +1240,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1223,14 +1255,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1238,14 +1270,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1253,14 +1285,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1268,14 +1300,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1283,14 +1315,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1298,14 +1330,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1313,14 +1345,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1328,14 +1360,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1343,14 +1375,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1358,14 +1390,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1373,14 +1405,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1388,14 +1420,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1403,14 +1435,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1418,14 +1450,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1433,14 +1465,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1448,7 +1480,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1456,7 +1488,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1464,15 +1496,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1480,7 +1528,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1488,7 +1536,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1496,7 +1544,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1504,7 +1552,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1512,7 +1560,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1520,7 +1568,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1528,7 +1576,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1536,7 +1584,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1544,7 +1592,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1552,7 +1600,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1560,7 +1608,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1568,7 +1616,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1576,7 +1624,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1584,7 +1632,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1592,7 +1640,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1600,7 +1648,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1608,7 +1656,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1616,7 +1664,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1624,7 +1672,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1632,7 +1680,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1640,618 +1688,618 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, fuzzy, no-wrap #| msgid "Enables the option to autodetect NVIDIA based GPUs and inject the correct info." msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Omogućava opciju auto prepoznavanja NVIDIA baziranih grafičkih video kartica i upisuje pravilne informacije o istoj." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Uključuje UseAtiROM opciju." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Uključuje UseNvidiaROM opciju." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Uključuje VBIOS opciju" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, fuzzy, no-wrap #| msgid "UseNvidiaROM=Yes" msgid "SkipNvidiaGfx=Yes" msgstr "UseNvidiaROM=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, fuzzy, no-wrap #| msgid "EnableC2State=Yes" msgid "EnableBacklight=Yes" msgstr "EnableC2State=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, fuzzy, no-wrap #| msgid "EnableC2State=Yes" msgid "EnableDualLink=Yes" msgstr "EnableC2State=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, fuzzy, no-wrap #| msgid "UseNvidiaROM=Yes" msgid "NvidiaGeneric=Yes" msgstr "UseNvidiaROM=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Uključuje verbose prijavu i omogućava vam da vidite poruke iz oba Chameleon i kernel OS X prilikom pokretanja. Osnova za rješavanje problema." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Opcija za rješavanje problema koja se koristi za dizanje OS X BSD / Unix komandnog reda." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Opcija koja nije potrebna za svakodnevno podizanje, ali može biti korisna ako želite da OS X učita sve fajlove iz sistemskog direktorija, radije nego se oslanjajući na pre-izgrađenu predmemoriju." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Postavlja zastave npci = 0x2000 za Kernel Zastave" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Postavlja zastave npci = 0x3000 za Kernel Zastave" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2260,25 +2308,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Samo Lion. Isključuje 'low power wake' opciju koja ponekad ostavi crni ekran poslije buđenja iz spavanja." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2288,25 +2336,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2314,281 +2362,281 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "German Mac Keyboard" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Korištenje tastature za Njemačku Mac tastaturu" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spanish Mac Keyboard" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Korištenje tastature za Španjolsku Mac tastaturu" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "French Mac Keyboard" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Korištenje tastature za Francusku Mac tastaturu" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italian Mac Keyboard" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Korištenje tastature za Italijansku Mac tastaturu" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Swedish Mac Keyboard" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Korištenje tastature za Svedsku Mac tastaturu" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "French PC Keyboard" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Korištenje tastature za Francusku PC tastaturu" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Manja, jednostavnija verzija nove zadane teme koja se koristi prilikom izgradnje Chameleon-a koji zahtjeva ugrađenu temu. " #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Chameleonova prethodno zadana tema." #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Chameleonova trenutno zadana tema." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Predivna jednostavna tema od NoSmokingBandit iz Aprila 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, fuzzy, no-wrap #| msgid "A selection of options that deal with video." msgid "A selection of options that deal with audio." msgstr "Odabir opcija koje se bave s videom." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Control Options" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Opcije za kontrolu rada Chameleona." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "General Options" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Izaberite od selekcije iz baze opcija." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Flags" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Izaberite od selekcije iz kernel zastava." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Power Management" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Odabir opcija koje se bave upravljanjem potrošnjom energije i SpeedStepom." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Postavlja rezoluciju ekrana za vaš monitor" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, fuzzy, no-wrap #| msgid "KeyLayout" msgid "HDEF Layout" msgstr "KeyLayout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, fuzzy, no-wrap #| msgid "KeyLayout" msgid "HDAU Layout" msgstr "KeyLayout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, fuzzy, no-wrap #| msgid "Set one resolution to use." msgid "Set one HDEF PinConfiguration to use." msgstr "Postavlja rezoluciju ekrana za vaš monitor" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Odabir opcija koje se bave s videom." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "KeyLayout" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Select one keylayout to use. This will also install the Keylayout module and keymaps." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Themes" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/cs.po =================================================================== --- branches/ErmaC/Enoch/package/po/cs.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/cs.po (revision 2457) @@ -5,8 +5,8 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.1svn-r1870\n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"Project-Id-Version: Chameleon 2.3\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-12-29 12:13+0000\n" "Last-Translator: ErmaC \n" "Language-Team: cs \n" @@ -269,7 +269,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Standartní" @@ -385,7 +385,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Rozlíšení" @@ -1070,7 +1070,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1087,7 +1087,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1104,7 +1104,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1119,15 +1119,57 @@ "Nastavit HDEF layout na 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_title" +#: Resources/templates/Localizable.strings:261 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Nastavit HDEF layout na 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Nastavit HDEF layout na 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_title" -#: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 #, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1137,14 +1179,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1154,14 +1196,14 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1171,14 +1213,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1188,14 +1230,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1205,14 +1247,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1222,14 +1264,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1239,14 +1281,14 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1256,14 +1298,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1273,14 +1315,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1290,14 +1332,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1307,14 +1349,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1324,14 +1366,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1341,14 +1383,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1358,14 +1400,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1375,14 +1417,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1392,14 +1434,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1409,14 +1451,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1426,14 +1468,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1443,14 +1485,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1460,14 +1502,14 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1477,7 +1519,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1487,7 +1529,7 @@ "001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1497,7 +1539,7 @@ "002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1506,8 +1548,34 @@ "Nastavit HDAU layout na 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Nastavit HDAU layout na 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Nastavit HDAU layout na 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1517,7 +1585,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1527,7 +1595,7 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1537,7 +1605,7 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1547,7 +1615,7 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1557,7 +1625,7 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1567,7 +1635,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1577,7 +1645,7 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1587,7 +1655,7 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1597,7 +1665,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1607,7 +1675,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1617,7 +1685,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1627,7 +1695,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1637,7 +1705,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1647,7 +1715,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1657,7 +1725,7 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1667,7 +1735,7 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1677,7 +1745,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1687,7 +1755,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1697,7 +1765,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1707,7 +1775,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1717,613 +1785,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Nastavit 01660001 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Nastavit 01660002 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Nastavit 01660003 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Nastavit 01620005 pro Intel HD4000 (Desktop) AAPL, ig-platform-id." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Nastavit 01620006 pro Intel HD4000 (Desktop) AAPL, ig-platform-id." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Nastavit 01620007 pro Intel HD4000 (Desktop) AAPL, ig-platform-id." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Nastavit 01660008 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Nastavit 01660009 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Nastavit 0166000b pro Intel HD4000 (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 00000604 pro Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0000060c pro Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 01660004 pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0000160a pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0000160c pro Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 00002604 pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0000260a pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0600260c pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0000260d pro Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 02001604 pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "Nastavit 0300220d pro Intel Haswell (Desktop) AAPL, ig-platform-id." #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0500260a pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0600260a pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0700260d pro Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0800260a pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 08002e0a pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "Nastavit HDEF PinConfiguration pro Analog Devices AD2000b." #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "Nastavit HDEF PinConfiguration pro Analog Devices AD1981HD." #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "Nastavit HDEF PinConfiguration pro Analog Devices AD1988b." #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Nastavit HDEF PinConfiguration pro Realtek ALC888." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Nastavit HDEF PinConfiguration pro Realtek ALC1200." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "Nastavit HDEF PinConfiguration pro ???." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Povolí možnost autodetekce graf. karet NVIDIA, AMD/ATI nebo Intel a vloží o ní korektní informace." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Aplikujte HDMI pro NVIDIA nebo AMD / ATI." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Zapnout UseAtiROM nastavení" #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Zapnout UseNvidiaROM nastavení" #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Zapnout VBIOS nastavení" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "Přeskočit GraphicsEnbaler autodetekci pro graf. karty Intel." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "Přeskočit GraphicsEnbaler autodetekci pro graf. karty NVIDIA." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "Přeskočit GraphicsEnbaler autodetekci pro graf. karty AMD/ATI." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "Povolí nastavení podsvícení pro notebook s graf. kartou nVidia." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Povolí nastavení DualLink pro graf. karty nVidia a ATI." #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Podrobný režim" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "" #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Jeden uživatelský režim" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "" #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignorovat Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "" #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2332,25 +2400,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "" #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2360,25 +2428,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2386,277 +2454,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "Německý Mac klávesnice" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Použití rozložení klávesnice pro německou klávesnici Mac" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Španělská Mac klávesnice" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Použití rozložení klávesnice pro španělskou klávesnici Mac" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "Francouzsky Mac klávesnice" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Použití rozložení klávesnice pro francouzskou klávesnici Mac" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italská Mac klávesnice" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Použití rozložení klávesnice pro italskou klávesnici Mac" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Švédská Mac klávesnice" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Použití rozložení klávesnice pro švédskou klávesnici Mac" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "Francouzsky PC klávesnice" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Použití rozložení klávesnice pro francouzskou klávesnici Mac" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "" #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Púvodní Chameleon téma navedena pro v2.0 RC1" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Púvodní Chameleon téma navedena pro v2.0 RC5" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Krásná jednoduchá téma NoSmokingBandit z dubna 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Výběr možností, které se zabývají zvukem." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Možnosti ovládání" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Nastavení určuje, jak Chameleon funguje." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Obecné možnosti" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Vyberte si z nabídky základních možností." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Flags" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Vyberte si z nabídky kernel flags." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Power Management" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Výběr možností, které se zabývají správou napájení a SpeedStep." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Nastavit jedno použitelné rozlišení." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "Nastavit jednu HDEF Layout ID pužitelný pro váš řadič HDA." #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "Nastavit jednu HDAU Layout ID použitelný pro váš řadič HDMI." #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Nastavit jednu AAPL,ig-platform-id požitelnú pro vaši Intel HD4000." #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "Nastavit jednu AAPL,ig-platform-id požitelnú pro vaši Intel HD5000." #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Výběr možností, které se zabývají s videem." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "KeyLayout" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "" #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Témata" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/mk.po =================================================================== --- branches/ErmaC/Enoch/package/po/mk.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/mk.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-05-11 17:48-0000\n" "Last-Translator: ErmaC\n" "Language-Team: mk \n" @@ -272,7 +272,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Стандардна" @@ -384,7 +384,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Резолуција" @@ -1062,7 +1062,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1077,7 +1077,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1092,7 +1092,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1105,15 +1105,47 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 #, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1121,14 +1153,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1136,14 +1168,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1151,14 +1183,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1166,14 +1198,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1181,14 +1213,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1196,14 +1228,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1211,14 +1243,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1226,14 +1258,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1241,14 +1273,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1256,14 +1288,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1271,14 +1303,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1286,14 +1318,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1301,14 +1333,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1316,14 +1348,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1331,14 +1363,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1346,14 +1378,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1361,14 +1393,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1376,14 +1408,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1391,14 +1423,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1406,14 +1438,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1421,7 +1453,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1429,7 +1461,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1437,15 +1469,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1453,7 +1501,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1461,7 +1509,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1469,7 +1517,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1477,7 +1525,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1485,7 +1533,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1493,7 +1541,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1501,7 +1549,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1509,7 +1557,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1517,7 +1565,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1525,7 +1573,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1533,7 +1581,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1541,7 +1589,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1549,7 +1597,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1557,7 +1605,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1565,7 +1613,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1573,7 +1621,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1581,7 +1629,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1589,7 +1637,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1597,7 +1645,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1605,7 +1653,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1613,613 +1661,613 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Додава GraphicsEnabler=Yes во org.chameleon.Boot.plist. Автоматско препознавање на графички карти со nVidia чипсети." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Вклучува UseAtiROM опции." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Вклучува UseNvidiaROM опции." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Вклучува VBIOS oпција" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Го вклучува опширното логирање и ви овозможува да ги видите пораките од Chameleon и OS X kernel-от при вчитување. Ова е од суштинско значење за решавање на проблеми." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Опција за вчитување на OS X во BSD/Unix командна линија." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Не е опција што е потребна за секојдневна подигнување, но тоа може да биде корисно ако сакате OS X да ги вчита сите датотеки од системските папки, наместо да се потпира на вградените кеш датотеки." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "За надминување на закочувањето на 'PCI configuration begin' на некои системи. 0x2000 е kIOPCIConfiguratorPFM64 ознака, како што се гледа во изворниот код на IOPCIFamily." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "За надминување на закочувањето на 'PCI configuration begin' на некои системи. 0x3000 е kIOPCIConfiguratorPFM64 ознака, како што се гледа во изворниот код на IOPCIFamily." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2228,25 +2276,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Само за Lion. Ја исклучува можноста 'low power wake' која што понекогаш остава црн екран после будењето од заспивање." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2256,25 +2304,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2282,277 +2330,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "German Mac Keyboard" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Користете распоред на тастатура за Германска Mac тастатура" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spanish Mac Keyboard" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Користете распоред на тастатура за Шпанска Mac тастатура" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "French Mac Keyboard" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Користете распоред на тастатура за Француска Mac тастатура" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italian Mac Keyboard" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Користете распоред на тастатура за Италијанска Mac тастатура" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Swedish Mac Keyboard" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Користете распоред на тастатура за Шведска Mac тастатура" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "French PC Keyboard" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Користете распоред на тастатура за Француска PC тастатура" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Мала едноставна верзија од новата примарна тема што се користи при креирање на верзија од Chameleon што бара вградена тема. " #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Претходната вградена тена на Chameleon" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Вградената тема во Chameleon." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "The Bullet тема од NoSmokingBandit" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Опции за контрола" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Подесувања за контрола на работата на Chameleon." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Основни опции" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Избор од секцијата на основни опции." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Ознаки" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Избор од секцијата на ознаките на kernel-от." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Менаџменат на напојување" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Избор од секцијата на менаџирање на напојувањето." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Set one resolution to use." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Видео" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Опции кои се однесуваат за графиката." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "Распоред на тастатура" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Select one keylayout to use. This will also install the Keylayout module and keymaps." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Теми" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/es.po =================================================================== --- branches/ErmaC/Enoch/package/po/es.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/es.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2014-05-19 21:55+0000\n" "Last-Translator: Yllelder \n" "Language-Team: es \n" @@ -277,7 +277,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Estándar" @@ -398,7 +398,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Resolución" @@ -1090,7 +1090,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1107,7 +1107,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1124,7 +1124,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1139,15 +1139,49 @@ "Establecer el Modo de HDEF layout-it en 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "LayoutID=5" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Establecer el Modo de HDEF layout-it en 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "LayoutID=7" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Establecer el Modo de HDEF layout-it en 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1157,14 +1191,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1174,14 +1208,14 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1191,14 +1225,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1208,14 +1242,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1225,14 +1259,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1242,14 +1276,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1259,14 +1293,14 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1276,14 +1310,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1293,14 +1327,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1310,14 +1344,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1327,14 +1361,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1344,14 +1378,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1361,14 +1395,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1378,14 +1412,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1395,14 +1429,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1412,14 +1446,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1429,14 +1463,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1446,14 +1480,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1463,14 +1497,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1480,14 +1514,14 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1497,7 +1531,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1507,7 +1541,7 @@ "001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1517,7 +1551,7 @@ "002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1526,8 +1560,28 @@ "Establecer el Modo de HDAU layout-it en 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Establecer el Modo de HDAU layout-it en 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Establecer el Modo de HDAU layout-it en 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1537,7 +1591,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1547,7 +1601,7 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1557,7 +1611,7 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1567,7 +1621,7 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1577,7 +1631,7 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1587,7 +1641,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1597,7 +1651,7 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1607,7 +1661,7 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1617,7 +1671,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1627,7 +1681,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1637,7 +1691,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1647,7 +1701,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1657,7 +1711,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1667,7 +1721,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1677,7 +1731,7 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1687,7 +1741,7 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1697,7 +1751,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1707,7 +1761,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1717,7 +1771,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1727,7 +1781,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1737,613 +1791,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Establece 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Establece 01660001 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Establece 01660002 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Establece 01660003 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Establece 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Establece 01620005 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Establece 01620006 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Establece 01620007 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Establece 01660008 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Establece 01660009 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Establece 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Establece 0166000b para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 00000604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 0000060c para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 00001604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 0000160a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 0000160c para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 00002604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 0000260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 0600260c para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 0000260d para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 02001604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "Establece 0300220d para Intel Haswell (Desktop) AAPL,ig-platform-id." #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 0500260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 0600260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 0700260d para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 0800260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Establece 08002e0a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Habilita la autodetección de GPUs NVIDIA, AMD/ATI u Intel e inyecta la información correcta." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Habilita la autodetección de audio HDMi (nVidia/AMD/ATI) e inyecta la información correcta." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Habilita las opciones AtiROM." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Habilita las opciones NvidiaROM." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "En gráficas NVIDIA habilita la opción VBIOS" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "Saltar la detección automática de GraphicsEnabler para GPUs basados ​​en Intel." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "Saltar la detección automática de GraphicsEnabler para GPUs basados ​​en nVIDIA." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "Saltar la detección automática de GraphicsEnabler para GPUs basados ​​en AMD/ATI." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "Habilita la iluminación de fondo para portátiles con tarjetas nVIDIA." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Habilitar las opciones de DualLink para tarjetas nVIDIA y ATi." #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Modo Verbose (-v)" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Activa el registro detallado y le permite ver los mensajes desde ambos Chameleon y el kernel, durante el arranque. Esencial para la solución de problemas." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Modo Single User (-s)" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Es una opción de solución de problemas utilizada para arrancar en la línea de comandos BSD/Unix de OS X." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches (-f)" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "No es una opción común que se necesita para arrancar, pero puede ser útil si desea que OS X cargue todos los archivos de las carpetas del sistema, en lugar de confiar en la caché preconstruida." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Colocar el flag npci=0x2000 en Kernel Flags. Útil desde la 10.6.8 para el problema PCI Configuration Begin." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Colocar el flag npci=0x3000 en Kernel Flags. Útil desde la 10.6.8 para el problema PCI Configuration Begin." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2355,25 +2409,25 @@ "Agradecimientos a bcc9." #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Lion solamente. Desactiva la función 'low power wake', que a veces puede dejar la pantalla en negro después de despertar del reposo." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2387,25 +2441,25 @@ "Agradecimientos a meklort y a Rampage Dev." #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2415,277 +2469,277 @@ "Más información por bcc9 aquí: http://www.insanelymac.com/forum/topic/282989-vtd0-fault-after-1082-google-hasnt-heard-of-it-any-help/#entry1867000" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "Teclado Mac Alemán" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Use una disposición para un teclado Mac en Alemán" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Teclado Mac Español" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Use una disposición para un teclado Mac en Español" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "Teclado Mac Francés" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Use una disposición para un teclado Mac en Francés" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Teclado Mac Italiano" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Use una disposición para un teclado Mac en Italiano" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Teclado Mac Sueco" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Use una disposición para un teclado Mac en Sueco" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "Teclado de PC Francés" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Use una disposición para un teclado de PC en Francés" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Versión simplificada del nuevo tema por defecto, esto se acostumbra cada vez que se crean nuevas versiones de Chameleon, es requerido." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "El tema anterior por defecto de Chameleon" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "El nuevo tema predeterminado de Chameleon" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "El tema Bullet de Nosmokingbandit" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Sonido" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Una selección de opciones relacionadas con el sonido." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Opciones de Control" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Ajustes para controlar cómo funciona Chameleon." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Opciones Generales" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Elige entre una selección de opciones de básicas." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Flags" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Elige entre una selección de kernel flags." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Gestión de Energía" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Una selección de las opciones relacionadas con la administración de energía y speedstep." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Permite fijar la resolución de pantalla para nuestro monitor" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "Establece un HDEF Layout ID a usar por tu controlador HDA." #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "Set one HDAU Layout ID to use for your HDMi controller." #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Set one AAPL,ig-platform-id to use for your Intel HD4000." #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "Establecer un AAPL,ig-platform-id a usar por tu Intel Haswell." #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "Establecer un HDEF PinConfiguration a usar." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Una selección de opciones relacionadas con el video." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "KeyLayout" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Selecciona una asignaciones de teclas. Esto también instalará el módulo keylayout y asignaciones del teclado." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Temas" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/fr.po =================================================================== --- branches/ErmaC/Enoch/package/po/fr.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/fr.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-12-29 12:14+0000\n" "Last-Translator: JrCs \n" "Language-Team: fr \n" @@ -284,7 +284,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Standard" @@ -405,7 +405,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Résolution graphique" @@ -1096,7 +1096,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1113,7 +1113,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1130,7 +1130,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1145,15 +1145,57 @@ "Set HDEF layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_title" +#: Resources/templates/Localizable.strings:261 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Set HDEF layout-it to 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Set HDEF layout-it to 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_title" -#: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 #, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1163,14 +1205,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1178,14 +1220,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1195,14 +1237,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1212,14 +1254,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1229,14 +1271,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1246,14 +1288,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1263,14 +1305,14 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1280,14 +1322,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1297,14 +1339,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1314,14 +1356,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1331,14 +1373,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1348,14 +1390,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1365,14 +1407,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1382,14 +1424,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1399,14 +1441,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1416,14 +1458,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1433,14 +1475,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1450,14 +1492,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1467,14 +1509,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1484,14 +1526,14 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1501,7 +1543,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1511,7 +1553,7 @@ "001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1521,7 +1563,7 @@ "002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1530,8 +1572,34 @@ "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Set HDAU layout-it to 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Set HDAU layout-it to 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1541,7 +1609,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1549,7 +1617,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1559,7 +1627,7 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1569,7 +1637,7 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1579,7 +1647,7 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1589,7 +1657,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1599,7 +1667,7 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1609,7 +1677,7 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1619,7 +1687,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1629,7 +1697,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1639,7 +1707,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1649,7 +1717,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1659,7 +1727,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1669,7 +1737,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1679,7 +1747,7 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1689,7 +1757,7 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1699,7 +1767,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1709,7 +1777,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1719,7 +1787,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1729,7 +1797,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1739,613 +1807,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "Set HDEF PinConfiguration for Analog Devices AD2000b." #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "Set HDEF PinConfiguration for Analog Devices AD1981HD." #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "Set HDEF PinConfiguration for Analog Devices AD1988b." #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Définir la configuration Broche HREF pour Realtek ALC888." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Définir la configuration Broche HREF pour Realtek ALC1200." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "Définir la configuration Broche HREF pour ???." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Active l'autodétection des GPU NVIDIA, AMD/ATI ou Intel et Injecte les informations correctes." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Injection pour avoir l'audio via le câble HDMI pour les cartes nVidia ou AMD/ATI." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Active l'utilisation d'une ROM ATI fournie par l'utilisateur." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Active l'utilisation d'une ROM NVIDIA fournie par l'utilisateur." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Active l'option VBIOS" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "Passer détecter la automatique pour l'activation des graphiques pour les GPU Intel." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "Passer détecter la automatique pour l'activation des graphiques pour les GPU NVIDIA." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "Passer détecter la automatique pour l'activation des graphiques pour les GPU AMD/ATi." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "Active les options Backlight pour les portables possédant des cartes nVidia." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Active les options DualLink pour les cartes nVidia et ATi." #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Mode de Diagnostic" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Active le mode de diagnostic, permet de voir des messages provenant de Chameleon et du noyau Mac OS X. Essentiel pour le débogage." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Mode Simple Utilisateur" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Une option de débogage utilisée pour démarrer sur l'invite de commande BSD/Unix de Mac OS X." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignorer les Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Permet d'ignorer les caches pré-construits et forcer Mac OS X de charger tous les fichiers de ses dossiers système." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Pour passer un blocage sur 'PCI configuration begin' sur certains systèmes. 0x2000 est l'argument de kIOPCIConfiguratorPFM64, comme marqué dans le code sourde de IOPCIFamily." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Pour passer un blocage sur 'PCI configuration begin' sur certains systèmes. 0x3000 est l'argument de kIOPCIConfiguratorPFM64, comme marqué dans le code sourde de IOPCIFamily." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2357,25 +2425,25 @@ "Merci à bcc9." #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Lion seulement. Désactive la fonctionnalité 'réveil basse consommation' qui peut laisser un écran noir après une sortie de veille." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2387,25 +2455,25 @@ "Merci à meklort et Rampage Dev." #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2413,265 +2481,265 @@ msgstr "Éviter le traitement DMAR causer par les fonctions VT-d dans OSX (virtualisation). \\ NPlus d'informations grâce à BCC9 ici: http://www.insanelymac.com/forum/topic/282989-vtd0-fault-after-1082-google-hasnt-heard-of-it-any-help/#entry1867000" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "Clavier Mac Allemand" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Utiliser le mappage clavier Mac Allemand" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Clavier Mac Espagnol" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Utiliser le mappage clavier Mac Espagnol" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "Clavier Mac Français" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Utiliser le mappage clavier Mac Français" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Clavier Mac Italien" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Utiliser le mappage clavier Mac Italien" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Clavier Mac Suédois" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Utiliser le mappage clavier Mac Suédois" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "Clavier PC Français" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Utiliser le mappage clavier PC Français" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Un version plus petite et plus simple du thème par défaut utilisée quand une version de Chameleon requiert un thème intégré." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Thème original de Chameleon introduit lors de la version 2.0 RC1" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Thème par défaut de Chameleon depuis la version 2.0 RC5" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Un thème simple et sympa crée par NoSmokingBandit (Avril 2009)." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Options concernant la partie audio du système." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Comportement de Chameleon" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Options pour controler le comportement de Chameleon." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Options Générales" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Une sélection d'options de base." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Arguments de démarrage" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Gerez le démarrage du système via les arguments de démarrage." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Gestion de l'alimentation" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Une sélection d'options qui gèrent l'alimentation et le SpeedStep." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Sélectionnez une résolution graphique a utiliser." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "Définissez une HDEF Layout ID à utiliser pour votre contrôleur HDA." #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "Définissez une HDAU Layout ID à utiliser pour votre contrôleur HDMi." #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Set one AAPL,ig-platform-id to use for your Intel HD4000." #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "Sélectionnez une PinConfiguration HDEF à utiliser." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Vidéo" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Options concernant la partie vidéo du système." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "Mappage de clavier" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "" @@ -2679,13 +2747,13 @@ "Cela installera aussi le module Keylayout ainsi que les différentes configurations de clavier." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Thèmes" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/nl.po =================================================================== --- branches/ErmaC/Enoch/package/po/nl.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/nl.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-12-29 12:05+0000\n" "Last-Translator: beta992 \n" "Language-Team: nl \n" @@ -276,7 +276,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Standaard" @@ -397,7 +397,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Resolutie" @@ -1081,7 +1081,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1096,7 +1096,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1111,7 +1111,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1124,15 +1124,47 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 #, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1140,14 +1172,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1155,14 +1187,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1170,14 +1202,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1185,14 +1217,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1200,14 +1232,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1215,14 +1247,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1230,14 +1262,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1245,14 +1277,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1260,14 +1292,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1275,14 +1307,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1290,14 +1322,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1305,14 +1337,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1320,14 +1352,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1335,14 +1367,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1350,14 +1382,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1365,14 +1397,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1380,14 +1412,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1395,14 +1427,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1410,14 +1442,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1425,14 +1457,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1440,7 +1472,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1448,7 +1480,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1456,15 +1488,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1472,7 +1520,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1480,7 +1528,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1488,7 +1536,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1496,7 +1544,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1504,7 +1552,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1512,7 +1560,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1520,7 +1568,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1528,7 +1576,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1536,7 +1584,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1544,7 +1592,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1552,7 +1600,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1560,7 +1608,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1568,7 +1616,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1576,7 +1624,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1584,7 +1632,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1592,7 +1640,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1600,7 +1648,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1608,7 +1656,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1616,7 +1664,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1624,7 +1672,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1632,613 +1680,613 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Zet HDEF PinConfiguratie voor Realtek ALC888." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Zet HDEF PinConfiguratie voor Realtek ALC1200." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "Zet HDEF PinConfiguratie voor ???." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Schakelt de optie in om op NVIDIA, AMD/ATI of Intel gebaseerde GPU's te detecteren en de correcte info te injecteren." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Injecteer HDMI geluid voor NVIDIA of AMD/ATI." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Schakelt UseAtiROM opties in." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Schakelt UseNvidiaROM opties in." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Schakelt VBIOS optie in." #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "Overslaan van de GraphicsEnabler detectie voor Intel gebaseerde GPUs." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "Overslaan van de GraphicsEnabler detectie voor NVIDIA gebaseerde GPUs." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "Overslaan van de GraphicsEnabler detectie voor AMD/ATI gebaseerde GPUs." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "Schakelt Achtergrondlicht opties voor laptop met nVidia kaarten in." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Schakelt DualLink opties in voor nVidia en ATI kaarten." #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Schakelt verbose logging aan en geeft de berichten van zowel Chameleon en de OS X kernel weer tijdens booten. Essentieel voor foutoplossing." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Een foutoplossings optie om te booten in de OS X's BSD/Unix command line interface." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Negeer Cache" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Niet een optie welke benodigd is voor dagelijks gebruik, maar het kan handig zijn wanneer u wilt dat OS X alle bestanden laadt uit de system mappen, anders dan steunen op de pre-built cache." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Lost het 'PCI configuration begin'-probleem op enkele systemen op. 0x2000 is de kIOPCIConfiguratorPFM64 flag, zoals beschreven in de IOPCIFamily broncode." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Lost het 'PCI configuration begin'-probleem op enkele systemen op. 0x3000 is de kIOPCIConfiguratorPFM64 flag, zoals beschreven in de IOPCIFamily broncode." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2247,25 +2295,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Alleen voor Lion. Deselecteerd de 'lage spanning' functionaliteit welke soms een zwart scherm veroorzaakt na terugkeer uit de slaapstand." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2275,25 +2323,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2301,277 +2349,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "Duits Mac Keyboard" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Gebruik de toetsenbord indeling voor een Duits Mac toetsenbord" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spaans Mac Keyboard" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Gebruik de toetsenbord indeling voor een Spaans Mac toetsenbord" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "Frans Mac Keyboard" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Gebruik de toetsenbord indeling voor een Frans Mac toetsenbord" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italiaans Mac Keyboard" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Gebruik de toetsenbord indeling voor een Italiaans Mac toetsenbord" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Zweeds Mac Keyboard" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Gebruik de toetsenbord indeling voor een Zweeds Mac toetsenbord" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "Frans PC Keyboard" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Gebruik de toetsenbord indeling voor een Frans PC toetsenbord" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Een kleinere simpelere versie van het nieuwe standaard thema dat gebruikt wordt, wanneer er een versie van Chameleon gebouwd wordt die een ingebouwd thema nodig heeft." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Chameleon's vorige default thema" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Het thema wat meegeleverd is met de booter, zodat deze aangepast kan worden." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Het Bullet thema door NoSmokingBandit" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Geluid" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Een selectie aan opties welke te maken hebben met geluid." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Controle Opties" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Opties gerelateerd aan hoe Chameleon werkt." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Standaard Opties" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Kies uit een selectie van standaard opties." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Vlaggen" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Kies uit een selectie aan kernel vlaggen." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Stroom Beheer" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Een selectie aan opties welke stroom beheer en snelheidstrappen regelen." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Selecteer een resolutie voor gebruik." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguratie" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "Selecteer een HDEF PinConfiguratie voor gebruik." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Beeld" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Een selectie aan opties welke te maken hebben met beeld." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "Toetsenbord Indeling" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Selecteer een keylayout voor gebruik. Dit installeert ook de Keylayout module en keymaps." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Thema's" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/ko.po =================================================================== --- branches/ErmaC/Enoch/package/po/ko.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/ko.po (revision 2457) @@ -4,9 +4,9 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-12-29 12:00+0000\n" "Last-Translator: Mill \n" "Language-Team: ko \n" @@ -265,7 +265,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "일반" @@ -382,7 +382,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "화면 해상도" @@ -1074,7 +1074,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1091,7 +1091,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1108,7 +1108,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1123,15 +1123,57 @@ "Set HDEF layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_title" +#: Resources/templates/Localizable.strings:261 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Set HDEF layout-it to 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Set HDEF layout-it to 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_title" -#: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 #, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1141,14 +1183,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1158,14 +1200,14 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1175,14 +1217,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1192,14 +1234,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1209,14 +1251,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1226,14 +1268,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1243,14 +1285,14 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1260,14 +1302,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1277,14 +1319,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1294,14 +1336,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1311,14 +1353,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1328,14 +1370,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1345,14 +1387,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1362,14 +1404,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1379,14 +1421,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1396,14 +1438,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1413,14 +1455,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1430,14 +1472,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1447,14 +1489,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1464,14 +1506,14 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1481,7 +1523,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1491,7 +1533,7 @@ "001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1501,7 +1543,7 @@ "002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1510,8 +1552,34 @@ "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"HADU Layout-it을 1로 설정:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"HADU Layout-it을 1로 설정:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1521,7 +1589,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1531,7 +1599,7 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1541,7 +1609,7 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1551,7 +1619,7 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1561,7 +1629,7 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1571,7 +1639,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1581,7 +1649,7 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1591,7 +1659,7 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1601,7 +1669,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1611,7 +1679,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1621,7 +1689,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1631,7 +1699,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1641,7 +1709,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1651,7 +1719,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1661,7 +1729,7 @@ "885 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1671,7 +1739,7 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1681,7 +1749,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1691,7 +1759,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1701,7 +1769,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1711,7 +1779,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1721,601 +1789,601 @@ "07BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660001 설정." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660002로 설정." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660003로 설정." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01620005 설정." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01620006 설정." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Intel HD4000 (데스크톱) 의 AAPL,ig-platform-id로 01620007 설정." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660008 설정." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660009로 설정." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 0166000b 설정." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (모바일) 의 AAPL,ig-platform-id로 00000604설정." #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (모바일) 의 AAPL,ig-platform-id로 0000060c 설정." #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (Mobile) AAPL, ig-platform-id를 00001604 로 설정." #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 0000160a로 설정." #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (모바일) 의 AAPL,ig-platform-id로 0000160c 설정." #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 00002604 로 설정." #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 0000260a 로 설정." #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 0600260c 로 설정." #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (모바일) 의 AAPL,ig-platform-id로 0000260d 설정." #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 02001604 로 설정." #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "Intel Haswell (데스크톱) 의 AAPL,ig-platform-id로 0300220d 설정." #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (모바일) AAPL 를 위해 ig-platform-id를 0500260a 로 설정." #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 0600260a 로 설정." #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (모바일) 의 AAPL,ig-platform-id로 0700260d설정." #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 0800260a로 설정." #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 08002e0a 로 설정." #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "아날로그 장치 AD2000b 를 위해 HDEF PinConfiguration 설정." #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "아날로그 장치 AD1981HD 를 위해 HDEF PinConfiguration 설정." #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "아날로그 장치 AD1988b 를 위해 HDEF PinConfiguration 설정." #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Realtek ALC888 을 위해 HDEF PinConfiguration 설정." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Realtek ALC1200 를 위해 HDEF PinConfiguration 설정." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "???를 위한 HDEF PinConfiguration 설정." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "그래픽활성화(GraphicsEnabler=Yes)" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "NVIDIA, AMD/ATI 또는 Intel GPU 기반의 그래픽카드를 자동 탐색하여 OS X에서 인식할 수 있게 잡아줍니다." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "HDMIAudio활성화(EnableHDMIAudio=Yes)" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "NVIDIA 또는 AMD/ATI를 위한 HDMI 오디오 Inject" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "커스텀ATi롬 사용(UseAtiROM=Yes)" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Extra폴더안에 있는 ATi롬 파일을 그래픽 카드 롬 대신 사용합니다." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "커스텀Nvidia롬 사용(UseNvidiaROM=Yes)" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Extra폴더안에 있는 Nvidia롬 파일을 그래픽 카드 롬 대신 사용합니다." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS 인식(VBIOS=Yes)" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "VBIOS를 device-properties에 넣어줌" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "인텔 GPU를 위한 GraphicsEnabler 자동 인식을 건너뜁니다." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "NVIDIA 기반의 GPUs GraphicsEnabler 자동 인식을 건너뜁니다." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "AMD/ATI 기반의 GPUs GraphicsEnabler 자동 인식을 건너뜁니다." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "nVidia 카드 기반 노트북에 백라이트 옵션을 활성화합니다." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "nVidia 또는 ATi 카드용 DualLink 옵션 활성화" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "부팅 로그 표시(상세 모드 aka, verbose mode)" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "선택 시 사용자가 카멜레온과 OS X 커널 메세지를 실시간으로 보게 합니다. 부팅 스크린이 비활성화되며 콘솔에 커널 로그를 남깁니다. 문제 해결에 필수 요소." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "단일 사용자 모드" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "문제 해결을 위한 옵션으로, 선택 시 OS X의 BSD/UNIX 커맨드 라인으로 부팅합니다." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "캐시 무시" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "선택 시 커널이 이전에 저장된 캐시를 무시하고 모든 파일들을 시스템 폴더로부터 로드 합니다." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "몇몇 시스템에서 볼 수 있는 'PCI configurationbegin'과 함께 나타나는 멈춤 현상을 고치는 대 쓰입니다. IOPCIFamily 소스 코드에서 볼 수 있는 0x2000은 kIOPCIConfiguratorPFM64 플래그입니다." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" @@ -2324,13 +2392,13 @@ "bcc9님이 찾아주셨습니다." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2342,25 +2410,25 @@ "bcc9님이 찾아주셨니다." #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "저전력 깨우기 끔(darkwake=0)" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Lion전용. 선택 시 잠자기 모드에서 깨어난 후 가끔 화면이 안 켜질 수 있는 '저전력 깨우기' 기능을 끕니다." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2374,25 +2442,25 @@ "기여: merklort, Rampage Dev." #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2402,265 +2470,265 @@ "bcc9가 게제한 글 참조(영문): http://www.insanelymac.com/forum/topic/282989-vtd0-fault-after-1082-google-hasnt-heard-of-it-any-help/#entry1867000" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "독일어 맥 키보드" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "독일어 맥 키보드를 위한 키보드 레이아웃을 사용합니다." #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "스페인어 맥 키보드" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "스페인어 맥 키보드를 위한 키보드 레이아웃을 사용합니다." #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "불어 맥 키보드" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "불어 맥 키보드를 위한 키보드 레이아웃을 사용합니다." #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "이탈리아어 맥 키보드" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "이탈리아어 맥 키보드를 위한 키보드 레이아웃을 사용합니다." #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "스웨덴어 맥 키보드" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "스웨덴어 맥 키보드를 위한 키보드 레이아웃을 사용합니다." #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "불어 PC 키보드" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "불어 PC 키보드를 위한 키보드 레이아웃을 사용합니다." #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Embedded 테마를 요구하는 카멜레온 버전을 제작할 때 사용되었던 새 기본 테마의 작고 심플한 버전입니다." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "카멜레온 v2.0 RC1에서 소개된 오리지널 기본 테마입니다." #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "카멜레온 v2.0 RC5에서 소개된 오리지널 기본 테마입니다." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "보기좋고 심플한 NoSmokingBandit님의 테마, 2009년 4월 작품." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "오디오" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "오디오와 관련된 선택 옵션들입니다." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "부팅 화면 조정" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "전체적인 부팅 화면을 커스터마이징할 수 있습니다." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "기본 기능 조정" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "부트로더에 포함된 기본 기능들을 켜고 끌 수 있습니다." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "커널 플래그(Kernel Flags)" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "OS X 부팅 시 사용되는 커널 플래그를 정합니다." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "전원 관리" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Intel SpeedStep과 전원 관리에 사용되는 데이터를 부트로더가 자동으로 찾아주는 옵션들입니다." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "부팅 시 사용될 한 해상도를 선택하거나 고르지 않으려면 선택 안함을 선택하세요." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "HDA 컨트롤러 사용을 위한 HDEF Layout ID 설정." #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "HDMi 컨트롤러 사용을 위한 HDAU Layout ID 설정." #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Intel HD4000 을 위한 one AAPL,ig-platform-id 설정" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "IIntel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "Intel HD5000 사용을 위해 AAPL,ig-platform-id 하나 설정" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "사용할 HDEF PinConfiguration 설정" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "그래픽" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "그래픽 카드들과 관련된 옵션들입니다" #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "키 레이아웃" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "" @@ -2668,13 +2736,13 @@ "선택 시 필요한 키 레이아웃 모듈과 키 맵을 추가로 설치합니다." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "테마" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/hr.po =================================================================== --- branches/ErmaC/Enoch/package/po/hr.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/hr.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-05-11 16:58-0000\n" "Last-Translator: Xpam.AmAdEuS \n" "Language-Team: hr \n" @@ -271,7 +271,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Standard" @@ -385,7 +385,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Resolution" @@ -1063,7 +1063,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1078,7 +1078,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1093,7 +1093,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1106,15 +1106,47 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 #, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1122,14 +1154,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1137,14 +1169,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1152,14 +1184,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1167,14 +1199,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1182,14 +1214,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1197,14 +1229,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1212,14 +1244,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1227,14 +1259,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1242,14 +1274,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1257,14 +1289,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1272,14 +1304,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1287,14 +1319,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1302,14 +1334,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1317,14 +1349,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1332,14 +1364,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1347,14 +1379,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1362,14 +1394,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1377,14 +1409,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1392,14 +1424,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1407,14 +1439,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1422,7 +1454,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1430,7 +1462,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1438,15 +1470,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1454,7 +1502,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1462,7 +1510,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1470,7 +1518,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1478,7 +1526,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1486,7 +1534,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1494,7 +1542,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1502,7 +1550,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1510,7 +1558,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1518,7 +1566,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1526,7 +1574,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1534,7 +1582,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1542,7 +1590,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1550,7 +1598,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1558,7 +1606,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1566,7 +1614,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1574,7 +1622,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1582,7 +1630,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1590,7 +1638,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1598,7 +1646,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1606,7 +1654,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1614,613 +1662,613 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Omogućuje opciju auto prepoznavanja NVIDIA/ATI/Intel baziranih grafičkih video kartica i upisuje pravilne informacije o istoj." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Uključuje UseAtiROM opciju." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Uključuje UseNvidiaROM opciju." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Uključuje VBIOS opciju" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Uključuje verbose prijavu i omogućuje vam da vidite poruke iz oba Chameleon i kernel OS X prilikom pokretanja. Osnova za rješavanje problema." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Opcija za rješavanje problema koja se koristi za podizanje OS X BSD / Unix komandnog reda." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Opcija koja nije potrebna za svakodnevno podizanje, ali može biti korisna ukoliko želite da OS X učita sve fajlove iz sustavnog direktorija, radije nego se oslanjajući na pre-izgrađenu predmemoriju." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Postavlja zastave npci = 0x2000 za Kernel Zastave" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Postavlja zastave npci = 0x3000 za Kernel Zastave" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2229,25 +2277,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Samo Lion. Isključuje 'low power wake' opciju koja ponekad ostavi crni zaslon poslije buđenja iz spavanja." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2257,25 +2305,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2283,277 +2331,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "German Mac Keyboard" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Korištenje tipkovnice za Njemačku Mac tipkovnicu" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spanish Mac Keyboard" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Korištenje tipkovnice za Španjolsku Mac tipkovnicu" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "French Mac Keyboard" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Korištenje tipkovnice za Francusku Mac tipkovnicu" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italian Mac Keyboard" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Korištenje tipkovnice za Italijansku Mac tipkovnicu" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Swedish Mac Keyboard" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Korištenje tipkovnice za Svedsku Mac tipkovnicu" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "French PC Keyboard" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Korištenje tipkovnice za Francusku PC tipkovnicu" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "French PC Keyboard" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Manja, jednostavnija verzija nove zadane teme koja se koristi prilikom izgradnje Chameleon-a koji zahtjeva ugrađenu temu. " #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Chameleonova prethodno zadana tema." #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Chameleonova trenutno zadana tema." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Predivna jednostavna tema od NoSmokingBandit iz Aprila 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Control Options" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Opcije za kontrolu rada Chameleona." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "General Options" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Izaberite od selekcije iz baze opcija." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Flags" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Izaberite od selekcije iz kernel zastava." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Power Management" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Odabir opcija koje se bave upravljanjem potrošnjom energije i SpeedStep-om." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Postavite jednu odluku za korištenje." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Odabir opcija koje se bave videom." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "KeyLayout" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Odaberite jednu keylayout koristiti. To će također instalirati Keylayout modul i mapa tipki." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Themes" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/pl.po =================================================================== --- branches/ErmaC/Enoch/package/po/pl.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/pl.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-05-11 17:11-0000\n" "Last-Translator: oswaldini \n" "Language-Team: pl \n" @@ -275,7 +275,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Chameleon Standard" @@ -389,7 +389,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Rozdzielczość" @@ -1067,7 +1067,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1082,7 +1082,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1097,7 +1097,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1110,15 +1110,47 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 #, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1126,14 +1158,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1141,14 +1173,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1156,14 +1188,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1171,14 +1203,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1186,14 +1218,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1201,14 +1233,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1216,14 +1248,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1231,14 +1263,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1246,14 +1278,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1261,14 +1293,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1276,14 +1308,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1291,14 +1323,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1306,14 +1338,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1321,14 +1353,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1336,14 +1368,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1351,14 +1383,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1366,14 +1398,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1381,14 +1413,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1396,14 +1428,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1411,14 +1443,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1426,7 +1458,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1434,7 +1466,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1442,15 +1474,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1458,7 +1506,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1466,7 +1514,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1474,7 +1522,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1482,7 +1530,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1490,7 +1538,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1498,7 +1546,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1506,7 +1554,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1514,7 +1562,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1522,7 +1570,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1530,7 +1578,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1538,7 +1586,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1546,7 +1594,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1554,7 +1602,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1562,7 +1610,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1570,7 +1618,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1578,7 +1626,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1586,7 +1634,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1594,7 +1642,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1602,7 +1650,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1610,7 +1658,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1618,613 +1666,613 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Włącza opcję automatycznego wykrywania GPU NVIDII i umieszczania odpowiednich informacji." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Włącz dźwięk po HDMI dla kart NVIDIA oraz AMD/ATI" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Włącza opcję UseAtiROM." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Włącza opcję UseNvidiaROM." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Włącza opcję VBIOS." #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode (-v)" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Włącza komunikaty diagnostyczne z kernela OS X oraz bootlodera. Niezbędne przy szukaniu problemów." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode (-s)" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Opcja wykorzystywana przy naprawianiu problemów, Uruchamia system w trybie poleceń BSD/Unix." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches (-f)" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Nie przydaje się przy każdym uruchamianiu, ale może być użyteczne jeśli chcesz, by system przeładował wszystkie pliki, zamiast ładowania cache." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Czasem naprawia błąd PCI Configuration Begin" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Czasem naprawia błąd PCI Configuration Begin" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2233,25 +2281,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Tylko dla OSX Lion. Wyłącza budzenie z niskim użyciem energii 'low power wake', które czasem zostawia czarny ekran po uśpieniu." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2261,25 +2309,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2287,277 +2335,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "German Mac Keyboard" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Użyj układu klawiatury: German Mac" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spanish Mac Keyboard" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Użyj układu klawiatury: Spanish Mac" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "French Mac Keyboard" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Użyj układu klawiatury: French Mac" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italian Mac Keyboard" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Użyj układu klawiatury: Italian Mac" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Swedish Mac Keyboard" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Użyj układu klawiatury: Swedish Mac" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "French PC Keyboard" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Użyj układu klawiatury: French PC" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Mniejsza, prosta wersja nowego tematu, domyślnie używana podczas tworzenia wersji Chameleona, który wymaga osadzonych tematów. " #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Poprzedni domyślny temat Chameleona." #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Nowy domyślny temat Chameleona." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Piękny, prosty temat autorstwa NoSmokingBandit z kwietnia 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Kontrola chameleona" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Ustawienia działania Chameleona." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Ogólne opcje" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Wybierz ogólne opcje." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Flagi kernela" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Wybierz flagi kernela." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Zarządzanie energią" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Wybierz ustawienia związane z zarządzaniem energią i SpeedSteepem." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Set one resolution to use." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Grafika" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Wybierz ustawienia związane z obsługą grafiki." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "KeyLayout" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Select one keylayout to use. This will also install the Keylayout module and keymaps." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Tematy" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/it.po =================================================================== --- branches/ErmaC/Enoch/package/po/it.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/it.po (revision 2457) @@ -4,18 +4,19 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-26 01:37+0200\n" -"PO-Revision-Date: 2013-08-28 15:46-0000\n" -"Last-Translator: \n" +"PO-Revision-Date: 2014-07-25 10:44+0000\n" +"Last-Translator: Marchrius \n" "Language-Team: it \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1368280430.0\n" +"X-POOTLE-MTIME: 1406285087.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -80,9 +81,9 @@ "evolved from the development of David Elliott's fake EFI implementation " "added to Apple's boot-132 project." msgstr "" -"Chameleon è la combinazione di diverse parti del boot loader.È basato sulle " -"modifiche di David Elliott sull'implementazione \"EFI\" al progetto della " -"Apple sul boot-132." +"Chameleon è un boot loader costruito utilizzando una combinazione di " +"componenti che si sono evoluti dallo sviluppo dell'implementazione del falso " +"EFI aggiunto al progetto boot-123 di Apple da parte di David Elliott." #. type: Content of:

#: Resources/templates/Description.html:20 @@ -227,7 +228,7 @@ #: Resources/templates/Localizable.strings:4 #, no-wrap msgid "Chameleon Bootloader Package" -msgstr "Installazione di Chameleon" +msgstr "Chameleon" #. type: "ERROR_BOOTVOL" #: Resources/templates/Localizable.strings:9 @@ -275,7 +276,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Standard" @@ -397,7 +398,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Risoluzioni" @@ -1089,7 +1090,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1106,7 +1107,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1123,7 +1124,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1138,15 +1139,49 @@ "Setta l'HDEF layout-it a 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "LayoutID=5" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Setta l'HDEF layout-it a 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "LayoutID=7" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Setta l'HDEF layout-it a 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1156,14 +1191,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1173,14 +1208,14 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1190,14 +1225,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1207,14 +1242,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1224,14 +1259,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1241,14 +1276,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1258,14 +1293,14 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1275,14 +1310,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1292,14 +1327,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1309,14 +1344,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1326,14 +1361,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1343,14 +1378,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1360,14 +1395,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1377,14 +1412,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1394,14 +1429,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1411,14 +1446,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1428,14 +1463,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1445,14 +1480,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1462,14 +1497,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1479,14 +1514,14 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1496,7 +1531,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1506,7 +1541,7 @@ "001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1516,7 +1551,7 @@ "002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1525,8 +1560,28 @@ "Setta l'HDAU layout-it a 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Setta l'HDAU layout-it a 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Setta l'HDAU layout-it a 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1536,7 +1591,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1546,7 +1601,7 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1556,7 +1611,7 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1566,7 +1621,7 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1576,7 +1631,7 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1586,7 +1641,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1596,7 +1651,7 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1606,7 +1661,7 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1616,7 +1671,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1626,7 +1681,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1636,7 +1691,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1646,7 +1701,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1656,7 +1711,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1666,7 +1721,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1676,7 +1731,7 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1686,7 +1741,7 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1696,7 +1751,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1706,7 +1761,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1716,7 +1771,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1726,7 +1781,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1736,613 +1791,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 01660000 per schede grafiche Intel HD4000 (Mobile)." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 01660001 per schede grafiche Intel HD4000 (Mobile)." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 01660002 per schede grafiche Intel HD4000 (Mobile)." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 01660003 per schede grafiche Intel HD4000 (Mobile)." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 01660004 per schede grafiche Intel HD4000 (Mobile)." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 01620005 per schede grafiche Intel HD4000 (Desktop)." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 01620006 per schede grafiche Intel HD4000 (Desktop)." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 01620007 per schede grafiche Intel HD4000 (Desktop)." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 01660008 per schede grafiche Intel HD4000 (Mobile)." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 01660009 per schede grafiche Intel HD4000 (Mobile)." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 0166000a per schede grafiche Intel HD4000 (Mobile)." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Imposta l'AAPL,ig-platform-id a 0166000b per schede grafiche Intel HD4000 (Mobile)." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 00000604 per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0000060c per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 00001604 per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0000160a per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0000160c per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 00002604 per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0000260a per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0600260c per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0000260d per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 02001604 per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0300220d per schede grafiche Intel Haswell (Desktop)." #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0500260a per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0600260a per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0700260d per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0800260a per schede grafiche Intel Haswell (Mobile)." #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 08002e0a per schede grafiche Intel Haswell (Mobile)." #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "Imposta il PinConfiguration (HDEF) per l'Analog Devices AD2000b." #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "Imposta il PinConfiguration (HDEF) per l'Analog Devices AD1981HD." #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "Imposta il PinConfiguration (HDEF) per l'Analog Devices AD1988b." #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Imposta il PinConfiguration (HDEF) per Realtek ALC888." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Imposta il PinConfiguration (HDEF) per Realtek ALC1200." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "Imposta il PinConfiguration per ???." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Aggiunge GraphicsEnabler=Yes al org.chameleon.Boot.plist, Questa opzione abilita il riconoscimento automatico delle schede grafiche iniettanto le informazioni corrette." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Aggiunge EnableHDMIAudio=Yes al org.chameleon.Boot.plist, Questa opzione abilita l'audio HDMi delle schede grafiche iniettanto le informazioni corrette." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Attiva opzione UseAtiROM." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Attiva opzione UseNvidiaROM." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Attiva opzione VBIOS" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "Salta il riconoscimento da perte del GraphicsEnabler per le schede Intel." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "Salta il riconoscimento da perte del GraphicsEnabler per le schede nVidia." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "Salta il riconoscimento da perte del GraphicsEnabler per le schede AMD/ATi." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "Abilita l'opzione Backlight per i laptop con schede nVidia." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Abilita l'opzione DualLink per schede nVidia e ATi." #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "Utilizza il nome classico per le schede nVidia che verrà visualizzato nel SystemProfiler (disabilitato di default)." #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Modalità Verbose (-v)" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Attiva il registro dettagliato e permette di vedere i menssaggi sia di Chameleon che del Kernel, durante l'avvio. Essenziale per la soluzione di problemi." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Modalitá Single User (-s)" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "È una opzione utilizzata per risolvere problemi utilizzata per avviare in command-line BSD/Unix di OS X." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignora Caches (-f)" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Non è una opzione necessaria per avviare, ma può essere utile se si desidera che OS X carichi tutti i file della cartella di sistema, al posto di andare in conflitto con la cache precostruita." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Imposta la flag npci=0x2000 per la key Kernel Flags." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Imposta la flag npci=0x3000 per la key Kernel Flags." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2354,25 +2409,25 @@ "Ringraziamenti a bcc9." #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Solo per Lion e superiori. Disabilita il 'low power wake' che a volte lascia lo schermo nero dopo il risveglio dallo Sleep/Stop." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2386,25 +2441,25 @@ "Crediti a meklort e Rampage Dev." #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." -msgstr "" +msgstr "Nella versione di anteprima per sviluppatori di Yosemite, i kext non opportunamente firmati non verranno caricati. Per poter usare tali kext durante lo sviluppo, questo controllo può essere disabilitato aggiungendo 'kext-dev-mode=1' come argomento per il boot." #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2414,277 +2469,277 @@ "Maggiori informaazioni (credit a bcc9) qui: http://www.insanelymac.com/forum/topic/282989-vtd0-fault-after-1082-google-hasnt-heard-of-it-any-help/#entry1867000" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "Mappatura tastiera Tedesca Mac" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Usa la mappatura della tastiera Tedesca per Mac" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Mappatura tastiera Spagnola Mac" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Usa la mappatura della tastiera Spagnola per Mac" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "Mappatura tastiera Francese Mac" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Usa la mappatura della tastiera Francese per Mac" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Mappatura tastiera Italiana Mac" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Usa la mappatura della tastiera Italiana per Mac" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Mappatura tastiera Svedese Mac" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Usa la mappatura della tastiera Svedese per Mac" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "Mappatura tastiera Francese PC" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Usa la mappatura della tastiera Francese per PC" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Tema integrato in chameleon (Standard ridotto)." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Il vecchio tema Standard di chameleon" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Il tema standard usato dal bootloader, aggiunto qui per essere personalizzato." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Un tema The Bullet by NoSmokingBandit." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Selezione di opzioni per l'audio." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Opzioni di Controllo" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Settaggi per controllare come Chameleon lavora." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Opzioni Generali" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Seleziona una opzione base." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Flags del Kernel" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Scegli le possibili flag del kernel." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Gestione Energetica" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Selezione di opzioni pre la gestione energetica e speedstep." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Imposta la risoluzione del tuo monitor." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "Scegli un layout-id dell'HDEF da usare per il controller HDA." #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "Scegli un layout-id dell'HDAU da usare per il controller HDMi." #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Scegli un AAPL,ig-platform-id da usare per la tua Intel HD 4000." #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap 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." #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "Setta il PinConfiguration per l'HDEF." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Selezione di opzioni per il video." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "Mappatura tastiera" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Seleziona la mappatura da utilizzare, Verrá anche installato il modulo Keylayout e le mappature tastiera." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Temi" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/hu.po =================================================================== --- branches/ErmaC/Enoch/package/po/hu.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/hu.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2012-04-11 02:08-0000\n" "Last-Translator: ErmaC\n" "Language-Team: hu \n" @@ -267,7 +267,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Alapértelmezett" @@ -379,7 +379,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Felbontás" @@ -1056,7 +1056,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1071,7 +1071,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1086,7 +1086,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1099,15 +1099,47 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 #, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1115,14 +1147,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1130,14 +1162,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1145,14 +1177,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1160,14 +1192,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1175,14 +1207,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1190,14 +1222,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1205,14 +1237,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1220,14 +1252,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1235,14 +1267,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1250,14 +1282,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1265,14 +1297,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1280,14 +1312,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1295,14 +1327,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1310,14 +1342,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1325,14 +1357,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1340,14 +1372,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1355,14 +1387,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1370,14 +1402,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1385,14 +1417,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1400,14 +1432,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1415,7 +1447,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1423,7 +1455,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1431,15 +1463,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1447,7 +1495,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1455,7 +1503,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1463,7 +1511,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1471,7 +1519,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1479,7 +1527,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1487,7 +1535,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1495,7 +1543,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1503,7 +1551,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1511,7 +1559,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1519,7 +1567,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1527,7 +1575,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1535,7 +1583,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1543,7 +1591,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1551,7 +1599,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1559,7 +1607,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1567,7 +1615,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1575,7 +1623,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1583,7 +1631,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1591,7 +1639,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1599,7 +1647,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1607,613 +1655,613 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "" #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Engedélyezi a UseAtiROM opciót." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Engedélyezi a UseNvidiaROM opciót." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Engedélyezi a VBIOS opciót." #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "A rendszert az alma logó helyett, karakteres módban indítja így figyelemmel kísérheted a rendszer betöltődését. Hibaelhárításnál hasznos." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User mód" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "A rendszert parancssoros módban indítja." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Gyorsítótárak kihagyása" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Ez egy nem mindennaposan használandó mód. A rendszer az összes rendszerfájlt úrjatölti. Akkor használd ha a géped nem indulna megfelelően." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Orvosolja néhány gépen a 'PCI configuration begin'-nél történő lefagyást. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Orvosolja néhány gépen a 'PCI configuration begin'-nél történő lefagyást. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2222,25 +2270,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Csak Lion-hoz. Kikapcsolja a 'low power wake' funkciót, ami néha üres, vagy fekete képernyőt okoz alvó módból való ébresztés után." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2250,25 +2298,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2276,277 +2324,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "Német Mac kiosztás" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Használd ezt a kiosztást a német Mac billentyűzetekhez" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spanyol Mac kiosztás" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Használd ezt a kiosztást a spanyol Mac billentyűzetekhez." #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "Francia Mac kiosztás" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Használd ezt a kiosztást a francia Mac billentyűzetekhez." #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Olasz Mac kiosztás" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Használd ezt a kiosztást a olasz Mac billentyűzetekhez." #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Svéd Mac kiosztás" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Használd ezt a kiosztást a svéd Mac billentyűzetekhez" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "Francia PC kiosztás" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Használd ezt a kiosztást a francia PC billentyűzetekhez." #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "" #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Örökölt" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Chameleon's eredeti témája a v2.0 RC1 verzióból" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Az alapértelmezett téma a v2.0 RC5 verzióhoz" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Egy egyszerű téma NoSmokingBandit-tól" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Vezérlés" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Beállítások a Chameleon vezerléséhez." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Általános beállítások" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Válaszd ki a szükségek alapbeállításokat." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel paraméterek" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Válaszd ki milyen paraméterekkel induljon a kernel" #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Energiagazdálkodás" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Beállítások az energiagazdálkodáshoz és a sebesség-lépcsőkhöz." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Jelölj ki egy a monitorodnak leginkább megfelelő felbontást." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Videóhoz kapcsolódó beállítások." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "Billentyűzet kiosztás" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Válassz ki egy kiosztást a használatához. Ez egyúttal telepíti a billentyűzet kiosztás modult is" #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Témák" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/chameleon.pot =================================================================== --- branches/ErmaC/Enoch/package/po/chameleon.pot (revision 2456) +++ branches/ErmaC/Enoch/package/po/chameleon.pot (revision 2457) @@ -6,8 +6,8 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2svn-r2384\n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"Project-Id-Version: Chameleon 2.3\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -248,7 +248,7 @@ msgstr "" #. type: "Default_title" -#: Resources/templates/Localizable.strings:25 Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:25 Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "" @@ -365,7 +365,7 @@ msgstr "" #. type: "Resolution_title" -#: Resources/templates/Localizable.strings:60 Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:60 Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "" @@ -1063,7 +1063,7 @@ msgstr "" #. type: "HDAULayoutIDx01_title" -#: Resources/templates/Localizable.strings:249 Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:249 Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "" @@ -1077,7 +1077,7 @@ msgstr "" #. type: "HDAULayoutIDx02_title" -#: Resources/templates/Localizable.strings:253 Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:253 Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "" @@ -1091,7 +1091,7 @@ msgstr "" #. type: "HDAULayoutIDx03_title" -#: Resources/templates/Localizable.strings:257 Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:257 Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "" @@ -1104,14 +1104,42 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_title" +#: Resources/templates/Localizable.strings:261 Resources/templates/Localizable.strings:367 +#, no-wrap +msgid "LayoutID=5" +msgstr "" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_title" -#: Resources/templates/Localizable.strings:261 Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:269 Resources/templates/Localizable.strings:375 #, no-wrap msgid "LayoutID=12" msgstr "" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1119,13 +1147,13 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1133,13 +1161,13 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1147,13 +1175,13 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1161,13 +1189,13 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1175,13 +1203,13 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1189,13 +1217,13 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1203,13 +1231,13 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1217,13 +1245,13 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1231,13 +1259,13 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1245,13 +1273,13 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1259,13 +1287,13 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1273,13 +1301,13 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1287,13 +1315,13 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1301,13 +1329,13 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1315,13 +1343,13 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1329,13 +1357,13 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1343,13 +1371,13 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1357,13 +1385,13 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1371,13 +1399,13 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1385,13 +1413,13 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1399,7 +1427,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1407,7 +1435,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1415,15 +1443,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1431,7 +1475,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1439,7 +1483,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1447,7 +1491,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1455,7 +1499,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1463,7 +1507,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1471,7 +1515,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1479,7 +1523,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1487,7 +1531,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1495,7 +1539,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1503,7 +1547,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1511,7 +1555,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1519,7 +1563,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1527,7 +1571,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1535,7 +1579,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1543,7 +1587,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1551,7 +1595,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1559,7 +1603,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1567,7 +1611,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1575,7 +1619,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1583,7 +1627,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1591,421 +1635,421 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "" "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and " @@ -2013,133 +2057,133 @@ msgstr "" #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "" #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "" #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "" "Turns on verbose logging and allows you to see messages from both Chameleon " @@ -2147,25 +2191,25 @@ msgstr "" #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "" #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "" "Not an option that's needed for everyday booting, but it can be useful if " @@ -2174,13 +2218,13 @@ msgstr "" #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "" "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 " @@ -2188,13 +2232,13 @@ msgstr "" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "" "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 " @@ -2202,13 +2246,13 @@ msgstr "" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some " @@ -2218,13 +2262,13 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "" "Lion only. Disables the 'low power wake' feature which can sometimes leave " @@ -2232,13 +2276,13 @@ msgstr "" #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you " @@ -2249,13 +2293,13 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "" "In Yosemite Developer Previews, unsigned or improperly signed kexts will not " @@ -2264,13 +2308,13 @@ msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx " @@ -2280,85 +2324,85 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "" "A smaller simple version of the new default theme used when building a " @@ -2366,181 +2410,181 @@ msgstr "" #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "" #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "" #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "" #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "" #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "" #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "" "Select one keylayout to use. This will also install the Keylayout module and " @@ -2548,13 +2592,13 @@ msgstr "" #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/ro.po =================================================================== --- branches/ErmaC/Enoch/package/po/ro.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/ro.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2014-06-25 23:55+0000\n" "Last-Translator: arsradu \n" "Language-Team: ro \n" @@ -266,7 +266,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Standard" @@ -387,7 +387,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Rezolutie" @@ -1081,7 +1081,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1098,7 +1098,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1115,7 +1115,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1130,15 +1130,57 @@ "Seteaza HDEF layout-it la 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_title" +#: Resources/templates/Localizable.strings:261 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Seteaza HDEF layout-it la 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Seteaza HDEF layout-it la 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_title" -#: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 #, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1148,14 +1190,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1165,14 +1207,14 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1182,14 +1224,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1199,14 +1241,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1216,14 +1258,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1233,14 +1275,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1250,14 +1292,14 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1267,14 +1309,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1284,14 +1326,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1301,14 +1343,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1318,14 +1360,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1335,14 +1377,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1352,14 +1394,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1369,14 +1411,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1386,14 +1428,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1403,14 +1445,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1420,14 +1462,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1437,14 +1479,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1454,14 +1496,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1471,14 +1513,14 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1488,7 +1530,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1498,7 +1540,7 @@ "001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1508,7 +1550,7 @@ "002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1517,8 +1559,34 @@ "Seteaza HDAU layout-it la 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Seteaza HDAU layout-it la 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Seteaza HDAU layout-it la 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1528,7 +1596,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1538,7 +1606,7 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1548,7 +1616,7 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1558,7 +1626,7 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1568,7 +1636,7 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1578,7 +1646,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1588,7 +1656,7 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1598,7 +1666,7 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1608,7 +1676,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1618,7 +1686,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1628,7 +1696,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1638,7 +1706,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1648,7 +1716,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1658,7 +1726,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1668,7 +1736,7 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1678,7 +1746,7 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1688,7 +1756,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1698,7 +1766,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1708,7 +1776,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1718,7 +1786,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1728,613 +1796,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Seteaza 01660000 pentru Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Seteaza 01660001 pentru Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Seteaza 01660002 pentru Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Seteaza 01660003 pentru Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Seteaza 01660004 pentru Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Seteaza 01620005 pentru Intel HD4000 (Desktop) AAPL,ig-platform-id." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Seteaza 01620006 pentru Intel HD4000 (Desktop) AAPL,ig-platform-id." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Seteaza 01620007 pentru Intel HD4000 (Desktop) AAPL,ig-platform-id." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Seteaza 01660008 pentru Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Seteaza 01660009 pentru Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Seteaza 0166000a pentru Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Seteaza 0166000b pentru Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 00000604 pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 0000060c pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 00001604 pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 0000160a pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 0000160c pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 00002604 pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 0000260a pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 0600260c pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 0000260d pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 02001604 pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "Seteaza 0300220d pentru Intel Haswell (Desktop) AAPL,ig-platform-id." #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 0500260a pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 0600260a pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 0700260d pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 0800260a pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Seteaza 08002e0a pentru Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "Seteaza HDEF PinConfiguration pentru Analog Devices AD2000b." #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "Seteaza HDEF PinConfiguration pentru Analog Devices AD1981HD." #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "Seteaza HDEF PinConfiguration pentru Analog Devices AD1988b." #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Seteaza HDEF PinConfiguration pentru Realtek ALC888." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Seteaza HDEF PinConfiguration pentru Realtek ALC1200." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "Seteaza HDEF PinConfiguration pentru ???." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Activeaza auto-detectarea placii video nVidia, AMD/ATI pe Intel și injectarea proprietatiilor." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Injecteaza HDMi audio pentru NVIDIA sau AMD/ATI." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Activeaza optiuniile UseAtiROM." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Activeaza optiuniile UseNvidiaROM." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Activeaza optiunea VBIOS" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "Sare peste auto-detectia GraphicsEnabler pentru placile video bazate pe chipset Intel." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "Sare peste auto-detectia GraphicsEnabler pentru placile video bazate pe chipset NVIDIA." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "Sare peste auto-detectia GraphicsEnabler pentru placile video bazate pe chipset AMD/ATI." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "Permite optiuni de iluminare pentru laptop-uri cu placi video nVidia." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Permite optiuni DualLink pentru placile video nVidia si ATI." #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Modul Verbose" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Activeaza afisarea de informatii detalitate in timpul procesului de boot, optiune vitala pentru depistarea problemelor." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Optiune pentru depistare a problemelor, care porneste direct in consola BSD/UNIX a sistemului OS X." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "O optiune rar folosita, dar practica in cazul in care se doreste pornirea sistemului cu toate fisierele si ignorand cache-uriile prezente." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Pentru rezolvarea blocarii la 'PCI configuration begin' pe unele sisteme. 0x2000 este flagul kIOPCIConfiguratorPFM64, precum este prezentat in codul sursa IOPCIFamily." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Pentru rezolvarea blocarii la 'PCI configuration begin' pe unele sisteme. 0x3000 este flagul kIOPCIConfiguratorPFM64, precum este prezentat in codul sursa IOPCIFamily." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2346,25 +2414,25 @@ "Credite lui bcc9." #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Pentru Lion doar, dezactiveaza modul de revenire 'low power' care uneori lasa ecranul negru." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2378,25 +2446,25 @@ "Credite lui meklort si Rampage Dev." #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2404,277 +2472,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "German Mac Keyboard" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Tastatura MAC in limba Germana" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spanish Mac Keyboard" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Tastatura MAC in limba Spaniola" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "French Mac Keyboard" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Tastatura MAC in limba Franceza" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italian Mac Keyboard" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Tastatura MAC in limba Italiana" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Swedish Mac Keyboard" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Tastatura MAC in limba Suedeza" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "French PC Keyboard" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Tastatura PC in limba Franceza" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "O versiune minimala a temei inregrate in chameleon." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Tema originala Chameleon introdusa in versiunea v2.0 RC1" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Tema originala Chameleon introdusa in versiunea v2.0 RC5" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "O tema simpla creata de NoSmokingBandit din Aprilie 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "O selectie de optiuni care au de aface cu functionarea audio." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Optiuni pentru control" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Optiuni pentru a controla modul de functionare a bootloaderului Chameleon." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Optiuni Generale" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Alegeti din o gama de optiuni de baza." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Flag-uri pentru kernel" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Alegeti din o gama de flag-uri pentru kernel." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Management al energiei" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "O selectie de optiuni care au de aface cu speedstep si consumul de energie." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Setati o rezolutie implicita." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "Setati o rezolutie implicita." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "O selectie de optiuni care au de aface cu functionarea video." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "Tastatura" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Selectati o limba a tastaturii, aceasta va instala si modulul pentru diverse limbi." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Teme" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/ca.po =================================================================== --- branches/ErmaC/Enoch/package/po/ca.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/ca.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-12-29 12:16+0000\n" "Last-Translator: ErmaC \n" "Language-Team: ca \n" @@ -277,7 +277,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Standard" @@ -389,7 +389,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Resolució" @@ -1065,7 +1065,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1080,7 +1080,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1095,7 +1095,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1108,15 +1108,47 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 #, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1124,14 +1156,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1139,14 +1171,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1154,14 +1186,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1169,14 +1201,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1184,14 +1216,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1199,14 +1231,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1214,14 +1246,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1229,14 +1261,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1244,14 +1276,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1259,14 +1291,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1274,14 +1306,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1289,14 +1321,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1304,14 +1336,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1319,14 +1351,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1334,14 +1366,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1349,14 +1381,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1364,14 +1396,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1379,14 +1411,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1394,14 +1426,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1409,14 +1441,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1424,7 +1456,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1432,7 +1464,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1440,15 +1472,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1456,7 +1504,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1464,7 +1512,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1472,7 +1520,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1480,7 +1528,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1488,7 +1536,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1496,7 +1544,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1504,7 +1552,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1512,7 +1560,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1520,7 +1568,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1528,7 +1576,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1536,7 +1584,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1544,7 +1592,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1552,7 +1600,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1560,7 +1608,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1568,7 +1616,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1576,7 +1624,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1584,7 +1632,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1592,7 +1640,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1600,7 +1648,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1608,7 +1656,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1616,613 +1664,613 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Activa l'opció per autodetectar targetes gràfiques NVIDIA/ATI/Intel i injectar l´informació correcta." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Activa les opcions UseAtiROM." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Activa les opcions UseNvidiaROM." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Activa les opcions VBIOS." #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Activa l'arrencada en manera verbose, que permet llegir els missatges que tant chameleon com el kernel d'OS X mostren durant el procés d'arrencada. Funció essencial per resoldre problemes." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Una opció usada per arrencar en la manera CLI (línia de comandos) BSD/Unix d'OS X." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Aquesta no és una opció que es faci servir tots els dies, però pot ser útil perquè OS X carregui tots els arxius des de les seves carpetes de sistema, en lloc de recolzar-se en els seus cachés." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Per evitar que el sistema es quedi parat mostrant 'PCI configuration begin' en alguns sistemes. 0x2000 és el flag kIOPCIConfiguratorPFM64, com es pot veure en el codi font de IOPCIFamily." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Per evitar que el sistema es quedi parat mostrant 'PCI configuration begin' en alguns sistemes. 0x3000 és el flag kIOPCIConfiguratorPFM64, com es pot veure en el codi font de IOPCIFamily." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2231,25 +2279,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Només per Lion. Desactiva la característica 'low power wake' que en ocasions fa que el monitor es quedi en negre després de despertar del repòs." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2259,25 +2307,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2285,277 +2333,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "German Mac Keyboard" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Fer servir el mapa de teclat per a un teclat Mac Alemany" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spanish Mac Keyboard" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Fer servir el mapa de teclat per a un teclat Mac espanyol" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "French Mac Keyboard" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Fer servir el mapa de teclat per a un teclat Mac francès" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italian Mac Keyboard" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Fer servir el mapa de teclat per a un teclat Mac italià" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Swedish Mac Keyboard" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Fer servir el mapa de teclat per a un teclat Mac suec" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "French PC Keyboard" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Fer servir el mapa de teclat per a un teclat PC francès" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Una versió reduïda i simplificada del nou theme per defecte, utilitzat com a theme embegut." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Theme original predeterminat, utilitzat en la versió v2.0 RC1" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Theme original predeterminat, utilitzat en la versió v2.0 RC5" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Un theme deliciosament simple creat per NoSmokingBandit a l´Abril de 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Una selecció d'opcions relatives al audio." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Opcions de Control" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Ajustos de control sobre el funcionament de Chameleon." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "General Options" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Tria a partir d'una selecció d'opcions." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Flags" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Tria els kernel flags per a l'arrencada." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Gestió d'energia" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Opcions relatives a la gestió d'energia i el speedstep." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Estableix la resolució del teu monitor" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Una selecció d'opcions relatives al video." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "KeyLayout" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Selecciona un mapa de teclat, en funció de l'idioma." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Themes" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/pt.po =================================================================== --- branches/ErmaC/Enoch/package/po/pt.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/pt.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2014-01-21 15:36+0000\n" "Last-Translator: artur_pt \n" "Language-Team: pt-PT \n" @@ -278,7 +278,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Padrão" @@ -399,7 +399,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Resolução" @@ -1091,7 +1091,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1108,7 +1108,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1125,7 +1125,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1140,15 +1140,57 @@ "Injeta HDEF layout-it para 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_title" +#: Resources/templates/Localizable.strings:261 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Configura HDEF layout-id para 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Configura HDEF layout-id para 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_title" -#: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 #, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1158,14 +1200,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1175,14 +1217,14 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1192,14 +1234,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1209,14 +1251,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1226,14 +1268,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1243,14 +1285,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1260,14 +1302,14 @@ "183 (0x83, 0x01, 0x00, 0x00)" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1277,14 +1319,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1294,14 +1336,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1311,14 +1353,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1328,14 +1370,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1345,14 +1387,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1362,14 +1404,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1379,14 +1421,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1396,14 +1438,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1413,14 +1455,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1430,14 +1472,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1447,14 +1489,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1464,14 +1506,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1481,14 +1523,14 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1498,7 +1540,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1508,7 +1550,7 @@ "001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1518,7 +1560,7 @@ "002 (0x02, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1527,8 +1569,34 @@ "Injeta HDAU layout-it para 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"injeta HDAU layout-it para 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"injeta HDAU layout-it para 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1538,7 +1606,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1548,7 +1616,7 @@ "020 (0x20, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1558,7 +1626,7 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1568,7 +1636,7 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1578,7 +1646,7 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1588,7 +1656,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1598,7 +1666,7 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1608,7 +1676,7 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1618,7 +1686,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1628,7 +1696,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1638,7 +1706,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1648,7 +1716,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1658,7 +1726,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1668,7 +1736,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1678,7 +1746,7 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1688,7 +1756,7 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1698,7 +1766,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1708,7 +1776,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1718,7 +1786,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1728,7 +1796,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1738,613 +1806,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Injeta 01660001 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Injeta 01660002 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Injeta 01660003 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "injeta 01620005 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Injeta 01620006 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Injeta 01620007 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Injeta 01660008 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Injeta 01660009 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Injeta 0166000b para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 00000604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 0000060c para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 00001604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 0000160a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 0000160c para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 00002604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 0000260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 0600260c para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 0000260d para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 02001604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "injeta 0300220d para Intel Haswell (Desktop) AAPL,ig-platform-id." #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 0500260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 0600260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 0700260d para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 0800260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Injeta 08002e0a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "Injeta HDEF PinConfiguration para Analog Devices AD2000b." #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "Injeta HDEF PinConfiguration para Analog Devices AD1981HD." #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "Injeta HDEF PinConfiguration para Dispositivos Analogicos AD1988b." #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Injeta HDEF PinConfiguration para Realtek ALC888." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Injeta HDEF PinConfiguration para Realtek ALC1200." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "Injeta HDEF PinConfiguration para ???." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Ativa a opção que auto detecta placas de vídeo e injecta as informações corretas." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Injeta o Audio HDMI para Placas NVIDIA ou AMD/ATI." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Ativa a opção UseAtiROM." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Ativa a opção UseNvidiaROM." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Ativa a opção VBIOS." #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "Saltar GraphicsEnbaler autodetectado para GPUs baseados em Intel." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "Saltar GraphicsEnabler autodectado para GPUs Baseadas em NVIDIA." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "Saltar GraphicsEnabler autodetectado para GPUs baseadas em AMD/ATI." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "Ativa opções Backlight para laptop com nVidia." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Ativa opções DualLink para nVidia e Ati. " #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Modo Verbose" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Ativa Modo Verbose, permite visualizar mensagens do Chameleon e do Kernel do OS X durante o boot. Essencial para detetar problemas." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Modo Single User" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Usado no boot para alcançar a linha de comandos do OS X's BSD/Unix para resolução de problemas." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignorar Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Usado para que o OS X carregue os ficheiros das suas pastas de sistema, em vez de usar as caches préviamente construidas." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Adiciona o parâmetro npci=0x2000 em Kernel Flags." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Adiciona o parâmetro npci=0x3000 em Kernel Flags." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2356,25 +2424,25 @@ "Créditos para bcc9." #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Só Lion. Desabilita 'low power wake' caracteristica que por vezes apresenta o écran negro após o computador acordar." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2388,25 +2456,25 @@ "Créditos da solução meklort e Rampage Dev." #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2416,277 +2484,277 @@ "Por bcc9 Info here: http://www.insanelymac.com/forum/topic/282989-vtd0-fault-after-1082-google-hasnt-heard-of-it-any-help/#entry1867000" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "Teclado Mac Alemão" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Usa o layout para teclado Mac Alemão." #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Teclado Mac Espanhol" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Usa o layout para teclado Mac Espanhol." #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "Teclado Mac Francês" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Usa o layout para teclado Mac Francês." #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Teclado Mac Italiano" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Usa o layout para teclado Mac Italiano." #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Teclado Mac Sueco" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Usa o layout para teclado Mac Sueco." #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "Teclado PC Francês" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Usa o layout para teclado PC Francês." #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Uma versão menor do novo tema padrão, usada nas versões do Chameleon com tema embutido." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Tema padrão anterior do Chameleon." #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Novo tema padrão do Chameleon." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "O tema Bullet por NoSmokingBandit" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Preferências de Audio." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Opções Controle" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Preferências de controle do Chameleon." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Opções Generalistas" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Escolha de seleção de opções básicas." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Flags" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Escolha de seleção de kernel flags." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Gestão Energia" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Seleção de opções relativas a gestão de energia e speedstep." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Configura a resolução do écran" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "Injeta um HDEF Layout ID para usar no seu controlador HDA." #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "Injeta um HDAU Layout ID para usar com seu controlador HDMi." #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Injeta um HDAU Layout ID para usar na sua Intel HD4000." #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "Injeta um HDAU Layout ID para usar na sua Intel HD5000." #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "Injeta um HDEF PinConfiguration para usar." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Preferências de Video." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "KeyLayout" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Select one keylayout to use. This will also install the Keylayout module and keymaps." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Temas" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/pt-BR.po =================================================================== --- branches/ErmaC/Enoch/package/po/pt-BR.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/pt-BR.po (revision 2457) @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" -"PO-Revision-Date: 2014-06-26 09:10+0000\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" +"PO-Revision-Date: 2014-10-22 21:23+0000\n" "Last-Translator: kyndder \n" "Language-Team: pt-BR \n" "Language: pt-BR\n" @@ -17,7 +17,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1403773857.0\n" +"X-POOTLE-MTIME: 1414013009.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -278,7 +278,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Padrão" @@ -399,7 +399,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Resolução" @@ -1091,7 +1091,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1108,7 +1108,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1125,7 +1125,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1140,15 +1140,49 @@ "Define HDEF layout-it para 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "LayoutID=5" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Define HDEF layout-id para 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "LayoutID=7" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Define HDEF layout-id para 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1158,14 +1192,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1175,14 +1209,14 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1192,14 +1226,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1209,14 +1243,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1226,14 +1260,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1243,14 +1277,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1260,14 +1294,14 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1277,14 +1311,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1294,14 +1328,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1311,14 +1345,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1328,14 +1362,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1345,14 +1379,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1362,14 +1396,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1379,14 +1413,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1396,14 +1430,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1413,14 +1447,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1430,14 +1464,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1447,14 +1481,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1464,14 +1498,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1481,14 +1515,14 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1498,7 +1532,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1508,7 +1542,7 @@ "001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1518,7 +1552,7 @@ "002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1527,8 +1561,28 @@ "Define HDAU layout-it para 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Define HDAU layout-id para 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Define HDAU layout-id para 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1538,7 +1592,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1548,7 +1602,7 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1558,7 +1612,7 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1568,7 +1622,7 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1578,7 +1632,7 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1588,7 +1642,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1598,7 +1652,7 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1608,7 +1662,7 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1618,7 +1672,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1628,7 +1682,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1638,7 +1692,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1648,7 +1702,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1658,7 +1712,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1668,7 +1722,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1678,7 +1732,7 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1688,7 +1742,7 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1698,7 +1752,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1708,7 +1762,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1718,7 +1772,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1728,7 +1782,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1738,614 +1792,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Define 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Define 01660001 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Define 01660002 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Define 01660003 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Define 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Define 01620005 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Define 01620006 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Define 01620007 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Define 01660008 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Define 01660009 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Define 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Define 0166000b para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 00000604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 0000060c para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 00001604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 0000160a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 0000160c para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 00002604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 0000260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 0600260c para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 0000260d para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 02001604 para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "Define 0300220d para Intel Haswell (Desktop) AAPL,ig-platform-id." #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 0500260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 0600260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 0700260d para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 0800260a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Define 08002e0a para Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "Define HDEF PinConfiguration para Analog Devices AD2000b." #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "Define HDEF PinConfiguration para Analog Devices AD1981HD." #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "Define HDEF PinConfiguration para Analog Devices AD1988b." #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Define HDEF PinConfiguration para Realtek ALC888." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Define HDEF PinConfiguration para Realtek ALC1200." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "Define HDEF PinConfiguration para ???." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Ativa a opção que auto detecta placas de vídeo NVIDIA, AMD/ATI ou Intel e injeta as informações corretas." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Injeta configurações de áudio HDMI para NVIDIA ou AMD/ATI." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Ativa a opção UseAtiROM." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Ativa a opção UseNvidiaROM." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Ativa a opção VBIOS." #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "Desativa autodetecção do GraphicsEnbaler para GPUs baseadas em Intel." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "Desativa autodetecção do GraphicsEnbaler para GPUs baseadas em NVIDIA." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "Desativa autodetecção do GraphicsEnbaler para GPUs baseadas em AMD/ATI." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "Ativa opções para o Backlight de Laptops com gráficos nVidia." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Ativa opções de DualLink para controladoras nVidia e ATI." #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." -msgstr "" -"Usa o nome clássico Nvidia no System Profiler (desabilitado por padrão)." +msgstr "Usa o nome clássico Nvidia no System Profiler (desabilitado por padrão)." #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Modo Verbose" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Ativa Modo Verbose, permite visualizar mensagens do Chameleon e do Kernel do OS X durante o boot. Essencial para detetar problemas." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Modo Single User" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Usado no boot para alcançar a linha de comandos do OS X's BSD/Unix para resolução de problemas." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignorar Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Usado para que o OS X carregue os ficheiros das suas pastas de sistema, em vez de usar as caches préviamente construidas." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Para solucionar o travamento na mensagem 'PCI configuration begin' que acontece em alguns sistemas. npci=0x2000 é a flag kIOPCIConfiguratorPFM64 existente no código-fonte do driver IOPCIFamily." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Para solucionar o travamento na mensagem 'PCI configuration begin' que acontece em alguns sistemas. npci=0x3000 é a flag kIOPCIConfiguratorPFM64 existente no código-fonte do driver IOPCIFamily." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2357,25 +2410,25 @@ "Findings credits to bcc9." #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Apenas para OSX Lion. Desabilita a opção 'low power wake' que pode deixar a tela preta depois de o computador acordar do repouso." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2389,13 +2442,13 @@ "Findings credits to meklort and Rampage Dev." #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" @@ -2404,13 +2457,13 @@ "verificação pode ser desabilitada adicionando o boot flag 'kext-dev-mode=1'." #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2420,277 +2473,277 @@ "More information by bcc9 here: http://www.insanelymac.com/forum/topic/282989-vtd0-fault-after-1082-google-hasnt-heard-of-it-any-help/#entry1867000" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "Teclado Mac Alemão" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Usa o layout para teclado Mac Alemão." #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Teclado Mac Espanhol" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Usa o layout para teclado Mac Espanhol." #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "Teclado Mac Francês" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Usa o layout para teclado Mac Francês." #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Teclado Mac Italiano" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Usa o layout para teclado Mac Italiano." #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Teclado Mac Sueco" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Usa o layout para teclado Mac Sueco." #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "Teclado PC Francês" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Usa o layout para teclado PC Francês." #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embarcado" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Uma versão menor do novo tema padrão usada na construção de versões do Chameleon que requerem tema embarcado." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Antigo" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Tema padrão original do Chameleon introduzido na versão 2.0RC1." #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Tema padrão do Chameleon introduzido na versão 2.0 RC5." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "O tema Bullet feito por NoSmokingBandit em Abril de 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Seleção de opções de audio." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Opções de Controle" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Preferências que controlam o funcionamento do Chameleon." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Opções Gerais" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Escolha a partir de uma seleção de opções básicas." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Opções do Kernel" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Escolha a partir de uma seleção de opções do kernel." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Gerenciamento de Energia" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Seleção de opções relativas a gestão de energia e a speedstep." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Define a resolução de tela a ser utilizada." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "Definir um ID do layout HDEF para usar com sua cotroladora HDA." #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "Definir um ID do layout HDAU para usar com sua cotroladora HDMI." #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Definir um AAPL,ig-platform-id para usar em sua Intel HD4000." #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "Definir um AAPL,ig-platform-id para usar em sua Intel HD5000." #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "Especifique um HDEF PinConfiguration para ser usado." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Vídeo" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Seleção de opções de vídeo." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "Leiaute de Teclado" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Seleciona um leiaute de teclado a ser utilizado. Também irá instalar o módulo Keylayot e mapas de teclas." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Temas" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/sr.po =================================================================== --- branches/ErmaC/Enoch/package/po/sr.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/sr.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-05-11 16:00-0000\n" "Last-Translator: ErmaC\n" "Language-Team: sr \n" @@ -271,7 +271,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Standard" @@ -383,7 +383,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Resolution" @@ -1061,7 +1061,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1076,7 +1076,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1091,7 +1091,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1104,15 +1104,47 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 #, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1120,14 +1152,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1135,14 +1167,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1150,14 +1182,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1165,14 +1197,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1180,14 +1212,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1195,14 +1227,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1210,14 +1242,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1225,14 +1257,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1240,14 +1272,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1255,14 +1287,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1270,14 +1302,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1285,14 +1317,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1300,14 +1332,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1315,14 +1347,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1330,14 +1362,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1345,14 +1377,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1360,14 +1392,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1375,14 +1407,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1390,14 +1422,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1405,14 +1437,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1420,7 +1452,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1428,7 +1460,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1436,15 +1468,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1452,7 +1500,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1460,7 +1508,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1468,7 +1516,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1476,7 +1524,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1484,7 +1532,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1492,7 +1540,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1500,7 +1548,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1508,7 +1556,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1516,7 +1564,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1524,7 +1572,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1532,7 +1580,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1540,7 +1588,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1548,7 +1596,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1556,7 +1604,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1564,7 +1612,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1572,7 +1620,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1580,7 +1628,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1588,7 +1636,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1596,7 +1644,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1604,7 +1652,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1612,613 +1660,613 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Omogućava opciju auto prepoznavanja NVIDIA/ATI/Intel baziranih grafičkih video kartica i upisuje pravilne informacije o istoj." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Uključuje UseAtiROM opciju." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Uključuje UseNvidiaROM opciju." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Uključuje VBIOS opciju" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Uključuje verbose prijavu i omogućava vam da vidite poruke iz oba Chameleon i kernel OS X prilikom pokretanja. Osnova za rešavanje problema." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Opcija za rješavanje problema koja se koristi za podizanje OS X BSD / Unix komandnog reda." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Opcija koja nije potrebna za svakodnevno podizanje, ali može biti korisna ukoliko želite da OS X učita sve fajlove iz sistemskog direktorija, radije nego se oslanjajući na pre-izgrađenu predmemoriju." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Postavlja zastave npci = 0x2000 za Kernel Zastave" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Postavlja zastave npci = 0x3000 za Kernel Zastave" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2227,25 +2275,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Samo Lion. Isključuje 'low power wake' opciju koja ponekad ostavi crni ekran posle buđenja iz spavanja." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2255,25 +2303,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2281,277 +2329,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "German Mac Keyboard" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Korištenje tastature za Njemačku Mac tastaturu" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spanish Mac Keyboard" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Korištenje tastature za Španjolsku Mac tastaturu" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "French Mac Keyboard" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Korištenje tastature za Francusku Mac tastaturu" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italian Mac Keyboard" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Korištenje tastature za Italijansku Mac tastaturu" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Swedish Mac Keyboard" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Korištenje tastature za Svedsku Mac tastaturu" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "French PC Keyboard" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Korištenje tastature za Francusku PC tastaturu" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Manja, jednostavnija verzija nove podrazumevane teme koja se koristi prilikom izgradnje Chameleon-a koji zahteva ugrađenu temu. " #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Chameleonova prethodno zadata tema." #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Chameleonova trenutno zadata tema." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Predivna jednostavna tema od NoSmokingBandit iz Aprila 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Izbor opcija koje se bave audiom." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Control Options" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Opcije za kontrolu rada Chameleona." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "General Options" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Izaberite od selekcije iz baze opcija." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Flags" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Izaberite od selekcije iz kernel zastava." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Power Management" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Izbor opcija koje se bave upravljanjem potrošnjom energije i SpeedStep-om." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Set one resolution to use." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Izbor opcija koje se bave videom." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "KeyLayout" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Select one keylayout to use. This will also install the Keylayout module and keymaps." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Themes" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/fa.po =================================================================== --- branches/ErmaC/Enoch/package/po/fa.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/fa.po (revision 2457) @@ -5,8 +5,8 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.1svn-r1870\n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"Project-Id-Version: Chameleon 2.3\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2014-01-05 13:57+0000\n" "Last-Translator: minlite \n" "Language-Team: LANGUAGE \n" @@ -268,7 +268,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "استاندارد" @@ -377,7 +377,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "تفکیک پذیری" @@ -1054,7 +1054,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "" @@ -1069,7 +1069,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "" @@ -1084,7 +1084,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "" @@ -1097,15 +1097,45 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1113,14 +1143,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1128,14 +1158,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1143,14 +1173,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1158,14 +1188,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1173,14 +1203,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1188,14 +1218,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1203,14 +1233,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1218,14 +1248,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1233,14 +1263,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1248,14 +1278,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1263,14 +1293,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1278,14 +1308,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1293,14 +1323,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1308,14 +1338,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1323,14 +1353,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1338,14 +1368,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1353,14 +1383,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1368,14 +1398,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1383,14 +1413,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1398,14 +1428,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1413,7 +1443,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1421,7 +1451,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1429,15 +1459,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1445,7 +1491,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1453,7 +1499,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1461,7 +1507,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1469,7 +1515,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1477,7 +1523,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1485,7 +1531,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1493,7 +1539,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1501,7 +1547,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1509,7 +1555,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1517,7 +1563,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1525,7 +1571,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1533,7 +1579,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1541,7 +1587,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1549,7 +1595,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1557,7 +1603,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1565,7 +1611,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1573,7 +1619,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1581,7 +1627,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1589,7 +1635,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1597,7 +1643,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1605,613 +1651,613 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "" #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "" #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "" #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "" #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "" #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "" #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2220,25 +2266,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "" #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2248,25 +2294,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2274,277 +2320,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "" #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "" #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "" #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "" #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "" #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "" #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "" #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/ru.po =================================================================== --- branches/ErmaC/Enoch/package/po/ru.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/ru.po (revision 2457) @@ -5,20 +5,20 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" -"PO-Revision-Date: 2013-06-27 21:13+0000\n" -"Last-Translator: ltodoto \n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" +"PO-Revision-Date: 2014-10-22 21:21+0000\n" +"Last-Translator: SergeNu \n" "Language-Team: ru \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1372367628.0\n" +"X-POOTLE-MTIME: 1414012891.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -82,15 +82,15 @@ "evolved from the development of David Elliott's fake EFI implementation " "added to Apple's boot-132 project." msgstr "" -"Chameleon — начальный загрузчик, построенный на основе сочетания " -"компонентов, разработка которых была начата в рамках проекта Дэвида Эллиотта " -"(David Elliott) по эмуляции прикладного интерфейса EFI в качестве дополнения " -"к оригинальному проекту загрузчика Apple boot-132." +"Chameleon - загрузчик, построенный на основе сочетания компонентов, " +"разработка которых была начата в рамках проекта Дэвида Эллиотта (David " +"Elliott) по эмуляции прикладного интерфейса EFI в качестве дополнения к " +"оригинальному проекту загрузчика Apple boot-132." #. type: Content of:

#: Resources/templates/Description.html:20 msgid "Chameleon v2 is extended with many features. For example:" -msgstr "Chameleon v2 обладает широкими возможностями. В том числе:" +msgstr "Chameleon v2 обладает широкими возможностями. Например:" #. type: Content of:

#: Resources/templates/Description.html:22 @@ -260,7 +260,7 @@ #: Resources/templates/Localizable.strings:19 #, no-wrap msgid "Chameleon Bootloader" -msgstr "Начальный загрузчик Chameleon" +msgstr "Загрузчик Chameleon" #. type: "Chameleon_description" #: Resources/templates/Localizable.strings:20 @@ -278,7 +278,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Обыкновенный" @@ -287,7 +287,10 @@ #: Resources/templates/Localizable.strings:26 #, no-wrap msgid "Install Chameleon's files to the root of the selected partition using either boot0 or boot0md depending on your system without destroying any existing Windows installation if you have one." -msgstr "Обычная установка Chameleon" +msgstr "" +"Установка файлов Chameleon в корень выбранного раздела используя boot0 или " +"boot0md и основываясь на вашей системе, без уничтожения любой установленной " +"копии Windows, если таковая имеется." #. type: "noboot_title" #: Resources/templates/Localizable.strings:28 @@ -390,7 +393,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Разрешение" @@ -1067,7 +1070,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1082,7 +1085,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1097,7 +1100,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1110,15 +1113,49 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "Установить 3 карту HDEF:003 (0x03, 0x00, 0x00, 0x00)." -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "LayoutID=5" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Установить HDEF и расположить в 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "LayoutID=7" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Установить HDEF и расположить в 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1126,14 +1163,14 @@ msgstr "Установить 12 карту HDEF:00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1141,14 +1178,14 @@ msgstr "Установить 32 карту HDEF:020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1156,14 +1193,14 @@ msgstr "Установить 40 карту HDEF:028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1171,14 +1208,14 @@ msgstr "Установить 65 карту HDEF:041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1188,14 +1225,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1203,14 +1240,14 @@ msgstr "Установить значение HDEF layout-it равным 269" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1218,14 +1255,14 @@ msgstr "Установить значение HDEF layout-it равным 387" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1233,14 +1270,14 @@ msgstr "Установить значение HDEF layout-it равным 388" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1248,14 +1285,14 @@ msgstr "Установить значение HDEF layout-it равным 389" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1263,14 +1300,14 @@ msgstr "Установить значение HDEF layout-it равным 392" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1278,14 +1315,14 @@ msgstr "Установить значение HDEF layout-it равным 398" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1293,14 +1330,14 @@ msgstr "Установить значение HDEF layout-it равным 662" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1308,14 +1345,14 @@ msgstr "Установить значение HDEF layout-it равным 663" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1323,14 +1360,14 @@ msgstr "Установить значение HDEF layout-it равным 664" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1338,14 +1375,14 @@ msgstr "Установить значение HDEF layout-it равным 885" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1353,14 +1390,14 @@ msgstr "Установить значение HDEF layout-it равным 887" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1368,14 +1405,14 @@ msgstr "Установить значение HDEF layout-it равным 888" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1383,14 +1420,14 @@ msgstr "Установить значение HDEF layout-it равным 889" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1398,14 +1435,14 @@ msgstr "Установить значение HDEF layout-it равным 892" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1413,94 +1450,134 @@ msgstr "Установить значение HDEF layout-it равным 898" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" +"Установить HDEF и расположить в 1981:\n" +"7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" "001 (0x01, 0x00, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" "002 (0x02, 0x00, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 2:\n" +"002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 3:\n" +"003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Установить HDAU и расположить в 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Установить HDAU и расположить в 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" "00C (0x0C, 0x00, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 12:\n" +"00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" "020 (0x20, 0x00, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 32:\n" +"020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" "028 (0x28, 0x00, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 40:\n" +"028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" "041 (0x41, 0x00, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 65:\n" +"041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" "063 (0x63, 0x00, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 99:\n" +"063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" "10D (0x0D, 0x01, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 269:\n" +"10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1508,7 +1585,7 @@ msgstr "Установить значение HDAU layout-it равным 387" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1516,7 +1593,7 @@ msgstr "Установить значение HDAU layout-it равным 388" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1524,7 +1601,7 @@ msgstr "Установить значение HDAU layout-it равным 389" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1532,7 +1609,7 @@ msgstr "Установить значение HDAU layout-it равным 392" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1540,7 +1617,7 @@ msgstr "Установить значение HDAU layout-it равным 398" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1548,7 +1625,7 @@ msgstr "Установить значение HDAU layout-it равным 662" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1556,7 +1633,7 @@ msgstr "Установить значение HDAU layout-it равным 663" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1564,7 +1641,7 @@ msgstr "Установить значение HDAU layout-it равным 664" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1572,661 +1649,675 @@ msgstr "Установить значение HDAU layout-it равным 885" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" "377 (0x77, 0x03, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 887:\n" +"377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" "378 (0x78, 0x03, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 888:\n" +"378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" "379 (0x79, 0x03, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 889:\n" +"379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" "37C (0x7C, 0x03, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 892:\n" +"37C (0x0C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" "382 (0x82, 0x03, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 898:\n" +"382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" +"Установить HDAU и расположить в 1981:\n" +"7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Установить 01660000 в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Установить 01660001 в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Установить 01660002 в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Установить 01660003 в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Установить 01660004 в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Установить 01620005 в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Установить 01620006 в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Установить 01620007 в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Установить 01660008 в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Установить 01660009 в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Установить 0166000a в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Установить 0166000b в качестве Intel HD4000 (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 00000604 в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 0166000c в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 00001604 в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 0000160a в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 0000160c в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 00002604 в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 0000260a в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 0600260c в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 0000260d в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 02001604 в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "Установить 0300220d в качестве Intel Haswell (Desktop) AAPL,ig-platform-id." #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 0500260a в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 0600260a в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 0700260d в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 0800260a в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Установить 08002e0a в качестве Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "Установить HDEF PinConfiguration для Analog Devices AD2000b." #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "Установить HDEF PinConfiguration для Analog Devices AD1981HD." #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "Установить HDEF PinConfiguration для Analog Devices AD198b." #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Установить HDEF PinConfiguration для Realtek ALC888." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Установить HDEF PinConfiguration для Realtek ALC1200." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "Установить HDEF PinConfiguration для ???." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Включение автоматического обнаружения и корректировки данных EFI для графических карт nVidia/ATI/Intel." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Включение возможности обнаружения аудио-выхода HDMI для видеокарт nVidia или AMD/ATI" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Включение параметра UseAtiROM." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Включение параметра UseNvidiaROM." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Включение параметра VBIOS." #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "Пропустить автоматическое обнаружение GraphicsEnabler для графических процессоров Intel." #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "Пропустить автоматическое обнаружение GraphicsEnabler для графических процессоров nVidia." #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "Пропустить автоматическое обнаружение GraphicsEnabler для графических процессоров AMD/ATi." #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "Включение настройки подсветки для ноутбуков с графическими процессорами nVidia." #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Включение DualLink для графических процессоров nVidia и ATi." #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" +"Использовать классическое название Nvidia для профиля системы (по-умолчанию " +"отключено)." #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Информационный режим" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Включить ведение журнала загрузки. Необходимо для устранения проблем." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Однопользовательский режим" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Используется в качестве безопасного режима для устранения неполадок. (Вызов текстовой консоли BSD)" #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Не использовать кеш системных модулей" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Пропуск загрузки расширений ядра из системного кэша (загрузка всех расширений ядра из файловой системы)." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Предназначено для предотвращения зависания на строке 'PCI configuration begin' на некоторых системах. 0x2000 является одним из возможных значений kIOPCIConfiguratorPFM64, согласно исходному коду IOPCIFamily." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Предназначено для предотвращения зависания на строке 'PCI configuration begin' на некоторых системах. 0x3000 является одним из возможных значений kIOPCIConfiguratorPFM64, согласно исходному коду IOPCIFamily." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2235,25 +2326,25 @@ msgstr "Информация: Waiting for root device when kernel cache used only with some disks +FIXhttp://www.insanelymac.com/forum/topic/280062-waiting-for-root-device-when-kernel-cache-used-only-with-some-disks-fix/Автор исследования: bcc9." #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Только OSX Lion. Отключение функции 'low power wake', которая иногда может оставить экран в выключенном состоянии после выхода из спящего режима." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2267,25 +2358,29 @@ "Авторы исследования: meklort и Rampage Dev." #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" +"В версиях Yosemite для разработчиков, неподписанные или неправильно " +"подписанные кексты не будут загружены. Для того, чтобы использовать " +"неподписанные кексты для разработки можно отменить проверку, добавив " +"загрузочный аргумент 'kext-dev-mode=1'." #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2293,277 +2388,277 @@ msgstr "Уклонение от обработки DMAR, вызываемого функцией виртуализации VT-d.Подробнее (автор bcc9): http://www.insanelymac.com/forum/topic/282989-vtd0-fault-after-1082-google-hasnt-heard-of-it-any-help/#entry1867000" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "Германская раскладка клавиатуры (Mac)" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Использовать германскую (Mac) раскладку клавиатуры при начальной загрузке" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Испанская раскладка клавиатуры (Mac)" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Использовать испанскую (Mac) раскладку клавиатуры при начальной загрузке" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "Французская раскладка клавиатуры (Mac)" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Использовать французскую (Mac) раскладку клавиатуры при начальной загрузке" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Итальянская раскладка клавиатуры (Mac)" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Использовать итальянскую (Mac) раскладку клавиатуры при начальной загрузке" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Шведская раскладка клавиатуры (Mac)" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Использовать шведскую (Mac) раскладку клавиатуры при начальной загрузке" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "Французская раскладка клавиатуры (PC)" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Использовать французскую (PC) раскладку клавиатуры при начальной загрузке" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Упрощённый вариант новой темы по умолчанию, используемый при построении версии Chameleon, которая требует встроенную тему." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Оригинальная тема Chameleon по умолчанию, которая появилась в версии 2.0 RC1" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Тема Chameleon по умолчанию, которая появилась в версии 2.0 RC5" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Прелестная простая тема, выпущенная NoSmokingBandit в апреле 2009 года." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Параметры аудио." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Настройки управления" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Настройки поведения Chameleon." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Общие настройки" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Выберите одну из категорий основных настроек." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Параметры, передаваемые ядру" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Выберите параметры передаваемые ядру ОС." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Управление питанием" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Параметры, контролирующие систему управления питанием и разгоном процессора." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Выберите разрешение, используемое по умолчанию." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "Выберите карту HDEF, используемую по умолчанию для Вашего HDA-контроллера." #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "Выберите карту HDAU, используемую по умолчанию для Вашего HDMi-контроллера." #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Выберите значение AAPL,ig-platform-id, используемое по умолчанию для графического процессора Intel HD4000." #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "Выберите значение AAPL,ig-platform-id, используемое по умолчанию для графического процессора Intel HD4000." #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "Выберите используемую конфигурацию HDEF." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Видео" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." -msgstr "Параметры отображения." +msgstr "Выбор параметров отображения видео." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "Раскладка" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Выберите основную раскладку клавиатуры. Эта опция также позволит установить модуль Keylayout и различные раскладки." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Темы" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/de.po =================================================================== --- branches/ErmaC/Enoch/package/po/de.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/de.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2013-12-29 12:04+0000\n" "Last-Translator: ErmaC \n" "Language-Team: de \n" @@ -276,7 +276,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Chameleon Standard" @@ -399,7 +399,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Bildschirmauflösung" @@ -1085,7 +1085,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1102,7 +1102,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1119,7 +1119,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1134,15 +1134,49 @@ "Setzt HDEF Layout auf 3:\n" "03 (0x03, 0x00, 0x00, 0x00)" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "LayoutID=5" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Setzt HDEF Layout auf 5:\n" +"005 (0x05, 0x00, 0x00,0x00)" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "LayoutID=7" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Setzt HDEF Layout auf 7:\n" +"007 (0x07, 0x00, 0x00,0x00)" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1152,14 +1186,14 @@ "0C (0x0C, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1169,14 +1203,14 @@ "020 (0x20, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1186,14 +1220,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1203,14 +1237,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1220,14 +1254,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1237,14 +1271,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1254,14 +1288,14 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1271,14 +1305,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1288,14 +1322,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1305,14 +1339,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1322,14 +1356,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1339,14 +1373,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1356,14 +1390,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1373,14 +1407,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1390,14 +1424,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1407,14 +1441,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1424,14 +1458,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1441,14 +1475,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1458,14 +1492,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1475,14 +1509,14 @@ "382 (0x82, 0x03, 0x00, 0x00)" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1492,7 +1526,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1502,7 +1536,7 @@ "001 (0x01, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1512,7 +1546,7 @@ "002 (0x02, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1521,8 +1555,28 @@ "Setzt HDAU Layout auf 3:\n" "003 (0x03, 0x00, 0x00, 0x00)" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Setzt HDAU Layout auf 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Setzt HDAU Layout auf 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1532,7 +1586,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1542,7 +1596,7 @@ "020 (0x02, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1552,7 +1606,7 @@ "028 (0x28, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1562,7 +1616,7 @@ "041 (0x41, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1572,7 +1626,7 @@ "063 (0x63, 0x00, 0x00, 0x00)" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1582,7 +1636,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1592,7 +1646,7 @@ "183 (0x83, 0x01, 0x00, 0x00)" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1602,7 +1656,7 @@ "184 (0x84, 0x01, 0x00, 0x00)" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1612,7 +1666,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1622,7 +1676,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1632,7 +1686,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1642,7 +1696,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1652,7 +1706,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1662,7 +1716,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1672,7 +1726,7 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1682,7 +1736,7 @@ "377 (0x77, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1692,7 +1746,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1702,7 +1756,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1712,7 +1766,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1722,7 +1776,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1732,613 +1786,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Setze 01660001 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Setze 01660002 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Setze 01660003 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Setze 01620005 für Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Setze 01620006 für Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Setze 01620007 für Intel HD4000 (Desktop) AAPL,ig-platform-id ." #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Setze 01660008 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Setze 01660009 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Setze 0166000b für Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 00000604 für Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 0000060c für Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 00001604 für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 0000160a für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 0000160c für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 00002604 für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 0000260a für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 0600260c für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 0000260d für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 02001604 für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "Setze 0300220d für Intel Haswell (Desktop) AAPL,ig-platform-id." #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 0500260a für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 0600260a für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 0700260d für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 0800260a für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "Setze 08002e0a für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "Setze HDEF PinConfiguration für Analog Geräte AD2000b." #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "Setze HDEF PinConfiguration für Analog Geräte AD1981HD." #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "Setze HDEF PinConfiguration für Analog Geräte AD1988b." #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "Setze HDEF PinConfiguration für Realtek ALC888." #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "Setze HDEF PinConfiguration für Realtek ALC1200." #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "Setze HDEF PinConfiguration für ???." #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Ja" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Nutzt die automatische Erkennung von NVIDIA-Grafikchipsätzen. Zusätzliche Injektionen sind obsolet." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Ja" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Einfügen von HDMI Audio für NVIDIA oder AMD/ATI Karten." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "Benutze AtiROM=Ja" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Nutzt ein AtiROM." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "Benutze NvidiaROM=Ja" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Nutzt ein NvidiaROM." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Ja" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Nutzt VBIOS." #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Ja" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Ja" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Ja" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Ja" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Ja" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "Ermöglicht DualLink Optionen für NVIDIA und ATI Karten." #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Ja" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Meldungen von Chameleon und OS X Kernel werden während des Bootens angezeigt. Wichtig zur Fehlerdiagnose." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Zur Fehlerbehebung in die BSD/Unix Kommandozeile von OS X booten." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Nicht für den täglichen Gebrauch, aber hilfreich, um OS X alle Systemdateien unter Umgehung der Caches laden zu lassen." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Behebt manchmal den Fehler 'PCI Configuration Failed' " #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Behebt manchmal den Fehler 'PCI Configuration Failed' " #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2347,25 +2401,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Nur für Lion. Verhindert das 'low power wake', wodurch manchmal der Monitor nach dem Aufwachen aus dem Ruhezustand schwarz bleibt." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2375,25 +2429,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2401,277 +2455,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "German Mac Keyboard" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Tastaturbelegung: Deutsch Mac" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "Spanish Mac Keyboard" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Tastaturbelegung: Spanisch Mac" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "French Mac Keyboard" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Tastaturbelegung: Französisch Mac" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "Italian Mac Keyboard" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Tastaturbelegung: Italienisch Mac" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "Swedish Mac Keyboard" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Tastaturbelegung: Schwedisch Mac" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "French PC Keyboard" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Tastaturbelegung: Französisch PC" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Vereinfachte Version des neuen Standard-Themas, nutzbar wenn für Chameleon ein eingebettetes Thema benötigt wird." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Das bisherige Standard-Thema" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Das neue Standard-Thema" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Das Bullet-Thema von NoSmokingBandit" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Eine Auswahl von Optionen für Audio." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Kontrolloptionen" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Einstellungen zur Kontrolle von Chameleon." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Basisoptionen" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Auswahl an Basisoptionen." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Kernel Flags" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Auswahl an kernel flags." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Energieverwaltung" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Optionen zur Energieverwaltung und CPU-Taktung." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Setzt die Bildschirmauflösung für den Bootprozess." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "Wähle eine HDEF Layout-ID zur Nutzung des HDA Kontrollers." #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "Wähle eine HDAU Layout-ID zur Nutzung des HDMI Kontrollers." #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Wähle eine AAPL,ig-platform-id zur Nutzung der Intel HD4000 Grafik." #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "Wähle eine AAPL,ig-platform-id zur Nutzung der Intel HD5000 Grafik." #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinKonfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "Wähle die zu benutzende HDEF PinKonfiguration." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Optionen zur Grafik." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "Tastaturbelegung" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Wählen Sie eine keylayout zu bedienen. Dies wird auch installieren Sie das Modul Keylayout und Tastaturbelegungen." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Erscheinungsbild" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/bg.po =================================================================== --- branches/ErmaC/Enoch/package/po/bg.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/bg.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2012-04-28 17:25+0200\n" "Last-Translator: Желязко \n" "Language-Team: bg \n" @@ -268,7 +268,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Стандартна" @@ -380,7 +380,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Резолюция на екрана" @@ -419,10 +419,9 @@ #. type: "KernelPatcher_title" #: Resources/templates/Localizable.strings:71 -#, fuzzy, no-wrap -#| msgid "UseKernelCache=Yes" +#, no-wrap msgid "Kernel Patcher" -msgstr "UseKernelCache=Yes" +msgstr "Kernel Patcher" #. type: "KernelPatcher_description" #: Resources/templates/Localizable.strings:72 @@ -452,10 +451,9 @@ #. type: "NVIDIAGraphicsEnabler_title" #: Resources/templates/Localizable.strings:83 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "NVIDIAGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "NVIDIAGraphicsEnabler" #. type: "NVIDIAGraphicsEnabler_description" #: Resources/templates/Localizable.strings:84 @@ -467,10 +465,9 @@ #. type: "AMDGraphicsEnabler_title" #: Resources/templates/Localizable.strings:87 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "AMDGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "AMDGraphicsEnabler" #. type: "AMDGraphicsEnabler_description" #: Resources/templates/Localizable.strings:88 @@ -482,10 +479,9 @@ #. type: "IntelGraphicsEnabler_title" #: Resources/templates/Localizable.strings:91 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "IntelGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "IntelGraphicsEnabler" #. type: "IntelGraphicsEnabler_description" #: Resources/templates/Localizable.strings:92 @@ -629,10 +625,9 @@ #. type: "EnableWifi_title" #: Resources/templates/Localizable.strings:135 -#, fuzzy, no-wrap -#| msgid "EnableHDMIAudio=Yes" +#, no-wrap msgid "EnableWifi=Yes" -msgstr "EnableHDMIAudio=Yes" +msgstr "EnableWifi=Yes" #. type: "EnableWifi_description" #: Resources/templates/Localizable.strings:136 @@ -667,10 +662,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 @@ -764,10 +758,9 @@ #. type: "DropHPET_title" #: Resources/templates/Localizable.strings:170 -#, fuzzy, no-wrap -#| msgid "DropSSDT=Yes" +#, no-wrap msgid "DropHPET=Yes" -msgstr "DropSSDT=Yes" +msgstr "DropHPET=Yes" #. type: "DropHPET_description" #: Resources/templates/Localizable.strings:171 @@ -778,10 +771,9 @@ #. type: "DropSBST_title" #: Resources/templates/Localizable.strings:173 -#, fuzzy, no-wrap -#| msgid "DropSSDT=Yes" +#, no-wrap msgid "DropSBST=Yes" -msgstr "DropSSDT=Yes" +msgstr "DropSBST=Yes" #. type: "DropSBST_description" #: Resources/templates/Localizable.strings:174 @@ -792,10 +784,9 @@ #. type: "DropECDT_title" #: Resources/templates/Localizable.strings:176 -#, fuzzy, no-wrap -#| msgid "DropSSDT=Yes" +#, no-wrap msgid "DropECDT=Yes" -msgstr "DropSSDT=Yes" +msgstr "DropECDT=Yes" #. type: "DropECDT_description" #: Resources/templates/Localizable.strings:177 @@ -806,10 +797,9 @@ #. type: "DropASFT_title" #: Resources/templates/Localizable.strings:179 -#, fuzzy, no-wrap -#| msgid "DropSSDT=Yes" +#, no-wrap msgid "DropASFT=Yes" -msgstr "DropSSDT=Yes" +msgstr "DropASFT=Yes" #. type: "DropASFT_description" #: Resources/templates/Localizable.strings:180 @@ -820,10 +810,9 @@ #. type: "DropDMAR_title" #: Resources/templates/Localizable.strings:182 -#, fuzzy, no-wrap -#| msgid "DropSSDT=Yes" +#, no-wrap msgid "DropDMAR=Yes" -msgstr "DropSSDT=Yes" +msgstr "DropDMAR=Yes" #. type: "DropDMAR_description" #: Resources/templates/Localizable.strings:183 @@ -869,10 +858,9 @@ #. type: "EnableC6State_title" #: Resources/templates/Localizable.strings:194 -#, fuzzy, no-wrap -#| msgid "EnableC2State=Yes" +#, no-wrap msgid "EnableC6State=Yes" -msgstr "EnableC2State=Yes" +msgstr "EnableC6State=Yes" #. type: "EnableC6State_description" #: Resources/templates/Localizable.strings:195 @@ -907,10 +895,9 @@ #. type: "GenerateTStates_title" #: Resources/templates/Localizable.strings:203 -#, fuzzy, no-wrap -#| msgid "GenerateCStates=Yes" +#, no-wrap msgid "GenerateTStates=Yes" -msgstr "GenerateCStates=Yes" +msgstr "GenerateTStates=Yes" #. type: "GenerateTStates_description" #: Resources/templates/Localizable.strings:204 @@ -993,10 +980,9 @@ #. type: "1366x768x32_title" #: Resources/templates/Localizable.strings:226 -#, fuzzy, no-wrap -#| msgid "1024x768x32" +#, no-wrap msgid "1366x768x32" -msgstr "1024x768x32" +msgstr "1366x768x32" #. type: "1366x768x32_description" #: Resources/templates/Localizable.strings:227 @@ -1079,11 +1065,10 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 -#, fuzzy, no-wrap -#| msgid "KeyLayout" +#: Resources/templates/Localizable.strings:355 +#, no-wrap msgid "LayoutID=1" -msgstr "KeyLayout" +msgstr "LayoutID=1" #. type: "HDEFLayoutIDx01_description" #: Resources/templates/Localizable.strings:250 @@ -1095,11 +1080,10 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 -#, fuzzy, no-wrap -#| msgid "KeyLayout" +#: Resources/templates/Localizable.strings:359 +#, no-wrap msgid "LayoutID=2" -msgstr "KeyLayout" +msgstr "LayoutID=2" #. type: "HDEFLayoutIDx02_description" #: Resources/templates/Localizable.strings:254 @@ -1111,11 +1095,10 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 -#, fuzzy, no-wrap -#| msgid "KeyLayout" +#: Resources/templates/Localizable.strings:363 +#, no-wrap msgid "LayoutID=3" -msgstr "KeyLayout" +msgstr "LayoutID=3" #. type: "HDEFLayoutIDx03_description" #: Resources/templates/Localizable.strings:258 @@ -1125,16 +1108,45 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_title" +#: Resources/templates/Localizable.strings:261 +#: Resources/templates/Localizable.strings:367 +#, no-wrap +msgid "LayoutID=5" +msgstr "LayoutID=5" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "LayoutID=7" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_title" -#: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 -#, fuzzy, no-wrap -#| msgid "KeyLayout" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" -msgstr "KeyLayout" +msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1142,15 +1154,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 -#, fuzzy, no-wrap -#| msgid "KeyLayout" +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 +#, no-wrap msgid "LayoutID=32" -msgstr "KeyLayout" +msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1158,15 +1169,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 -#, fuzzy, no-wrap -#| msgid "KeyLayout" +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 +#, no-wrap msgid "LayoutID=40" -msgstr "KeyLayout" +msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1174,15 +1184,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 -#, fuzzy, no-wrap -#| msgid "KeyLayout" +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 +#, no-wrap msgid "LayoutID=65" -msgstr "KeyLayout" +msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1190,15 +1199,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 -#, fuzzy, no-wrap -#| msgid "KeyLayout" +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 +#, no-wrap msgid "LayoutID=99" -msgstr "KeyLayout" +msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1206,14 +1214,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1221,14 +1229,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1236,14 +1244,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1251,14 +1259,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1266,14 +1274,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1281,14 +1289,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1296,14 +1304,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1311,14 +1319,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1326,14 +1334,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1341,14 +1349,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1356,14 +1364,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1371,14 +1379,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1386,14 +1394,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1401,14 +1409,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1416,14 +1424,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1431,14 +1439,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1446,7 +1454,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1454,7 +1462,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1462,15 +1470,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1478,7 +1502,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1486,7 +1510,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1494,7 +1518,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1502,7 +1526,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1510,7 +1534,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1518,7 +1542,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1526,7 +1550,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1534,7 +1558,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1542,7 +1566,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1550,7 +1574,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1558,7 +1582,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1566,7 +1590,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1574,7 +1598,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1582,7 +1606,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1590,7 +1614,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1598,7 +1622,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1606,7 +1630,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1614,7 +1638,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1622,7 +1646,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1630,7 +1654,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1638,618 +1662,614 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, fuzzy, no-wrap #| msgid "Enables the option to autodetect NVIDIA based GPUs and inject the correct info." msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "Автоматично разпознаване на видео карти с NVIDIA чипсет и добавяне на съответната за тях информация." #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Позволява UseAtiROM опции." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Позволява UseNvidiaROM опции." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Позволява VBIOS опции" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 -#, fuzzy, no-wrap -#| msgid "UseNvidiaROM=Yes" +#: Resources/templates/Localizable.strings:587 +#, no-wrap msgid "SkipNvidiaGfx=Yes" -msgstr "UseNvidiaROM=Yes" +msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 -#, fuzzy, no-wrap -#| msgid "EnableC2State=Yes" +#: Resources/templates/Localizable.strings:593 +#, no-wrap msgid "EnableBacklight=Yes" -msgstr "EnableC2State=Yes" +msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 -#, fuzzy, no-wrap -#| msgid "EnableHDMIAudio=Yes" +#: Resources/templates/Localizable.strings:596 +#, no-wrap msgid "EnableDualLink=Yes" -msgstr "EnableHDMIAudio=Yes" +msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 -#, fuzzy, no-wrap -#| msgid "UseNvidiaROM=Yes" +#: Resources/templates/Localizable.strings:599 +#, no-wrap msgid "NvidiaGeneric=Yes" -msgstr "UseNvidiaROM=Yes" +msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Подробен режим /Verbose Mode/" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Включва подробно зареждане и ви позволява да видите съобщенията от на Хамелеон както и от ядрото на OS X по време на зареждане. Съществено значение за отстраняване на неизправности." #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Режим на единичен потребител /Single User Mode/" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Отстраняване на неизправности опцията се използва за зареждане на BSD/Unix в командния ред на OS X." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Игнорирай кеша /Ignore Caches/" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Не е опция, за ежедневно зареждане на системата, но може да бъде полезно, ако искате OS X да зареди всички файлове от системните папки, отколкото да се разчита на предварително вграден кеш." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "За поправка на 'PCI конфигурацията' на някои системи. 0x2000 е kIOPCIConfiguratorPFM64 флаг, както се вижда в IOPCIFamily изходния код." #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "За поправка на 'PCI конфигурацията' на някои системи. 0x3000 е kIOPCIConfiguratorPFM64 флаг, както се вижда в IOPCIFamily изходния код." #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2258,25 +2278,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Само за Lion. Забранява функцията 'събуждане на ниска мощност' което понякога може да остави черен екран след събуждане от сън /sleep/." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2286,25 +2306,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2312,281 +2332,279 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Използване на клавиатурната подредба за немска клавиатура за Mac" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Използване на клавиатурната подредба за испански клавиатура за Mac" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Използване на клавиатурната подредба за френски клавиатура за Mac" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Използване на клавиатурната подредба за италианска клавиатура за Mac" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Използване на клавиатурната подредба за шведски клавиатура за Mac" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Използвайте клавиатурна подредба за френски клавиатура PC" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Опростена версия на тема по подразбиране се използва при изграждането на версия на Хамелеон, който изисква вграден тема." #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Оригинална по подразбиране Хамелеон тема въведена за v2.0 RC1" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Вградената тема в Хамелион v2.0 RC5" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Прекрасна проста тема от NoSmokingBandit от април 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, fuzzy, no-wrap #| msgid "A selection of options that deal with video." msgid "A selection of options that deal with audio." msgstr "А изборът на опции, които се занимават с видеото." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Опциите за контрол" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Настройки, за да контролирате как работи Хамелеон." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Общи опции" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Изберете от избора на базови възможности." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Ядрото опции /Kernel Flags/" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Изберете от избора на ядрото опции /kernel flags/." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Опции на захранването" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Изборът на опции, които се занимават с управление на захранването и speedstep." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Задаване на една резолюция." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 -#, fuzzy, no-wrap -#| msgid "KeyLayout" +#: Resources/templates/Localizable.strings:712 +#, no-wrap msgid "HDEF Layout" -msgstr "KeyLayout" +msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 -#, fuzzy, no-wrap -#| msgid "KeyLayout" +#: Resources/templates/Localizable.strings:716 +#, no-wrap msgid "HDAU Layout" -msgstr "KeyLayout" +msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, fuzzy, no-wrap #| msgid "Set one resolution to use." msgid "Set one HDEF PinConfiguration to use." msgstr "Задаване на една резолюция." #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Видео" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "А изборът на опции, които се занимават с видеото." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "KeyLayout" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Изберете един keylayout да се използва. Това също така ще инсталирате модула Keylayout и keymaps." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Теми" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/ja.po =================================================================== --- branches/ErmaC/Enoch/package/po/ja.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/ja.po (revision 2457) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -253,7 +253,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "" @@ -362,7 +362,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "" @@ -1032,7 +1032,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "" @@ -1047,7 +1047,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "" @@ -1062,7 +1062,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "" @@ -1075,15 +1075,45 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1091,14 +1121,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1106,14 +1136,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1121,14 +1151,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1136,14 +1166,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1151,14 +1181,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1166,14 +1196,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1181,14 +1211,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1196,14 +1226,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1211,14 +1241,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1226,14 +1256,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1241,14 +1271,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1256,14 +1286,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1271,14 +1301,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1286,14 +1316,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1301,14 +1331,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1316,14 +1346,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1331,14 +1361,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1346,14 +1376,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1361,14 +1391,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1376,14 +1406,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1391,7 +1421,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1399,7 +1429,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1407,15 +1437,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1423,7 +1469,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1431,7 +1477,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1439,7 +1485,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1447,7 +1493,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1455,7 +1501,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1463,7 +1509,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1471,7 +1517,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1479,7 +1525,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1487,7 +1533,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1495,7 +1541,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1503,7 +1549,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1511,7 +1557,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1519,7 +1565,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1527,7 +1573,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1535,7 +1581,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1543,7 +1589,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1551,7 +1597,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1559,7 +1605,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1567,7 +1613,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1575,7 +1621,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1583,613 +1629,613 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "" #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "" #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "" #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "" #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "" #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "" #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2198,25 +2244,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "" #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2226,25 +2272,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2252,277 +2298,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "" #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "" #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "" #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "" #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "" #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "" #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "" #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/zh_TW.po =================================================================== --- branches/ErmaC/Enoch/package/po/zh_TW.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/zh_TW.po (revision 2457) @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" -"PO-Revision-Date: 2014-06-26 01:26+0000\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" +"PO-Revision-Date: 2013-12-28 07:30+0000\n" "Last-Translator: crazybirdy <>\n" "Language-Team: zh_TW \n" "Language: zh_TW\n" @@ -17,7 +17,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1403745999.0\n" +"X-POOTLE-MTIME: 1388215834.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -261,7 +261,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "標準安裝" @@ -387,7 +387,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "解析度" @@ -1083,7 +1083,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1100,7 +1100,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1117,7 +1117,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1132,15 +1132,57 @@ "設定 HDEF layout-it 為 3:\n" "003 (0x03, 0x00, 0x00, 0x00)。" +#. type: "HDAULayoutIDx05_title" +#: Resources/templates/Localizable.strings:261 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"設定 HDEF layout-it 為 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)。" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"設定 HDEF layout-it 為 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)。" + #. type: "HDAULayoutIDx12_title" -#: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 #, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1150,14 +1192,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1167,14 +1209,14 @@ "020 (0x20, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1184,14 +1226,14 @@ "028 (0x28, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1201,14 +1243,14 @@ "041 (0x41, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1218,14 +1260,14 @@ "063 (0x63, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1235,14 +1277,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1252,14 +1294,14 @@ "183 (0x83, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1269,14 +1311,14 @@ "184 (0x84, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1286,14 +1328,14 @@ "185 (0x85, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1303,14 +1345,14 @@ "188 (0x88, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1320,14 +1362,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1337,14 +1379,14 @@ "296 (0x96, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1354,14 +1396,14 @@ "297 (0x97, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1371,14 +1413,14 @@ "298 (0x98, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1388,14 +1430,14 @@ "375 (0x75, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1405,14 +1447,14 @@ "377 (0x77, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1422,14 +1464,14 @@ "378 (0x78, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1439,14 +1481,14 @@ "379 (0x79, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1456,14 +1498,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1473,14 +1515,14 @@ "382 (0x82, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1490,7 +1532,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)。" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1500,7 +1542,7 @@ "001 (0x01, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1510,7 +1552,7 @@ "002 (0x02, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1519,8 +1561,34 @@ "設定 HDAU layout-it 為 3:\n" "003 (0x03, 0x00, 0x00, 0x00)。" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"設定 HDAU layout-it 為 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)。" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"設定 HDAU layout-it 為 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)。" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1530,7 +1598,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1540,7 +1608,7 @@ "020 (0x20, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1550,7 +1618,7 @@ "028 (0x28, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1560,7 +1628,7 @@ "041 (0x41, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1570,7 +1638,7 @@ "063 (0x63, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1580,7 +1648,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1590,7 +1658,7 @@ "183 (0x83, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1600,7 +1668,7 @@ "184 (0x84, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1610,7 +1678,7 @@ "185 (0x85, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1620,7 +1688,7 @@ "188 (0x88, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1630,7 +1698,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1640,7 +1708,7 @@ "296 (0x96, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1650,7 +1718,7 @@ "297 (0x97, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1660,7 +1728,7 @@ "298 (0x98, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1670,7 +1738,7 @@ "375 (0x75, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1680,7 +1748,7 @@ "377 (0x77, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1690,7 +1758,7 @@ "378 (0x78, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1700,7 +1768,7 @@ "379 (0x79, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1710,7 +1778,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1720,7 +1788,7 @@ "382 (0x82, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1730,613 +1798,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)。" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 01660000。" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 01660001。" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 01660002。" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 01660003。" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 01660004。" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Desktop) 顯示卡的 AAPL,ig-platform-id 為 01660005。" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Desktop) 顯示卡的 AAPL,ig-platform-id 為 01660006。" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Desktop) 顯示卡的 AAPL,ig-platform-id 為 01660007。" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 01660008。" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 01660009。" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0166000a。" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0166000b。" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 00000604。" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000060c。" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 00001604。" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000160a。" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000160c。" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 00002604。" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000260a。" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0600260c。" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000260d。" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 02001604。" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Desktop) 顯示卡的 AAPL,ig-platform-id 為 0300220d。" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0500260a。" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0600260a。" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0700260d。" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0800260a。" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 08002e0a。" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "設定 Analog Devices AD2000b 的 HDEF PinConfiguration 值。" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "設定 Analog Devices AD1981HD 的 HDEF PinConfiguration 值。" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "設定 Analog Devices AD1988b 的 HDEF PinConfiguration 值。" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "設定 Realtek ALC888 的 HDEF PinConfiguration 值。" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "設定 Realtek ALC1200 的 HDEF PinConfiguration 值。" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "設定 音效卡 的 HDEF PinConfiguration 值。" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "(預設是 No) 啟用顯示卡偵測功能。自動識別 NVIDIA, AMD/ATI or Intel 顯示卡 GPU 並注入正確的設備屬性資訊。" #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "(預設是 No) 啟用 HDMI Audio 功能。適用 Nvidia 及 AMD/ATI 顯卡。" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "(預設是 No) 啟用 ATI EEPRom 功能,可在不刷顯示卡 BIOS 的情況下使用修改的 Rom。請命名為 「VenderID_DeviceID_SubsysID.rom」 放置 Extra 資料夾。如:/Extra/1002_68C1_FD501179.rom。" #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "(預設是 No) 啟用 Nvidia EEPRom 功能,可在不刷顯示卡 BIOS 的情況下使用修改的 Rom。請命名為 「VenderID_DeviceID.rom」 放置 Extra 資料夾。如:/Extra/10de_0614.rom。" #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "(預設是 No) 啟用 Nvidia VBIOS 功能。僅針對 Nvidia 顯示卡的參數選項,ATI 顯示卡請勿使用。啟用讀取顯示卡參數,可在顯示卡資訊中顯示 ROM 修正版 資訊。" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "(預設是 No) 取消 GraphicsEnbaler 自動偵測 Intel 顯示卡晶片。" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "(預設是 No) 取消 GraphicsEnbaler 自動偵測 NVIDIA 顯示卡晶片。" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "(預設是 No) 取消 GraphicsEnbaler 自動偵測 AMD/ATI 顯示卡晶片。" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "(預設是 No) 啟用桌上型 nVidia 顯示卡的 背光(Backlight) 選項。" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "(預設是 No) 啟用 nVidia 及 ATi 顯示卡的 DualLink 選項。" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." -msgstr "(預設是 No) 啟用 nVidia 顯示卡的 傳統名稱 (只顯示 顯示卡型號,不顯示 製造商名稱)。" +msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "-v 記錄模式" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "使用 (-v) 記錄模式登入,允許你在螢幕上讀取 變色龍 和 OS X 內核 兩者在開機時產生的紀錄訊息。這是在開機時排除問題的基本用法。" #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "-s 單一使用者模式" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "使用 (-s) 單一使用者模式登入,在排除問題時,可於在開機使用 (-s) 進入 OS X 的 BSD/Unix 命令模式。" #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "-f 忽略 Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "使用 (-f) 忽略 Caches 模式登入,並非每日開機必備的的選項,但可經由忽略預製的 Caches ,以使 OS X 可以重新載入所有位於系統目錄的 kext 檔案。" #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "可在某些系統上排除 'PCI configuration begin' 的錯誤。0x2000 是 kIOPCIConfiguratorPFM64 flag,可在 IOPCIFamily 的 source code 中找到相關訊息。" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "可在某些系統上排除 'PCI configuration begin' 的錯誤。0x3000 是 kIOPCIConfiguratorPFM64 flag,可在 IOPCIFamily 的 source code 中找到相關訊息。" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2348,25 +2416,25 @@ "http://www.insanelymac.com/forum/topic/280062-waiting-for-root-device-when-kernel-cache-used-only-with-some-disks-fix/" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Lion 專用。停用 'low power wake' 的功能,在螢幕睡眠喚醒之後,有時可能會發生螢幕黑屏的狀況。" #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2380,27 +2448,25 @@ "歸功於 meklort 及 Rampage Dev 的發現。" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" -"Yosemite Developer Previews 不加載未簽署或不當簽署的 kexts,加入 kext-dev-mode=1 " -"參數後,即可取消此嚴格限制,並可使用未簽署的 kexts。" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2410,277 +2476,277 @@ "詳情參考 bcc9 說明: http://www.insanelymac.com/forum/topic/282989-vtd0-fault-after-1082-google-hasnt-heard-of-it-any-help/#entry1867000" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "德語 Mac 鍵盤佈局" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "使用德國的 Mac 鍵盤的鍵盤佈局" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "西班牙語 Mac 鍵盤佈局" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "使用西班牙的 Mac 鍵盤的鍵盤佈局" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "法語 Mac 鍵盤佈局" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "使用法國的 Mac 鍵盤的鍵盤佈局" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "意大利語 Mac 鍵盤佈局" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "使用意大利的 Mac 鍵盤的鍵盤佈局" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "瑞典語 Mac 鍵盤佈局" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "使用瑞典的 Mac 鍵盤的鍵盤佈局" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "法語 PC 鍵盤佈局" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "使用法國的 PC 鍵盤的鍵盤佈局" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "內崁主題" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Embed:小而簡單且可於編譯 boot 時,內崁在 Chameleon 裡的主題。" #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "傳統主題" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Legacy:Chameleon v2.0 RC1 的原始預設主題。" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Default:Chameleon v2.0 RC5 的新版預設主題。" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "子彈主題" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Bullet:來自 NoSmokingBandit 2009.4 的一個小巧可愛的子彈主題。" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "音效卡選項" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "設定 Audio 音效卡的選項。" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "控制選項" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "設定控制 Chameleon 的運作方式。" #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "一般選項" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "選取一些基本的選項。" #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "內核參數" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "選取有關 kernel flags 的各種內核參數設定。" #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "電源管理" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "一些設定電源管理和 speedstep 的選項。" #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "設定選用一個解析度。" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "音效卡 HDA 選項" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "設定音效卡 HDA controller 的 HDEF Layout ID。" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "音效卡 HDMI 選項" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "設定音效卡 HDMI controller 的 HDAU Layout ID。" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "設定一個 Intel HD4000 顯示卡的 AAPL,ig-platform-id。" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "設定一個 Intel HD5000 顯示卡的 AAPL,ig-platform-id。" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "設定選用一個 HDEF PinConfiguration。" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "顯示卡選項" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "一些設定顯示卡的選項。" #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "鍵盤佈局" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "設定選用一個鍵盤佈局。將會安裝鍵盤佈局模組與鍵盤映射文件。" #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "主題選項" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/id.po =================================================================== --- branches/ErmaC/Enoch/package/po/id.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/id.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: 2014-06-25 23:47+0000\n" "Last-Translator: level9 \n" "Language-Team: id \n" @@ -275,7 +275,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "Chameleon Standard" @@ -395,7 +395,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "Resolusi" @@ -1084,7 +1084,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1101,7 +1101,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1118,7 +1118,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1133,15 +1133,57 @@ "Menyetel rancangan HDEF menjadi 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_title" +#: Resources/templates/Localizable.strings:261 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Menyetel rancangan HDEF menjadi 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Menyetel rancangan HDEF menjadi 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_title" -#: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 #, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1151,14 +1193,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1168,14 +1210,14 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1185,14 +1227,14 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1202,14 +1244,14 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1219,14 +1261,14 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1236,14 +1278,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1253,14 +1295,14 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1270,14 +1312,14 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1287,14 +1329,14 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1304,14 +1346,14 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1321,14 +1363,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1338,14 +1380,14 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1355,14 +1397,14 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1372,14 +1414,14 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1389,14 +1431,14 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1406,14 +1448,14 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1423,14 +1465,14 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1440,14 +1482,14 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1457,14 +1499,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1474,14 +1516,14 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1491,7 +1533,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1501,7 +1543,7 @@ "001 (0x01, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1511,7 +1553,7 @@ "002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1520,8 +1562,34 @@ "Menyetel rancangan HDAU menjadi 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"Menyetel rancangan HDAU menjadi 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"Menyetel rancangan HDAU menjadi 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)." + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1531,7 +1599,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1541,7 +1609,7 @@ "020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1551,7 +1619,7 @@ "028 (0x28, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1561,7 +1629,7 @@ "041 (0x41, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1571,7 +1639,7 @@ "063 (0x63, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1581,7 +1649,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1591,7 +1659,7 @@ "183 (0x83, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1601,7 +1669,7 @@ "184 (0x84, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1611,7 +1679,7 @@ "185 (0x85, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1621,7 +1689,7 @@ "188 (0x88, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1631,7 +1699,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)." #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1641,7 +1709,7 @@ "296 (0x96, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1651,7 +1719,7 @@ "297 (0x97, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1661,7 +1729,7 @@ "298 (0x98, 0x02, 0x00, 0x00)." #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1671,7 +1739,7 @@ "375 (0x75, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1681,7 +1749,7 @@ "377 (0x77, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1691,7 +1759,7 @@ "378 (0x78, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1701,7 +1769,7 @@ "379 (0x79, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1711,7 +1779,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1721,7 +1789,7 @@ "382 (0x82, 0x03, 0x00, 0x00)." #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1731,613 +1799,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "" #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "Inject HDMi audio for NVIDIA or AMD/ATI." #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "Mengaktifkan opsi 'Gunakan ROM ATi'." #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "Mengaktifkan opsi 'Gunakan ROM nVidia'." #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "Mengaktifkan opsi VBIOS." #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "Verbose Mode" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "Menyalakan modus terlampir (verbose) dari Chameleon dan kernel OS X kernel saat booting. Penting untuk penyelesaian masalah" #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "Single User Mode" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "Modus opsi penyelesaian masalah dengan booting S X's BSD/Unix ke modus teks input." #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "Ignore Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "Bukan merupakan opsi boot yang biasa digunakan sehari hari. Tapi sangat berguna jika anda ingin OS X meload semua berkas dari direktori system daripada yang sudah dicache pre-built." #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Mengatur bootflag npci=0x2000 pada opsi Kernel" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "Mengatur bootflag npci=0x3000 pada opsi Kernel" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2346,25 +2414,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Hanya untuk Lion. Mematikan fitur penyalaan rendah daya 'low power wake'yang dapat mengakibatkan layar gelap setelah komputer dalam posisi tidur." #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2374,25 +2442,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2400,277 +2468,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "Mac Keyboard Jerman" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "Menggunakan Mac keyboard Jerman" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "keyboard Mac Spanyol" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "Menggunakan keyboard Mac Spanyol" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "keyboard Mac Perancis" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "Menggunakan keyboard Mac Perancis" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "keyboard Mac Italia" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "Menggunakan keyboard Mac Italia" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "keyboard Mac Swedia" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "Menggunakan keyboard Mac Swedia" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "PC Keyboard Perancis" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "Menggunakan PC keyboard Perancis" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "Embed" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Versi simple yang lebih kecil daripada tema dasar yang baru digunakan para seat membuat versi dari Chameleon yang dimana memerlukan sebuah tema yang 'embedded'. " #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "Legacy" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Tampilan dasar awal Chameleon" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Tampilan dasar baru Chameleon." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "Bullet" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Tema yang cantik dan simple dari NoSmokingBandit sejak April 2009." #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "Audio" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "Opsi seleksi untuk audio." #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "Opsi Kontrol" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "Setting untuk mengotrol kerja Chameleon." #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "Opsi umum" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "Pemilihan setting umum." #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "Opsi Kernel" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "Pilihan seleksi opsi kernel." #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "Manajemen Daya" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "Pilihan yang berhubungan dengan manajemen daya prosesor dan perubahan kecepatan prosesor otomatis (speedstep)." #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "Pilih salah satu resolusi yang ingin di gunakan." #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "HDEF Layout" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "HDAU Layout" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "Video" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "Opsi seleksi untuk video." #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "Layout keyboard" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "Pilih salah satu keylayout yang ingin digunakan. Ini juga akan menginstal modul keylayout dan keymap." #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Tema" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/he.po =================================================================== --- branches/ErmaC/Enoch/package/po/he.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/he.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: he \n" @@ -252,7 +252,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "" @@ -361,7 +361,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "" @@ -1040,7 +1040,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "" @@ -1055,7 +1055,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "" @@ -1070,7 +1070,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "" @@ -1083,15 +1083,45 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1099,14 +1129,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1114,14 +1144,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1129,14 +1159,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1144,14 +1174,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1159,14 +1189,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1174,14 +1204,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1189,14 +1219,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1204,14 +1234,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1219,14 +1249,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1234,14 +1264,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1249,14 +1279,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1264,14 +1294,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1279,14 +1309,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1294,14 +1324,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1309,14 +1339,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1324,14 +1354,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1339,14 +1369,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1354,14 +1384,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1369,14 +1399,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1384,14 +1414,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1399,7 +1429,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1407,7 +1437,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1415,15 +1445,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1431,7 +1477,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1439,7 +1485,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1447,7 +1493,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1455,7 +1501,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1463,7 +1509,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1471,7 +1517,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1479,7 +1525,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1487,7 +1533,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1495,7 +1541,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1503,7 +1549,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1511,7 +1557,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1519,7 +1565,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1527,7 +1573,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1535,7 +1581,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1543,7 +1589,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1551,7 +1597,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1559,7 +1605,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1567,7 +1613,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1575,7 +1621,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1583,7 +1629,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1591,614 +1637,614 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, fuzzy, no-wrap #| msgid "Enables the option to autodetect NVIDIA based GPUs and inject the correct info." msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr " לקובץ org.chameleon.Boot.plist, אפשרות זאת מפעילה זיהוי אוטומטי של כרטיסי מסך NVIDIA.GraphicsEnabler=y הוספת" #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "" #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "" #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "" #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "" #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "" #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2207,25 +2253,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "" #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2235,25 +2281,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2261,277 +2307,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "" #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "עיצוב סטנדרטי של חמליאון." #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "עיצוב The Bullet על ידי NoSmokingBandit" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "" #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "" #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "" #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "" #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "" #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "" #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/el.po =================================================================== --- branches/ErmaC/Enoch/package/po/el.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/el.po (revision 2457) @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: el \n" @@ -252,7 +252,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "" @@ -361,7 +361,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "" @@ -1031,7 +1031,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "" @@ -1046,7 +1046,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "" @@ -1061,7 +1061,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "" @@ -1074,15 +1074,45 @@ "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" -#. type: "HDAULayoutIDx12_title" +#. type: "HDAULayoutIDx05_title" #: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:367 #, no-wrap +msgid "LayoutID=5" +msgstr "" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, no-wrap +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, no-wrap +msgid "LayoutID=7" +msgstr "" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, no-wrap +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx12_title" +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 +#, no-wrap msgid "LayoutID=12" msgstr "" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1090,14 +1120,14 @@ msgstr "" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1105,14 +1135,14 @@ msgstr "" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1120,14 +1150,14 @@ msgstr "" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1135,14 +1165,14 @@ msgstr "" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1150,14 +1180,14 @@ msgstr "" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1165,14 +1195,14 @@ msgstr "" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1180,14 +1210,14 @@ msgstr "" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1195,14 +1225,14 @@ msgstr "" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1210,14 +1240,14 @@ msgstr "" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1225,14 +1255,14 @@ msgstr "" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1240,14 +1270,14 @@ msgstr "" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1255,14 +1285,14 @@ msgstr "" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1270,14 +1300,14 @@ msgstr "" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1285,14 +1315,14 @@ msgstr "" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1300,14 +1330,14 @@ msgstr "" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1315,14 +1345,14 @@ msgstr "" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1330,14 +1360,14 @@ msgstr "" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1345,14 +1375,14 @@ msgstr "" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1360,14 +1390,14 @@ msgstr "" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1375,14 +1405,14 @@ msgstr "" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1390,7 +1420,7 @@ msgstr "" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1398,7 +1428,7 @@ msgstr "" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1406,15 +1436,31 @@ msgstr "" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" "003 (0x03, 0x00, 0x00, 0x00)." msgstr "" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, no-wrap +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, no-wrap +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1422,7 +1468,7 @@ msgstr "" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1430,7 +1476,7 @@ msgstr "" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1438,7 +1484,7 @@ msgstr "" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1446,7 +1492,7 @@ msgstr "" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1454,7 +1500,7 @@ msgstr "" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1462,7 +1508,7 @@ msgstr "" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1470,7 +1516,7 @@ msgstr "" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1478,7 +1524,7 @@ msgstr "" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1486,7 +1532,7 @@ msgstr "" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1494,7 +1540,7 @@ msgstr "" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1502,7 +1548,7 @@ msgstr "" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1510,7 +1556,7 @@ msgstr "" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1518,7 +1564,7 @@ msgstr "" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1526,7 +1572,7 @@ msgstr "" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1534,7 +1580,7 @@ msgstr "" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1542,7 +1588,7 @@ msgstr "" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1550,7 +1596,7 @@ msgstr "" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1558,7 +1604,7 @@ msgstr "" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1566,7 +1612,7 @@ msgstr "" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1574,7 +1620,7 @@ msgstr "" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1582,613 +1628,613 @@ msgstr "" #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "" #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "" #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "" #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "" #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "" #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "" #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2197,25 +2243,25 @@ msgstr "" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "" #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2225,25 +2271,25 @@ msgstr "" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2251,277 +2297,277 @@ msgstr "" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "" #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "" #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "" #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "" #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "" #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "" #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "" #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "Θέματα" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/package/po/zh_CN.po =================================================================== --- branches/ErmaC/Enoch/package/po/zh_CN.po (revision 2456) +++ branches/ErmaC/Enoch/package/po/zh_CN.po (revision 2457) @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2\n" +"Project-Id-Version: Chameleon 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-26 01:37+0200\n" -"PO-Revision-Date: 2014-06-26 01:26+0000\n" +"POT-Creation-Date: 2014-09-18 14:17+0100\n" +"PO-Revision-Date: 2013-12-28 07:30+0000\n" "Last-Translator: crazybirdy <>\n" "Language-Team: zh_CN \n" "Language: zh_CN\n" @@ -17,7 +17,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1403745967.0\n" +"X-POOTLE-MTIME: 1388215804.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -261,7 +261,7 @@ #. type: "Default_title" #: Resources/templates/Localizable.strings:25 -#: Resources/templates/Localizable.strings:659 +#: Resources/templates/Localizable.strings:675 #, no-wrap msgid "Standard" msgstr "标准安装" @@ -387,7 +387,7 @@ #. type: "Resolution_title" #: Resources/templates/Localizable.strings:60 -#: Resources/templates/Localizable.strings:692 +#: Resources/templates/Localizable.strings:708 #, no-wrap msgid "Resolution" msgstr "分辨率" @@ -1083,7 +1083,7 @@ #. type: "HDAULayoutIDx01_title" #: Resources/templates/Localizable.strings:249 -#: Resources/templates/Localizable.strings:347 +#: Resources/templates/Localizable.strings:355 #, no-wrap msgid "LayoutID=1" msgstr "LayoutID=1" @@ -1100,7 +1100,7 @@ #. type: "HDAULayoutIDx02_title" #: Resources/templates/Localizable.strings:253 -#: Resources/templates/Localizable.strings:351 +#: Resources/templates/Localizable.strings:359 #, no-wrap msgid "LayoutID=2" msgstr "LayoutID=2" @@ -1117,7 +1117,7 @@ #. type: "HDAULayoutIDx03_title" #: Resources/templates/Localizable.strings:257 -#: Resources/templates/Localizable.strings:355 +#: Resources/templates/Localizable.strings:363 #, no-wrap msgid "LayoutID=3" msgstr "LayoutID=3" @@ -1132,15 +1132,57 @@ "设置 HDEF layout-it 为 3:\n" "003 (0x03, 0x00, 0x00, 0x00)。" +#. type: "HDAULayoutIDx05_title" +#: Resources/templates/Localizable.strings:261 +#: Resources/templates/Localizable.strings:367 +#, fuzzy, no-wrap +#| msgid "LayoutID=65" +msgid "LayoutID=5" +msgstr "LayoutID=65" + +#. type: "HDEFLayoutIDx05_description" +#: Resources/templates/Localizable.strings:262 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"设置 HDEF layout-it 为 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)。" + +#. type: "HDAULayoutIDx07_title" +#: Resources/templates/Localizable.strings:265 +#: Resources/templates/Localizable.strings:371 +#, fuzzy, no-wrap +#| msgid "LayoutID=387" +msgid "LayoutID=7" +msgstr "LayoutID=387" + +#. type: "HDEFLayoutIDx07_description" +#: Resources/templates/Localizable.strings:266 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDEF layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDEF layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"设置 HDEF layout-it 为 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)。" + #. type: "HDAULayoutIDx12_title" -#: Resources/templates/Localizable.strings:261 -#: Resources/templates/Localizable.strings:359 +#: Resources/templates/Localizable.strings:269 +#: Resources/templates/Localizable.strings:375 #, no-wrap msgid "LayoutID=12" msgstr "LayoutID=12" #. type: "HDEFLayoutIDx12_description" -#: Resources/templates/Localizable.strings:262 +#: Resources/templates/Localizable.strings:270 #, no-wrap msgid "" "Set HDEF layout-it to 12:\n" @@ -1150,14 +1192,14 @@ "00C (0x0C, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx32_title" -#: Resources/templates/Localizable.strings:265 -#: Resources/templates/Localizable.strings:363 +#: Resources/templates/Localizable.strings:273 +#: Resources/templates/Localizable.strings:379 #, no-wrap msgid "LayoutID=32" msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" -#: Resources/templates/Localizable.strings:266 +#: Resources/templates/Localizable.strings:274 #, no-wrap msgid "" "Set HDEF layout-it to 32:\n" @@ -1167,14 +1209,14 @@ "020 (0x20, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx40_title" -#: Resources/templates/Localizable.strings:269 -#: Resources/templates/Localizable.strings:367 +#: Resources/templates/Localizable.strings:277 +#: Resources/templates/Localizable.strings:383 #, no-wrap msgid "LayoutID=40" msgstr "LayoutID=40" #. type: "HDEFLayoutIDx40_description" -#: Resources/templates/Localizable.strings:270 +#: Resources/templates/Localizable.strings:278 #, no-wrap msgid "" "Set HDEF layout-it to 40:\n" @@ -1184,14 +1226,14 @@ "028 (0x28, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx65_title" -#: Resources/templates/Localizable.strings:273 -#: Resources/templates/Localizable.strings:371 +#: Resources/templates/Localizable.strings:281 +#: Resources/templates/Localizable.strings:387 #, no-wrap msgid "LayoutID=65" msgstr "LayoutID=65" #. type: "HDEFLayoutIDx65_description" -#: Resources/templates/Localizable.strings:274 +#: Resources/templates/Localizable.strings:282 #, no-wrap msgid "" "Set HDEF layout-it to 65:\n" @@ -1201,14 +1243,14 @@ "041 (0x41, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx99_title" -#: Resources/templates/Localizable.strings:277 -#: Resources/templates/Localizable.strings:375 +#: Resources/templates/Localizable.strings:285 +#: Resources/templates/Localizable.strings:391 #, no-wrap msgid "LayoutID=99" msgstr "LayoutID=99" #. type: "HDEFLayoutIDx99_description" -#: Resources/templates/Localizable.strings:278 +#: Resources/templates/Localizable.strings:286 #, no-wrap msgid "" "Set HDEF layout-it to 99:\n" @@ -1218,14 +1260,14 @@ "063 (0x63, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx269_title" -#: Resources/templates/Localizable.strings:281 -#: Resources/templates/Localizable.strings:379 +#: Resources/templates/Localizable.strings:289 +#: Resources/templates/Localizable.strings:395 #, no-wrap msgid "LayoutID=269" msgstr "LayoutID=269" #. type: "HDEFLayoutIDx269_description" -#: Resources/templates/Localizable.strings:282 +#: Resources/templates/Localizable.strings:290 #, no-wrap msgid "" "Set HDEF layout-it to 269:\n" @@ -1235,14 +1277,14 @@ "10D (0x0D, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx387_title" -#: Resources/templates/Localizable.strings:285 -#: Resources/templates/Localizable.strings:383 +#: Resources/templates/Localizable.strings:293 +#: Resources/templates/Localizable.strings:399 #, no-wrap msgid "LayoutID=387" msgstr "LayoutID=387" #. type: "HDEFLayoutIDx387_description" -#: Resources/templates/Localizable.strings:286 +#: Resources/templates/Localizable.strings:294 #, no-wrap msgid "" "Set HDEF layout-it to 387:\n" @@ -1252,14 +1294,14 @@ "183 (0x83, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx388_title" -#: Resources/templates/Localizable.strings:289 -#: Resources/templates/Localizable.strings:387 +#: Resources/templates/Localizable.strings:297 +#: Resources/templates/Localizable.strings:403 #, no-wrap msgid "LayoutID=388" msgstr "LayoutID=388" #. type: "HDEFLayoutIDx388_description" -#: Resources/templates/Localizable.strings:290 +#: Resources/templates/Localizable.strings:298 #, no-wrap msgid "" "Set HDEF layout-it to 388:\n" @@ -1269,14 +1311,14 @@ "184 (0x84, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx389_title" -#: Resources/templates/Localizable.strings:293 -#: Resources/templates/Localizable.strings:391 +#: Resources/templates/Localizable.strings:301 +#: Resources/templates/Localizable.strings:407 #, no-wrap msgid "LayoutID=389" msgstr "LayoutID=389" #. type: "HDEFLayoutIDx389_description" -#: Resources/templates/Localizable.strings:294 +#: Resources/templates/Localizable.strings:302 #, no-wrap msgid "" "Set HDEF layout-it to 389:\n" @@ -1286,14 +1328,14 @@ "185 (0x85, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx392_title" -#: Resources/templates/Localizable.strings:297 -#: Resources/templates/Localizable.strings:395 +#: Resources/templates/Localizable.strings:305 +#: Resources/templates/Localizable.strings:411 #, no-wrap msgid "LayoutID=392" msgstr "LayoutID=392" #. type: "HDEFLayoutIDx392_description" -#: Resources/templates/Localizable.strings:298 +#: Resources/templates/Localizable.strings:306 #, no-wrap msgid "" "Set HDEF layout-it to 392:\n" @@ -1303,14 +1345,14 @@ "188 (0x88, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx398_title" -#: Resources/templates/Localizable.strings:301 -#: Resources/templates/Localizable.strings:399 +#: Resources/templates/Localizable.strings:309 +#: Resources/templates/Localizable.strings:415 #, no-wrap msgid "LayoutID=398" msgstr "LayoutID=398" #. type: "HDEFLayoutIDx398_description" -#: Resources/templates/Localizable.strings:302 +#: Resources/templates/Localizable.strings:310 #, no-wrap msgid "" "Set HDEF layout-it to 398:\n" @@ -1320,14 +1362,14 @@ "18E (0x8E, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx662_title" -#: Resources/templates/Localizable.strings:305 -#: Resources/templates/Localizable.strings:403 +#: Resources/templates/Localizable.strings:313 +#: Resources/templates/Localizable.strings:419 #, no-wrap msgid "LayoutID=662" msgstr "LayoutID=662" #. type: "HDEFLayoutIDx662_description" -#: Resources/templates/Localizable.strings:306 +#: Resources/templates/Localizable.strings:314 #, no-wrap msgid "" "Set HDEF layout-it to 662:\n" @@ -1337,14 +1379,14 @@ "296 (0x96, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx663_title" -#: Resources/templates/Localizable.strings:309 -#: Resources/templates/Localizable.strings:407 +#: Resources/templates/Localizable.strings:317 +#: Resources/templates/Localizable.strings:423 #, no-wrap msgid "LayoutID=663" msgstr "LayoutID=663" #. type: "HDEFLayoutIDx663_description" -#: Resources/templates/Localizable.strings:310 +#: Resources/templates/Localizable.strings:318 #, no-wrap msgid "" "Set HDEF layout-it to 663:\n" @@ -1354,14 +1396,14 @@ "297 (0x97, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx664_title" -#: Resources/templates/Localizable.strings:313 -#: Resources/templates/Localizable.strings:411 +#: Resources/templates/Localizable.strings:321 +#: Resources/templates/Localizable.strings:427 #, no-wrap msgid "LayoutID=664" msgstr "LayoutID=664" #. type: "HDEFLayoutIDx664_description" -#: Resources/templates/Localizable.strings:314 +#: Resources/templates/Localizable.strings:322 #, no-wrap msgid "" "Set HDEF layout-it to 664:\n" @@ -1371,14 +1413,14 @@ "298 (0x98, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx885_title" -#: Resources/templates/Localizable.strings:317 -#: Resources/templates/Localizable.strings:415 +#: Resources/templates/Localizable.strings:325 +#: Resources/templates/Localizable.strings:431 #, no-wrap msgid "LayoutID=885" msgstr "LayoutID=885" #. type: "HDEFLayoutIDx885_description" -#: Resources/templates/Localizable.strings:318 +#: Resources/templates/Localizable.strings:326 #, no-wrap msgid "" "Set HDEF layout-it to 885:\n" @@ -1388,14 +1430,14 @@ "375 (0x75, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx887_title" -#: Resources/templates/Localizable.strings:321 -#: Resources/templates/Localizable.strings:419 +#: Resources/templates/Localizable.strings:329 +#: Resources/templates/Localizable.strings:435 #, no-wrap msgid "LayoutID=887" msgstr "LayoutID=887" #. type: "HDEFLayoutIDx887_description" -#: Resources/templates/Localizable.strings:322 +#: Resources/templates/Localizable.strings:330 #, no-wrap msgid "" "Set HDEF layout-it to 887:\n" @@ -1405,14 +1447,14 @@ "377 (0x77, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx888_title" -#: Resources/templates/Localizable.strings:325 -#: Resources/templates/Localizable.strings:423 +#: Resources/templates/Localizable.strings:333 +#: Resources/templates/Localizable.strings:439 #, no-wrap msgid "LayoutID=888" msgstr "LayoutID=888" #. type: "HDEFLayoutIDx888_description" -#: Resources/templates/Localizable.strings:326 +#: Resources/templates/Localizable.strings:334 #, no-wrap msgid "" "Set HDEF layout-it to 888:\n" @@ -1422,14 +1464,14 @@ "184 (0x84, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx889_title" -#: Resources/templates/Localizable.strings:329 -#: Resources/templates/Localizable.strings:427 +#: Resources/templates/Localizable.strings:337 +#: Resources/templates/Localizable.strings:443 #, no-wrap msgid "LayoutID=889" msgstr "LayoutID=889" #. type: "HDEFLayoutIDx889_description" -#: Resources/templates/Localizable.strings:330 +#: Resources/templates/Localizable.strings:338 #, no-wrap msgid "" "Set HDEF layout-it to 889:\n" @@ -1439,14 +1481,14 @@ "379 (0x79, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx892_title" -#: Resources/templates/Localizable.strings:333 -#: Resources/templates/Localizable.strings:431 +#: Resources/templates/Localizable.strings:341 +#: Resources/templates/Localizable.strings:447 #, no-wrap msgid "LayoutID=892" msgstr "LayoutID=892" #. type: "HDEFLayoutIDx892_description" -#: Resources/templates/Localizable.strings:334 +#: Resources/templates/Localizable.strings:342 #, no-wrap msgid "" "Set HDEF layout-it to 892:\n" @@ -1456,14 +1498,14 @@ "37C (0x7C, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx898_title" -#: Resources/templates/Localizable.strings:337 -#: Resources/templates/Localizable.strings:435 +#: Resources/templates/Localizable.strings:345 +#: Resources/templates/Localizable.strings:451 #, no-wrap msgid "LayoutID=898" msgstr "LayoutID=898" #. type: "HDEFLayoutIDx898_description" -#: Resources/templates/Localizable.strings:338 +#: Resources/templates/Localizable.strings:346 #, no-wrap msgid "" "Set HDEF layout-it to 898:\n" @@ -1473,14 +1515,14 @@ "382 (0x82, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDxBD7_title" -#: Resources/templates/Localizable.strings:341 -#: Resources/templates/Localizable.strings:439 +#: Resources/templates/Localizable.strings:349 +#: Resources/templates/Localizable.strings:455 #, no-wrap msgid "LayoutID=1981" msgstr "LayoutID=1981" #. type: "HDEFLayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:342 +#: Resources/templates/Localizable.strings:350 #, no-wrap msgid "" "Set HDEF layout-it to 1981:\n" @@ -1490,7 +1532,7 @@ "7BD (0xBD, 0x07, 0x00, 0x00)。" #. type: "HDAULayoutIDx01_description" -#: Resources/templates/Localizable.strings:348 +#: Resources/templates/Localizable.strings:356 #, no-wrap msgid "" "Set HDAU layout-it to 1:\n" @@ -1500,7 +1542,7 @@ "001 (0x01, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx02_description" -#: Resources/templates/Localizable.strings:352 +#: Resources/templates/Localizable.strings:360 #, no-wrap msgid "" "Set HDAU layout-it to 2:\n" @@ -1510,7 +1552,7 @@ "002 (0x02, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx03_description" -#: Resources/templates/Localizable.strings:356 +#: Resources/templates/Localizable.strings:364 #, no-wrap msgid "" "Set HDAU layout-it to 3:\n" @@ -1519,8 +1561,34 @@ "设置 HDAU layout-it 为 3:\n" "003 (0x03, 0x00, 0x00, 0x00)。" +#. type: "HDAULayoutIDx05_description" +#: Resources/templates/Localizable.strings:368 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 5:\n" +"005 (0x05, 0x00, 0x00, 0x00)." +msgstr "" +"设置 HDAU layout-it 为 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)。" + +#. type: "HDAULayoutIDx07_description" +#: Resources/templates/Localizable.strings:372 +#, fuzzy, no-wrap +#| msgid "" +#| "Set HDAU layout-it to 1:\n" +#| "001 (0x01, 0x00, 0x00, 0x00)." +msgid "" +"Set HDAU layout-it to 7:\n" +"007 (0x07, 0x00, 0x00, 0x00)." +msgstr "" +"设置 HDAU layout-it 为 1:\n" +"001 (0x01, 0x00, 0x00, 0x00)。" + #. type: "HDAULayoutIDx12_description" -#: Resources/templates/Localizable.strings:360 +#: Resources/templates/Localizable.strings:376 #, no-wrap msgid "" "Set HDAU layout-it to 12:\n" @@ -1530,7 +1598,7 @@ "00C (0x0C, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx32_description" -#: Resources/templates/Localizable.strings:364 +#: Resources/templates/Localizable.strings:380 #, no-wrap msgid "" "Set HDAU layout-it to 32:\n" @@ -1540,7 +1608,7 @@ "020 (0x20, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx40_description" -#: Resources/templates/Localizable.strings:368 +#: Resources/templates/Localizable.strings:384 #, no-wrap msgid "" "Set HDAU layout-it to 40:\n" @@ -1550,7 +1618,7 @@ "028 (0x28, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx65_description" -#: Resources/templates/Localizable.strings:372 +#: Resources/templates/Localizable.strings:388 #, no-wrap msgid "" "Set HDAU layout-it to 65:\n" @@ -1560,7 +1628,7 @@ "041 (0x41, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx99_description" -#: Resources/templates/Localizable.strings:376 +#: Resources/templates/Localizable.strings:392 #, no-wrap msgid "" "Set HDAU layout-it to 99:\n" @@ -1570,7 +1638,7 @@ "063 (0x63, 0x00, 0x00, 0x00)。" #. type: "HDAULayoutIDx269_description" -#: Resources/templates/Localizable.strings:380 +#: Resources/templates/Localizable.strings:396 #, no-wrap msgid "" "Set HDAU layout-it to 269:\n" @@ -1580,7 +1648,7 @@ "10D (0x0D, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx387_description" -#: Resources/templates/Localizable.strings:384 +#: Resources/templates/Localizable.strings:400 #, no-wrap msgid "" "Set HDAU layout-it to 387:\n" @@ -1590,7 +1658,7 @@ "183 (0x83, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx388_description" -#: Resources/templates/Localizable.strings:388 +#: Resources/templates/Localizable.strings:404 #, no-wrap msgid "" "Set HDAU layout-it to 388:\n" @@ -1600,7 +1668,7 @@ "184 (0x84, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx389_description" -#: Resources/templates/Localizable.strings:392 +#: Resources/templates/Localizable.strings:408 #, no-wrap msgid "" "Set HDAU layout-it to 389:\n" @@ -1610,7 +1678,7 @@ "185 (0x85, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx392_description" -#: Resources/templates/Localizable.strings:396 +#: Resources/templates/Localizable.strings:412 #, no-wrap msgid "" "Set HDAU layout-it to 392:\n" @@ -1620,7 +1688,7 @@ "188 (0x88, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx398_description" -#: Resources/templates/Localizable.strings:400 +#: Resources/templates/Localizable.strings:416 #, no-wrap msgid "" "Set HDAU layout-it to 398:\n" @@ -1630,7 +1698,7 @@ "18E (0x8E, 0x01, 0x00, 0x00)。" #. type: "HDAULayoutIDx662_description" -#: Resources/templates/Localizable.strings:404 +#: Resources/templates/Localizable.strings:420 #, no-wrap msgid "" "Set HDAU layout-it to 662:\n" @@ -1640,7 +1708,7 @@ "296 (0x96, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx663_description" -#: Resources/templates/Localizable.strings:408 +#: Resources/templates/Localizable.strings:424 #, no-wrap msgid "" "Set HDAU layout-it to 663:\n" @@ -1650,7 +1718,7 @@ "297 (0x97, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx664_description" -#: Resources/templates/Localizable.strings:412 +#: Resources/templates/Localizable.strings:428 #, no-wrap msgid "" "Set HDAU layout-it to 664:\n" @@ -1660,7 +1728,7 @@ "298 (0x98, 0x02, 0x00, 0x00)。" #. type: "HDAULayoutIDx885_description" -#: Resources/templates/Localizable.strings:416 +#: Resources/templates/Localizable.strings:432 #, no-wrap msgid "" "Set HDAU layout-it to 885:\n" @@ -1670,7 +1738,7 @@ "375 (0x75, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx887_description" -#: Resources/templates/Localizable.strings:420 +#: Resources/templates/Localizable.strings:436 #, no-wrap msgid "" "Set HDAU layout-it to 887:\n" @@ -1680,7 +1748,7 @@ "377 (0x77, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx888_description" -#: Resources/templates/Localizable.strings:424 +#: Resources/templates/Localizable.strings:440 #, no-wrap msgid "" "Set HDAU layout-it to 888:\n" @@ -1690,7 +1758,7 @@ "378 (0x78, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx889_description" -#: Resources/templates/Localizable.strings:428 +#: Resources/templates/Localizable.strings:444 #, no-wrap msgid "" "Set HDAU layout-it to 889:\n" @@ -1700,7 +1768,7 @@ "379 (0x79, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx892_description" -#: Resources/templates/Localizable.strings:432 +#: Resources/templates/Localizable.strings:448 #, no-wrap msgid "" "Set HDAU layout-it to 892:\n" @@ -1710,7 +1778,7 @@ "37C (0x7C, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDx898_description" -#: Resources/templates/Localizable.strings:436 +#: Resources/templates/Localizable.strings:452 #, no-wrap msgid "" "Set HDAU layout-it to 898:\n" @@ -1720,7 +1788,7 @@ "382 (0x82, 0x03, 0x00, 0x00)。" #. type: "HDAULayoutIDxBD7_description" -#: Resources/templates/Localizable.strings:440 +#: Resources/templates/Localizable.strings:456 #, no-wrap msgid "" "Set HDAU layout-it to 1981:\n" @@ -1730,613 +1798,613 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." #. type: "IntelCaprix00_title" -#: Resources/templates/Localizable.strings:445 +#: Resources/templates/Localizable.strings:461 #, no-wrap msgid "01660000" msgstr "01660000" #. type: "IntelCaprix00_description" -#: Resources/templates/Localizable.strings:446 +#: Resources/templates/Localizable.strings:462 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Mobile) 显卡的 AAPL,ig-platform-id 为 01660000。" #. type: "IntelCaprix01_title" -#: Resources/templates/Localizable.strings:448 +#: Resources/templates/Localizable.strings:464 #, no-wrap msgid "01660001" msgstr "01660001" #. type: "IntelCaprix01_description" -#: Resources/templates/Localizable.strings:449 +#: Resources/templates/Localizable.strings:465 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Mobile) 显卡的 AAPL,ig-platform-id 为 01660001。" #. type: "IntelCaprix02_title" -#: Resources/templates/Localizable.strings:451 +#: Resources/templates/Localizable.strings:467 #, no-wrap msgid "01660002" msgstr "01660002" #. type: "IntelCaprix02_description" -#: Resources/templates/Localizable.strings:452 +#: Resources/templates/Localizable.strings:468 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Mobile) 显卡的 AAPL,ig-platform-id 为 01660002。" #. type: "IntelCaprix03_title" -#: Resources/templates/Localizable.strings:454 +#: Resources/templates/Localizable.strings:470 #, no-wrap msgid "01660003" msgstr "01660003" #. type: "IntelCaprix03_description" -#: Resources/templates/Localizable.strings:455 +#: Resources/templates/Localizable.strings:471 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Mobile) 显卡的 AAPL,ig-platform-id 为 01660003。" #. type: "IntelCaprix04_title" -#: Resources/templates/Localizable.strings:457 +#: Resources/templates/Localizable.strings:473 #, no-wrap msgid "01660004" msgstr "01660004" #. type: "IntelCaprix04_description" -#: Resources/templates/Localizable.strings:458 +#: Resources/templates/Localizable.strings:474 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Mobile) 显卡的 AAPL,ig-platform-id 为 01660004。" #. type: "IntelCaprix05_title" -#: Resources/templates/Localizable.strings:460 +#: Resources/templates/Localizable.strings:476 #, no-wrap msgid "01620005" msgstr "01620005" #. type: "IntelCaprix05_description" -#: Resources/templates/Localizable.strings:461 +#: Resources/templates/Localizable.strings:477 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Desktop) 显卡的 AAPL,ig-platform-id 为 01660005。" #. type: "IntelCaprix06_title" -#: Resources/templates/Localizable.strings:463 +#: Resources/templates/Localizable.strings:479 #, no-wrap msgid "01620006" msgstr "01620006" #. type: "IntelCaprix06_description" -#: Resources/templates/Localizable.strings:464 +#: Resources/templates/Localizable.strings:480 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Desktop) 显卡的 AAPL,ig-platform-id 为 01660006。" #. type: "IntelCaprix07_title" -#: Resources/templates/Localizable.strings:466 +#: Resources/templates/Localizable.strings:482 #, no-wrap msgid "01620007" msgstr "01620007" #. type: "IntelCaprix07_description" -#: Resources/templates/Localizable.strings:467 +#: Resources/templates/Localizable.strings:483 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Desktop) 显卡的 AAPL,ig-platform-id 为 01660007。" #. type: "IntelCaprix08_title" -#: Resources/templates/Localizable.strings:469 +#: Resources/templates/Localizable.strings:485 #, no-wrap msgid "01660008" msgstr "01660008" #. type: "IntelCaprix08_description" -#: Resources/templates/Localizable.strings:470 +#: Resources/templates/Localizable.strings:486 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Mobile) 显卡的 AAPL,ig-platform-id 为 01660008。" #. type: "IntelCaprix09_title" -#: Resources/templates/Localizable.strings:472 +#: Resources/templates/Localizable.strings:488 #, no-wrap msgid "01660009" msgstr "01660009" #. type: "IntelCaprix09_description" -#: Resources/templates/Localizable.strings:473 +#: Resources/templates/Localizable.strings:489 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Mobile) 显卡的 AAPL,ig-platform-id 为 01660009。" #. type: "IntelCaprix10_title" -#: Resources/templates/Localizable.strings:475 +#: Resources/templates/Localizable.strings:491 #, no-wrap msgid "0166000a" msgstr "0166000a" #. type: "IntelCaprix10_description" -#: Resources/templates/Localizable.strings:476 +#: Resources/templates/Localizable.strings:492 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0166000a。" #. type: "IntelCaprix11_title" -#: Resources/templates/Localizable.strings:478 +#: Resources/templates/Localizable.strings:494 #, no-wrap msgid "0166000b" msgstr "0166000b" #. type: "IntelCaprix11_description" -#: Resources/templates/Localizable.strings:479 +#: Resources/templates/Localizable.strings:495 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "设置 Intel HD4000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0166000b。" #. type: "IntelAzulx00_title" -#: Resources/templates/Localizable.strings:483 +#: Resources/templates/Localizable.strings:499 #, no-wrap msgid "00000604" msgstr "00000604" #. type: "IntelAzulx00_description" -#: Resources/templates/Localizable.strings:484 +#: Resources/templates/Localizable.strings:500 #, no-wrap msgid "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 00000604。" #. type: "IntelAzulx01_title" -#: Resources/templates/Localizable.strings:486 +#: Resources/templates/Localizable.strings:502 #, no-wrap msgid "0000060c" msgstr "0000060c" #. type: "IntelAzulx01_description" -#: Resources/templates/Localizable.strings:487 +#: Resources/templates/Localizable.strings:503 #, no-wrap msgid "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0000060c。" #. type: "IntelAzulx02_title" -#: Resources/templates/Localizable.strings:489 +#: Resources/templates/Localizable.strings:505 #, no-wrap msgid "00001604" msgstr "00001604" #. type: "IntelAzulx02_description" -#: Resources/templates/Localizable.strings:490 +#: Resources/templates/Localizable.strings:506 #, no-wrap msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 00001604。" #. type: "IntelAzulx03_title" -#: Resources/templates/Localizable.strings:492 +#: Resources/templates/Localizable.strings:508 #, no-wrap msgid "0000160a" msgstr "0000160a" #. type: "IntelAzulx03_description" -#: Resources/templates/Localizable.strings:493 +#: Resources/templates/Localizable.strings:509 #, no-wrap msgid "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0000160a。" #. type: "IntelAzulx04_title" -#: Resources/templates/Localizable.strings:495 +#: Resources/templates/Localizable.strings:511 #, no-wrap msgid "0000160c" msgstr "0000160c" #. type: "IntelAzulx04_description" -#: Resources/templates/Localizable.strings:496 +#: Resources/templates/Localizable.strings:512 #, no-wrap msgid "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0000160c。" #. type: "IntelAzulx05_title" -#: Resources/templates/Localizable.strings:498 +#: Resources/templates/Localizable.strings:514 #, no-wrap msgid "00002604" msgstr "00002604" #. type: "IntelAzulx05_description" -#: Resources/templates/Localizable.strings:499 +#: Resources/templates/Localizable.strings:515 #, no-wrap msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 00002604。" #. type: "IntelAzulx06_title" -#: Resources/templates/Localizable.strings:501 +#: Resources/templates/Localizable.strings:517 #, no-wrap msgid "0000260a" msgstr "0000260a" #. type: "IntelAzulx06_description" -#: Resources/templates/Localizable.strings:502 +#: Resources/templates/Localizable.strings:518 #, no-wrap msgid "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0000260a。" #. type: "IntelAzulx07_title" -#: Resources/templates/Localizable.strings:504 +#: Resources/templates/Localizable.strings:520 #, no-wrap msgid "0000260c" msgstr "0000260c" #. type: "IntelAzulx07_description" -#: Resources/templates/Localizable.strings:505 +#: Resources/templates/Localizable.strings:521 #, no-wrap msgid "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0600260c。" #. type: "IntelAzulx08_title" -#: Resources/templates/Localizable.strings:507 +#: Resources/templates/Localizable.strings:523 #, no-wrap msgid "0000260d" msgstr "0000260d" #. type: "IntelAzulx08_description" -#: Resources/templates/Localizable.strings:508 +#: Resources/templates/Localizable.strings:524 #, no-wrap msgid "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0000260d。" #. type: "IntelAzulx09_title" -#: Resources/templates/Localizable.strings:510 +#: Resources/templates/Localizable.strings:526 #, no-wrap msgid "02001604" msgstr "02001604" #. type: "IntelAzulx09_description" -#: Resources/templates/Localizable.strings:511 +#: Resources/templates/Localizable.strings:527 #, no-wrap msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 02001604。" #. type: "IntelAzulx10_title" -#: Resources/templates/Localizable.strings:513 +#: Resources/templates/Localizable.strings:529 #, no-wrap msgid "0300220d" msgstr "0300220d" #. type: "IntelAzulx10_description" -#: Resources/templates/Localizable.strings:514 +#: Resources/templates/Localizable.strings:530 #, no-wrap msgid "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Desktop) 显卡的 AAPL,ig-platform-id 为 0300220d。" #. type: "IntelAzulx11_title" -#: Resources/templates/Localizable.strings:516 +#: Resources/templates/Localizable.strings:532 #, no-wrap msgid "0500260a" msgstr "0500260a" #. type: "IntelAzulx11_description" -#: Resources/templates/Localizable.strings:517 +#: Resources/templates/Localizable.strings:533 #, no-wrap msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0500260a。" #. type: "IntelAzulx12_title" -#: Resources/templates/Localizable.strings:519 +#: Resources/templates/Localizable.strings:535 #, no-wrap msgid "0600260a" msgstr "0600260a" #. type: "IntelAzulx12_description" -#: Resources/templates/Localizable.strings:520 +#: Resources/templates/Localizable.strings:536 #, no-wrap msgid "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0600260a。" #. type: "IntelAzulx13_title" -#: Resources/templates/Localizable.strings:522 +#: Resources/templates/Localizable.strings:538 #, no-wrap msgid "0700260d" msgstr "0700260d" #. type: "IntelAzulx13_description" -#: Resources/templates/Localizable.strings:523 +#: Resources/templates/Localizable.strings:539 #, no-wrap msgid "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0700260d。" #. type: "IntelAzulx14_title" -#: Resources/templates/Localizable.strings:525 +#: Resources/templates/Localizable.strings:541 #, no-wrap msgid "0800260a" msgstr "0800260a" #. type: "IntelAzulx14_description" -#: Resources/templates/Localizable.strings:526 +#: Resources/templates/Localizable.strings:542 #, no-wrap msgid "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0800260a。" #. type: "IntelAzulx15_title" -#: Resources/templates/Localizable.strings:528 +#: Resources/templates/Localizable.strings:544 #, no-wrap msgid "08002e0a" msgstr "08002e0a" #. type: "IntelAzulx15_description" -#: Resources/templates/Localizable.strings:529 +#: Resources/templates/Localizable.strings:545 #, no-wrap msgid "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 08002e0a。" #. type: "AD2000B_PinConf_title" -#: Resources/templates/Localizable.strings:533 +#: Resources/templates/Localizable.strings:549 #, no-wrap msgid "AD2000b" msgstr "AD2000b" #. type: "AD2000B_PinConf_description" -#: Resources/templates/Localizable.strings:534 +#: Resources/templates/Localizable.strings:550 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD2000b." msgstr "设置 Analog Devices AD2000b 的 HDEF PinConfiguration 值。" #. type: "AD1981HD_PinConf_title" -#: Resources/templates/Localizable.strings:536 +#: Resources/templates/Localizable.strings:552 #, no-wrap msgid "AD1981HD" msgstr "AD1981HD" #. type: "AD1981HD_PinConf_description" -#: Resources/templates/Localizable.strings:537 +#: Resources/templates/Localizable.strings:553 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1981HD." msgstr "设置 Analog Devices AD1981HD 的 HDEF PinConfiguration 值。" #. type: "AD1988B_PinConf_title" -#: Resources/templates/Localizable.strings:539 +#: Resources/templates/Localizable.strings:555 #, no-wrap msgid "AD1988b" msgstr "AD1988b" #. type: "AD1988B_PinConf_description" -#: Resources/templates/Localizable.strings:540 +#: Resources/templates/Localizable.strings:556 #, no-wrap msgid "Set HDEF PinConfiguration for Analog Devices AD1988b." msgstr "设置 Analog Devices AD1988b 的 HDEF PinConfiguration 值。" #. type: "ALC888_PinConf_title" -#: Resources/templates/Localizable.strings:542 +#: Resources/templates/Localizable.strings:558 #, no-wrap msgid "ALC888" msgstr "ALC888" #. type: "ALC888_PinConf_description" -#: Resources/templates/Localizable.strings:543 +#: Resources/templates/Localizable.strings:559 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC888." msgstr "设置 Realtek ALC888 的 HDEF PinConfiguration 值。" #. type: "ALC1200_PinConf_title" -#: Resources/templates/Localizable.strings:545 +#: Resources/templates/Localizable.strings:561 #, no-wrap msgid "ALC1200" msgstr "ALC1200" #. type: "ALC1200_PinConf_description" -#: Resources/templates/Localizable.strings:546 +#: Resources/templates/Localizable.strings:562 #, no-wrap msgid "Set HDEF PinConfiguration for Realtek ALC1200." msgstr "设置 Realtek ALC1200 的 HDEF PinConfiguration 值。" #. type: "00_PinConf_title" -#: Resources/templates/Localizable.strings:548 +#: Resources/templates/Localizable.strings:564 #, no-wrap msgid "00" msgstr "00" #. type: "00_PinConf_description" -#: Resources/templates/Localizable.strings:549 +#: Resources/templates/Localizable.strings:565 #, no-wrap msgid "Set HDEF PinConfiguration for ???." msgstr "设置 声卡 的 HDEF PinConfiguration 值。" #. type: "GraphicsEnabler_title" -#: Resources/templates/Localizable.strings:553 +#: Resources/templates/Localizable.strings:569 #, no-wrap msgid "GraphicsEnabler=Yes" msgstr "GraphicsEnabler=Yes" #. type: "GraphicsEnabler_description" -#: Resources/templates/Localizable.strings:554 +#: Resources/templates/Localizable.strings:570 #, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." msgstr "(默认是 No) 启用显卡侦测功能。自动识别 显卡 GPU 并注入正确的设备属性信息。" #. type: "EnableHDMIAudio_title" -#: Resources/templates/Localizable.strings:556 +#: Resources/templates/Localizable.strings:572 #, no-wrap msgid "EnableHDMIAudio=Yes" msgstr "EnableHDMIAudio=Yes" #. type: "EnableHDMIAudio_description" -#: Resources/templates/Localizable.strings:557 +#: Resources/templates/Localizable.strings:573 #, no-wrap msgid "Inject HDMi audio for NVIDIA or AMD/ATI." msgstr "(默认是 No) 启用 HDMI Audio 功能。适用 Nvidia 及 AMD/ATI 显卡。" #. type: "UseAtiROM_title" -#: Resources/templates/Localizable.strings:559 +#: Resources/templates/Localizable.strings:575 #, no-wrap msgid "UseAtiROM=Yes" msgstr "UseAtiROM=Yes" #. type: "UseAtiROM_description" -#: Resources/templates/Localizable.strings:560 +#: Resources/templates/Localizable.strings:576 #, no-wrap msgid "Enables UseAtiROM options." msgstr "(默认是 No) 启用 ATI EEPRom 功能,可在不刷显卡 BIOS 的情况下使用修改的 Rom。请命名为 “VenderID_DeviceID_SubsysID.rom” 放置 Extra 文件夹。如:/Extra/1002_68C1_FD501179.rom。" #. type: "UseNvidiaROM_title" -#: Resources/templates/Localizable.strings:562 +#: Resources/templates/Localizable.strings:578 #, no-wrap msgid "UseNvidiaROM=Yes" msgstr "UseNvidiaROM=Yes" #. type: "UseNvidiaROM_description" -#: Resources/templates/Localizable.strings:563 +#: Resources/templates/Localizable.strings:579 #, no-wrap msgid "Enables UseNvidiaROM options." msgstr "(默认是 No) 启用 Nvidia EEPRom 功能,可在不刷显卡 BIOS 的情况下使用修改的 Rom。请命名为 “VenderID_DeviceID.rom” 放置 Extra 文件夹。如:/Extra/10de_0614.rom。" #. type: "VBIOS_title" -#: Resources/templates/Localizable.strings:565 +#: Resources/templates/Localizable.strings:581 #, no-wrap msgid "VBIOS=Yes" msgstr "VBIOS=Yes" #. type: "VBIOS_description" -#: Resources/templates/Localizable.strings:566 +#: Resources/templates/Localizable.strings:582 #, no-wrap msgid "Enables VBIOS option" msgstr "(默认是 No) 启用 Nvidia VBIOS 功能。仅针对 Nvidia 显卡的参数选项,ATI 显卡请勿使用。启用读取显卡参数,可在显卡信息中显示 ROM 修正版 信息。" #. type: "SkipIntelGfx_title" -#: Resources/templates/Localizable.strings:568 +#: Resources/templates/Localizable.strings:584 #, no-wrap msgid "SkipIntelGfx=Yes" msgstr "SkipIntelGfx=Yes" #. type: "SkipIntelGfx_description" -#: Resources/templates/Localizable.strings:569 +#: Resources/templates/Localizable.strings:585 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for Intel based GPUs." msgstr "(默认是 No) 取消 GraphicsEnbaler 自动侦测 Intel 显卡芯片。" #. type: "SkipNvidiaGfx_title" -#: Resources/templates/Localizable.strings:571 +#: Resources/templates/Localizable.strings:587 #, no-wrap msgid "SkipNvidiaGfx=Yes" msgstr "SkipNvidiaGfx=Yes" #. type: "SkipNvidiaGfx_description" -#: Resources/templates/Localizable.strings:572 +#: Resources/templates/Localizable.strings:588 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for NVIDIA based GPUs." msgstr "(默认是 No) 取消 GraphicsEnbaler 自动侦测 NVIDIA 显卡芯片。" #. type: "SkipAtiGfx_title" -#: Resources/templates/Localizable.strings:574 +#: Resources/templates/Localizable.strings:590 #, no-wrap msgid "SkipAtiGfx=Yes" msgstr "SkipAtiGfx=Yes" #. type: "SkipAtiGfx_description" -#: Resources/templates/Localizable.strings:575 +#: Resources/templates/Localizable.strings:591 #, no-wrap msgid "Skip the GraphicsEnbaler autodetect for AMD/ATI based GPUs." msgstr "(默认是 No) 取消 GraphicsEnbaler 自动侦测 AMD/ATI 显卡芯片。" #. type: "EnableBacklight_title" -#: Resources/templates/Localizable.strings:577 +#: Resources/templates/Localizable.strings:593 #, no-wrap msgid "EnableBacklight=Yes" msgstr "EnableBacklight=Yes" #. type: "EnableBacklight_description" -#: Resources/templates/Localizable.strings:578 +#: Resources/templates/Localizable.strings:594 #, no-wrap msgid "Enables Backlight options for laptop with nVidia cards." msgstr "(默认是 No) 启用桌上型 nVidia 显卡的 背光(Backlight) 选项。" #. type: "EnableDualLink_title" -#: Resources/templates/Localizable.strings:580 +#: Resources/templates/Localizable.strings:596 #, no-wrap msgid "EnableDualLink=Yes" msgstr "EnableDualLink=Yes" #. type: "EnableDualLink_description" -#: Resources/templates/Localizable.strings:581 +#: Resources/templates/Localizable.strings:597 #, no-wrap msgid "Enables DualLink options for nVidia and ATi cards." msgstr "(默认是 No) 启用 nVidia 及 ATi 显卡的 DualLink 选项。" #. type: "NvidiaGeneric_title" -#: Resources/templates/Localizable.strings:583 +#: Resources/templates/Localizable.strings:599 #, no-wrap msgid "NvidiaGeneric=Yes" msgstr "NvidiaGeneric=Yes" #. type: "NvidiaGeneric_description" -#: Resources/templates/Localizable.strings:584 +#: Resources/templates/Localizable.strings:600 #, no-wrap msgid "Use the classic Nvidia name for the SystemProfiler (disabled by default)." -msgstr "(默认是 No) 启用 nVidia 显卡的 传统名称 (只显示 显卡型号,不显示 制造商名称)。" +msgstr "" #. type: "Verbose_title" -#: Resources/templates/Localizable.strings:590 +#: Resources/templates/Localizable.strings:606 #, no-wrap msgid "Verbose Mode" msgstr "-v 啰唆模式" #. type: "Verbose_description" -#: Resources/templates/Localizable.strings:591 +#: Resources/templates/Localizable.strings:607 #, no-wrap msgid "Turns on verbose logging and allows you to see messages from both Chameleon and the OS X kernel at boot time. Essential for troubleshooting." msgstr "使用 (-v) 啰唆模式进入,允许您在显示器上读取 变色龙 和 OS X 内核 两者在开机时产生的纪录信息。这是在开机时排除问题的基本用法。" #. type: "Singleusermode_title" -#: Resources/templates/Localizable.strings:593 +#: Resources/templates/Localizable.strings:609 #, no-wrap msgid "Single User Mode" msgstr "-s 单用户模式" #. type: "Singleusermode_description" -#: Resources/templates/Localizable.strings:594 +#: Resources/templates/Localizable.strings:610 #, no-wrap msgid "A troubleshooting option used for booting into OS X's BSD/Unix command line." msgstr "使用 (-s) 单用户模式进入,在排除问题时,可于在开机使用 (-s) 进入 OS X 的 BSD/Unix 命令模式。" #. type: "Ignorecaches_title" -#: Resources/templates/Localizable.strings:596 +#: Resources/templates/Localizable.strings:612 #, no-wrap msgid "Ignore Caches" msgstr "-f 忽略 Caches" #. type: "Ignorecaches_description" -#: Resources/templates/Localizable.strings:597 +#: Resources/templates/Localizable.strings:613 #, no-wrap msgid "Not an option that's needed for everyday booting, but it can be useful if you want OS X to load all files from it's system folders, rather than relying on it's pre-built caches." msgstr "使用 (-f) 忽略 Caches 模式进入,并非每日开机必备的的选项,但可经由忽略预制的 Caches ,以使 OS X 可以重新载入所有位于系统目录的 kext 文件。" #. type: "Npci_title" -#: Resources/templates/Localizable.strings:599 +#: Resources/templates/Localizable.strings:615 #, no-wrap msgid "npci=0x2000" msgstr "npci=0x2000" #. type: "Npci_description" -#: Resources/templates/Localizable.strings:600 +#: Resources/templates/Localizable.strings:616 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x2000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "可在某些系统上排除 'PCI configuration begin' 的错误。0x2000 是 kIOPCIConfiguratorPFM64 flag,可在 IOPCIFamily 的 source code 中找到相关信息。" #. type: "Npci3_title" -#: Resources/templates/Localizable.strings:602 +#: Resources/templates/Localizable.strings:618 #, no-wrap msgid "npci=0x3000" msgstr "npci=0x3000" #. type: "Npci3_description" -#: Resources/templates/Localizable.strings:603 +#: Resources/templates/Localizable.strings:619 #, no-wrap msgid "For overcoming a hang at 'PCI configuration begin' on some systems. 0x3000 is the kIOPCIConfiguratorPFM64 flag, as seen in the IOPCIFamily source code." msgstr "可在某些系统上排除 'PCI configuration begin' 的错误。0x3000 是 kIOPCIConfiguratorPFM64 flag,可在 IOPCIFamily 的 source code 中找到相关信息。" #. type: "WaitingRootDevice_title" -#: Resources/templates/Localizable.strings:605 +#: Resources/templates/Localizable.strings:621 #, no-wrap msgid "ahcidisk=1 debug=8" msgstr "ahcidisk=1 debug=8" #. type: "WaitingRootDevice_description" -#: Resources/templates/Localizable.strings:606 +#: Resources/templates/Localizable.strings:622 #, no-wrap msgid "" "Info here: Waiting for root device when kernel cache used only with some disks +FIX\n" @@ -2348,25 +2416,25 @@ "http://www.insanelymac.com/forum/topic/280062-waiting-for-root-device-when-kernel-cache-used-only-with-some-disks-fix/" #. type: "Darkwake_title" -#: Resources/templates/Localizable.strings:610 +#: Resources/templates/Localizable.strings:626 #, no-wrap msgid "darkwake=0" msgstr "darkwake=0" #. type: "Darkwake_description" -#: Resources/templates/Localizable.strings:611 +#: Resources/templates/Localizable.strings:627 #, no-wrap msgid "Lion only. Disables the 'low power wake' feature which can sometimes leave the screen black after wake from sleep." msgstr "Lion 专用。禁用 'low power wake' 的功能,在显示器睡眠唤醒之后,有时可能会发生显示器黑屏的状况。" #. type: "NvdaDrv1_title" -#: Resources/templates/Localizable.strings:613 +#: Resources/templates/Localizable.strings:629 #, no-wrap msgid "nvda_drv=1" msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" -#: Resources/templates/Localizable.strings:614 +#: Resources/templates/Localizable.strings:630 #, no-wrap msgid "" "It introduces a new Preference Pane under System Preferences that allows you to enable the Nvidia Web Driver.\n" @@ -2380,27 +2448,25 @@ "归功于 meklort 及 Rampage Dev 的发现。" #. type: "kext-dev-mode1_title" -#: Resources/templates/Localizable.strings:619 +#: Resources/templates/Localizable.strings:635 #, no-wrap msgid "kext-dev-mode=1" msgstr "kext-dev-mode=1" #. type: "kext-dev-mode1_description" -#: Resources/templates/Localizable.strings:620 +#: Resources/templates/Localizable.strings:636 #, no-wrap msgid "In Yosemite Developer Previews, unsigned or improperly signed kexts will not be loaded. To use unsigned kexts during development, this strict check can be disabled by adding a 'kext-dev-mode=1' boot arg." msgstr "" -"Yosemite Developer Previews 不加载未签署或不当签署的 kexts,加入 kext-dev-mode=1 " -"参数后,即可取消此严格限制,并可使用未签署的 kexts。" #. type: "Dart0_title" -#: Resources/templates/Localizable.strings:622 +#: Resources/templates/Localizable.strings:638 #, no-wrap msgid "dart=0" msgstr "dart=0" #. type: "Dart0_description" -#: Resources/templates/Localizable.strings:623 +#: Resources/templates/Localizable.strings:639 #, no-wrap msgid "" "Avoiding the DMAR processing causing by VT-d function in Osx (Virtualization).\n" @@ -2410,277 +2476,277 @@ "详情参考bcc9 说明: http://www.insanelymac.com/forum/topic/282989-vtd0-fault-after-1082-google-hasnt-heard-of-it-any-help/#entry1867000" #. type: "mac-de_title" -#: Resources/templates/Localizable.strings:630 +#: Resources/templates/Localizable.strings:646 #, no-wrap msgid "German Mac Keyboard" msgstr "德语 Mac 键盘布局" #. type: "mac-de_description" -#: Resources/templates/Localizable.strings:631 +#: Resources/templates/Localizable.strings:647 #, no-wrap msgid "Use the keyboard layout for a German Mac keyboard" msgstr "使用德国的 Mac 键盘的键盘布局" #. type: "mac-es_title" -#: Resources/templates/Localizable.strings:633 +#: Resources/templates/Localizable.strings:649 #, no-wrap msgid "Spanish Mac Keyboard" msgstr "西班牙语 Mac 键盘布局" #. type: "mac-es_description" -#: Resources/templates/Localizable.strings:634 +#: Resources/templates/Localizable.strings:650 #, no-wrap msgid "Use the keyboard layout for a Spanish Mac keyboard" msgstr "使用西班牙的 Mac 键盘的键盘布局" #. type: "mac-fr_title" -#: Resources/templates/Localizable.strings:636 +#: Resources/templates/Localizable.strings:652 #, no-wrap msgid "French Mac Keyboard" msgstr "法语 Mac 键盘布局" #. type: "mac-fr_description" -#: Resources/templates/Localizable.strings:637 +#: Resources/templates/Localizable.strings:653 #, no-wrap msgid "Use the keyboard layout for a French Mac keyboard" msgstr "使用法国的 Mac 键盘的键盘布局" #. type: "mac-it_title" -#: Resources/templates/Localizable.strings:639 +#: Resources/templates/Localizable.strings:655 #, no-wrap msgid "Italian Mac Keyboard" msgstr "意大利语 Mac 键盘布局" #. type: "mac-it_description" -#: Resources/templates/Localizable.strings:640 +#: Resources/templates/Localizable.strings:656 #, no-wrap msgid "Use the keyboard layout for an Italian Mac keyboard" msgstr "使用意大利的 Mac 键盘的键盘布局" #. type: "mac-se_title" -#: Resources/templates/Localizable.strings:642 +#: Resources/templates/Localizable.strings:658 #, no-wrap msgid "Swedish Mac Keyboard" msgstr "瑞典语 Mac 键盘布局" #. type: "mac-se_description" -#: Resources/templates/Localizable.strings:643 +#: Resources/templates/Localizable.strings:659 #, no-wrap msgid "Use the keyboard layout for a Swedish Mac keyboard" msgstr "使用瑞典的 Mac 键盘的键盘布局" #. type: "pc-fr_title" -#: Resources/templates/Localizable.strings:645 +#: Resources/templates/Localizable.strings:661 #, no-wrap msgid "French PC Keyboard" msgstr "法语 PC 键盘布局" #. type: "pc-fr_description" -#: Resources/templates/Localizable.strings:646 +#: Resources/templates/Localizable.strings:662 #, no-wrap msgid "Use the keyboard layout for a French PC keyboard" msgstr "使用法国的 PC 键盘的键盘布局" #. type: "Embed_title" -#: Resources/templates/Localizable.strings:653 +#: Resources/templates/Localizable.strings:669 #, no-wrap msgid "Embed" msgstr "内崁主题" #. type: "Embed_description" -#: Resources/templates/Localizable.strings:654 +#: Resources/templates/Localizable.strings:670 #, no-wrap msgid "A smaller simple version of the new default theme used when building a version of Chameleon which requires an embedded theme." msgstr "Embed:小而简单且可于编译 boot 时,内崁在 Chameleon 里的主题。" #. type: "Legacy_title" -#: Resources/templates/Localizable.strings:656 +#: Resources/templates/Localizable.strings:672 #, no-wrap msgid "Legacy" msgstr "传统主题" #. type: "Legacy_description" -#: Resources/templates/Localizable.strings:657 +#: Resources/templates/Localizable.strings:673 #, no-wrap msgid "Chameleon's original default theme introduced for v2.0 RC1" msgstr "Legacy:Chameleon v2.0 RC1 的原始默认主题。" #. type: "Default_description" -#: Resources/templates/Localizable.strings:660 +#: Resources/templates/Localizable.strings:676 #, no-wrap msgid "Chameleon default theme introduced for v2.0 RC5" msgstr "Default:Chameleon v2.0 RC5 的新版默认主题。" #. type: "Bullet_title" -#: Resources/templates/Localizable.strings:662 +#: Resources/templates/Localizable.strings:678 #, no-wrap msgid "Bullet" msgstr "子弹主题" #. type: "Bullet_description" -#: Resources/templates/Localizable.strings:663 +#: Resources/templates/Localizable.strings:679 #, no-wrap msgid "A lovely simple theme by NoSmokingBandit from April 2009." msgstr "Bullet:来自 NoSmokingBandit 2009.4 的一个小巧可爱的子弹主题。" #. type: "Audio_title" -#: Resources/templates/Localizable.strings:672 +#: Resources/templates/Localizable.strings:688 #, no-wrap msgid "Audio" msgstr "声卡选项" #. type: "Audio_description" -#: Resources/templates/Localizable.strings:673 +#: Resources/templates/Localizable.strings:689 #, no-wrap msgid "A selection of options that deal with audio." msgstr "设置 Audio 声卡的选项。" #. type: "Control_title" -#: Resources/templates/Localizable.strings:676 +#: Resources/templates/Localizable.strings:692 #, no-wrap msgid "Control Options" msgstr "控制选项" #. type: "Control_description" -#: Resources/templates/Localizable.strings:677 +#: Resources/templates/Localizable.strings:693 #, no-wrap msgid "Settings to control how Chameleon works." msgstr "设置控制 Chameleon 的运作方式。" #. type: "General_title" -#: Resources/templates/Localizable.strings:680 +#: Resources/templates/Localizable.strings:696 #, no-wrap msgid "General Options" msgstr "一般选项" #. type: "General_description" -#: Resources/templates/Localizable.strings:681 +#: Resources/templates/Localizable.strings:697 #, no-wrap msgid "Choose from a selection of base options." msgstr "选取一些基本的选项。" #. type: "KernelFlags_title" -#: Resources/templates/Localizable.strings:684 +#: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Kernel Flags" msgstr "内核参数" #. type: "KernelFlags_description" -#: Resources/templates/Localizable.strings:685 +#: Resources/templates/Localizable.strings:701 #, no-wrap msgid "Choose from a selection of kernel flags." msgstr "选取有关 kernel flags 的各种内核参数设置。另可于开机时,键入以下命令配合使用。" #. type: "PowerManagement_title" -#: Resources/templates/Localizable.strings:688 +#: Resources/templates/Localizable.strings:704 #, no-wrap msgid "Power Management" msgstr "电源管理" #. type: "PowerManagement_description" -#: Resources/templates/Localizable.strings:689 +#: Resources/templates/Localizable.strings:705 #, no-wrap msgid "A selection of options that deal with power management and speedstep." msgstr "一些设置电源管理和 speedstep 的选项。" #. type: "Resolution_description" -#: Resources/templates/Localizable.strings:693 +#: Resources/templates/Localizable.strings:709 #, no-wrap msgid "Set one resolution to use." msgstr "设置选用一个分辨率。" #. type: "HDEFLayout_title" -#: Resources/templates/Localizable.strings:696 +#: Resources/templates/Localizable.strings:712 #, no-wrap msgid "HDEF Layout" msgstr "声卡 HDA 选项" #. type: "HDEFLayout_description" -#: Resources/templates/Localizable.strings:697 +#: Resources/templates/Localizable.strings:713 #, no-wrap msgid "Set one HDEF Layout ID to use for your HDA controller." msgstr "设置声卡 HDA controller 的 HDEF Layout ID。" #. type: "HDAULayout_title" -#: Resources/templates/Localizable.strings:700 +#: Resources/templates/Localizable.strings:716 #, no-wrap msgid "HDAU Layout" msgstr "声卡 HDMI 选项" #. type: "HDAULayout_description" -#: Resources/templates/Localizable.strings:701 +#: Resources/templates/Localizable.strings:717 #, no-wrap msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "设置声卡 HDMI controller 的 HDAU Layout ID。" #. type: "IntelCapri_title" -#: Resources/templates/Localizable.strings:704 +#: Resources/templates/Localizable.strings:720 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" -#: Resources/templates/Localizable.strings:705 +#: Resources/templates/Localizable.strings:721 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "设置一个 Intel HD4000 显卡的 AAPL,ig-platform-id。" #. type: "IntelAzul_title" -#: Resources/templates/Localizable.strings:708 +#: Resources/templates/Localizable.strings:724 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" -#: Resources/templates/Localizable.strings:709 +#: Resources/templates/Localizable.strings:725 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." msgstr "设置一个 Intel HD5000 显卡的 AAPL,ig-platform-id。" #. type: "HDEFPinConfiguration_title" -#: Resources/templates/Localizable.strings:712 +#: Resources/templates/Localizable.strings:728 #, no-wrap msgid "HDEF PinConfiguration" msgstr "HDEF PinConfiguration" #. type: "HDEFPinConfiguration_description" -#: Resources/templates/Localizable.strings:713 +#: Resources/templates/Localizable.strings:729 #, no-wrap msgid "Set one HDEF PinConfiguration to use." msgstr "设置选用一个 HDEF PinConfiguration。" #. type: "Video_title" -#: Resources/templates/Localizable.strings:716 +#: Resources/templates/Localizable.strings:732 #, no-wrap msgid "Video" msgstr "显卡选项" #. type: "Video_description" -#: Resources/templates/Localizable.strings:717 +#: Resources/templates/Localizable.strings:733 #, no-wrap msgid "A selection of options that deal with video." msgstr "一些设置显卡的选项。" #. type: "Keymaps_title" -#: Resources/templates/Localizable.strings:720 +#: Resources/templates/Localizable.strings:736 #, no-wrap msgid "KeyLayout" msgstr "键盘布局" #. type: "Keymaps_description" -#: Resources/templates/Localizable.strings:721 +#: Resources/templates/Localizable.strings:737 #, no-wrap msgid "Select one keylayout to use. This will also install the Keylayout module and keymaps." msgstr "设置选用一个键盘布局。将会安装键盘布局模组与键盘映射文件。" #. type: "Themes_title" -#: Resources/templates/Localizable.strings:724 +#: Resources/templates/Localizable.strings:740 #, no-wrap msgid "Themes" msgstr "主题选项" #. type: "Themes_description" -#: Resources/templates/Localizable.strings:725 +#: Resources/templates/Localizable.strings:741 #, no-wrap msgid "" "A collection of sample themes\n" Index: branches/ErmaC/Enoch/CREDITS =================================================================== --- branches/ErmaC/Enoch/CREDITS (revision 2456) +++ branches/ErmaC/Enoch/CREDITS (revision 2457) @@ -7,7 +7,7 @@ Thanks to: --------- -bumby, kalyway, Krazubu, Eddie11c, JaS, fassl, XyZ, SMF, flama, Galaxy, sckevyn, MasterChief, smith@@, blackosx, DHP, nawcom, scorpius, macman, dmazar +bumby, kalyway, Krazubu, Eddie11c, JaS, fassl, XyZ, SMF, flama, Galaxy, sckevyn, MasterChief, smith@@, blackosx, DHP, nawcom, scorpius, macman, dmazar, Pike R. Alpha, Micky1979, Bungo, MinusZwei Package: --------- @@ -15,4 +15,4 @@ Copyright: --------- -2008-2014 +2008 Index: branches/ErmaC/Enoch/Make.rules =================================================================== --- branches/ErmaC/Enoch/Make.rules (revision 2456) +++ branches/ErmaC/Enoch/Make.rules (revision 2457) @@ -12,6 +12,7 @@ LD = ld CC = gcc CPP = g++ + PAX = /bin/pax NASM = $(shell which nasm) -p $(SRCROOT)/autoconf.inc @@ -49,49 +50,49 @@ $(OBJROOT)/%.o: %.c - @echo "\t[CC] $<" + @echo " [CC] $<" @$(CC) $(CFLAGS) $(DEFINES) -c $(INC) $< -o $@ \ -MD -dependency-file $(OBJROOT)/$*.d @cat "$(OBJROOT)/$*.d" >>"$(OBJROOT)/Makedep" @rm -f "$(OBJROOT)/$*.d" $(OBJROOT)/%.o32: %.c - @echo "\t[CC32] $<" + @echo " [CC32] $<" @$(CC) $(CFLAGS) $(DEFINES) -c $(INC) -arch i386 $< -o $@ \ -MD -dependency-file $(OBJROOT)/$*.d @cat "$(OBJROOT)/$*.d" >>"$(OBJROOT)/Makedep" @rm -f "$(OBJROOT)/$*.d" $(OBJROOT)/%.o64: %.c - @echo "\t[CC64] $<" + @echo " [CC64] $<" @$(CC) $(CFLAGS) $(DEFINES) -c $(INC) -arch x86_64 $< -o $@ \ -MD -dependency-file $(OBJROOT)/$*.d @cat "$(OBJROOT)/$*.d" >>"$(OBJROOT)/Makedep" @rm -f "$(OBJROOT)/$*.d" $(OBJROOT)/%.o: %.m - @echo "\t[M] $<" + @echo " [M] $<" @$(CC) $(CFLAGS) $(DEFINES) -c $(INC) $< -o $@ \ -MD -dependency-file $(OBJROOT)/$*.d @cat "$(OBJROOT)/$*.d" >>"$(OBJROOT)/Makedep" @rm -f "$(OBJROOT)/$*.d" $(OBJROOT)/%.o: %.cpp - @echo "\t[CPP] $<" + @echo " [CPP] $<" @$(CPP) $(CPPFLAGS) $(CFLAGS) -c "$<" $(INC) -o $@ \ -MD -dependency-file $(OBJROOT)/$*.d @cat "$(OBJROOT)/$*.d" >>"$(OBJROOT)/Makedep" @rm -f "$(OBJROOT)/$*.d" $(OBJROOT)/boot2.o: - @echo "\t[AS] boot2.s" - @$(CC) -Wa,-n -c $(INC) -arch i386 -o $(OBJROOT)/$(@F) boot2.s \ + @echo " [AS] boot2.s" + @$(CC) -Wa, -c $(INC) -arch i386 -o $(OBJROOT)/$(@F) boot2.s \ -MD -dependency-file $*.d @cat "$*.d" >>"$(OBJROOT)/Makedep" @rm -f "$*.d" $(OBJROOT)/%.o: %.s - @echo "\t[AS] $<" + @echo " [AS] $<" @$(CC) $(CPPFLAGS) -c $(INC) -arch i386 -o $@ $< \ -MD -dependency-file $*.d @cat "$*.d" >>"$(OBJROOT)/Makedep" @@ -114,7 +115,7 @@ # This breaks make, must use make all (FIXME) $(DIRS_NEEDED) $(INSTALLDIR) $(OBJROOT) $(SYMROOT): - @echo "\t[MKDIR] $@" + @echo " [MKDIR] $@" @$(MKDIRS) $@ # Recursive rules @@ -152,13 +153,13 @@ else \ local_target="$$target"; \ fi; \ - (cd $$subdir && $(MAKE) $$local_target) \ + (cd $$subdir && $(MAKE) --no-print-directory $$local_target) \ || eval $$failcom; \ done clean-dep: - @if [ -f "$(OBJROOT)/Makedep" ];then echo "\t[RM] $(OBJROOT)/Makedep"; fi + @if [ -f "$(OBJROOT)/Makedep" ];then echo " [RM] $(OBJROOT)/Makedep"; fi @rm -f $(OBJROOT)/Makedep @@ -166,11 +167,11 @@ # clean: remove almost everything (execpt auto.conf, autoconf.h, autoconf.inc) clean: clean-recursive clean-dep - @if [ -d "$(OBJROOT)" ];then echo "\t[RMDIR] $(OBJROOT)"; fi - @if [ -d "$(SYMROOT)" ];then echo "\t[RMDIR] $(SYMROOT)"; fi - @if [ -d "$(DSTROOT)" ];then echo "\t[RMDIR] $(DSTROOT)"; fi + @if [ -d "$(OBJROOT)" ];then echo " [RMDIR] $(OBJROOT)"; fi + @if [ -d "$(SYMROOT)" ];then echo " [RMDIR] $(SYMROOT)"; fi + @if [ -d "$(DSTROOT)" ];then echo " [RMDIR] $(DSTROOT)"; fi @if [ -d "$(SRCROOT)/i386/modules/module_includes" ];then \ - echo "\t[RMDIR] $(SRCROOT)/i386/modules/module_includes"; \ + echo " [RMDIR] $(SRCROOT)/i386/modules/module_includes"; \ fi @rm -rf $(OBJROOT) $(SYMROOT) $(DSTROOT) \ $(SRCROOT)/i386/modules/module_includes Index: branches/ErmaC/Enoch/CHANGES =================================================================== --- branches/ErmaC/Enoch/CHANGES (revision 2456) +++ branches/ErmaC/Enoch/CHANGES (revision 2457) @@ -1,3 +1,43 @@ +- bitshoveler : Remove "-x" option from "ld" command which breaks build under newer Xcode versions (/i386/modules/MakeInc.dir) +- bitshoveler : Comment out some unused functions by expanding "#if UNUSED" conditional (stringTable.c) +- bitshoveler : Comment out unused static functions, which cause build to fail in "release" mode (vbe.c) +- bitshoveler : Fix null pointer handling (nvidia.c) +- bitshoveler : Only write terminating null char if malloc succeeded (strndup.c) +- bitshoveler : Fix memory leak (bdmesg.c) +- ErmaC : (re)enable klibc module +- ErmaC : Merge Recovery Icons(png) courtesy of blackosx +- ErmaC : Merge Yosemite patch (ready from June 2014) Thanks all involved in the test and develop; + Special thanks: Alex J, viv xix, zenith432 from http://forge.voodooprojects.org/p/chameleon/issues/375/ + Testing and improvements: Pike R. Alpha, ErmaC, Bungo, blackosx, Micky1979, crazybirdy, oldnapalm, janek202, MinusZwei and Andy Vandijck. + +- Pike R. Alpha : dinamic "random-seed" implementation ( http://www.insanelymac.com/forum/topic/301350-lets-make-random-seed-really-random/ ) +- ErmaC : getCPUTick() helper function ( http://www.insanelymac.com/forum/topic/301350-lets-make-random-seed-really-random/ ) +- ErmaC : Add Yosemite Icons detection for chameleon UI +- blackosx : Add chameleon UI Icons for Yosemite +- ErmaC : Use macro instead of full checkOSVersion +- viv xix : Move checkOSVersion into boot header +- ErmaC : define macro for OS X Versions +- Slice and Clover Team : Replace "NULL" terminated strings and fit Boot2 Sectors size +- ErmaC : Update bootargs +- crazybirdy : Fit length for "Loading Darwin" +- meklort : Update align directives to 2^(old_align) +- Ermac : Bump svn to 2.3 +- ErmaC : Update efi Header +- cparm : buffer BPS +- cparm : devprop_generate_string optimized by cparm +- ErmaC : Update CPUID and change conditional logic. +- ErmaC : Typo & ID names +- meklort : Make compile on gcc w/ errors enabled. +- bitshoveler : Remove the '-x' option from the offending 'ld' command +- Jief : Makefile dependency missing for boot0 and boot1h +- ErmaC : Temp disable klibc module +- meklort : Silence output. +- meklort : Add --no-print-directory. +- meklort : Replace \t with tab. +- ErmaC : Update Chameleon.xcodeproj +- ErmaC : Merge LZVN decompression routine by MinusZwei (C Conversion) based on works from Pike R. Alpha and AnV Software (Andy Vandijck). +- Bungo : Loading custom ECDT.aml, Darwin version string printing, clean boot-args, change firmware rev. to real Mac (0x0001000a), added kernel-compatibility, boot-file, boot-args, machine-signature, random-seed DT properties & some minor changes. +- ErmaC : Merge tja's patch http://forum.voodooprojects.org/index.php/topic,5951.0.html - bitshoveler : Optimized basic string functions strlen, strncmp, strncat, strcat - ErmaC : Replaced sprintf with snprintf in spd.c. - bitshoveler : Fixed inadvertent text buffer overflow in getDDRSerial