Index: trunk/i386/libsaio/gma.c =================================================================== --- trunk/i386/libsaio/gma.c (revision 2258) +++ trunk/i386/libsaio/gma.c (revision 2259) @@ -155,41 +155,43 @@ bool setup_gma_devprop(pci_dt_t *gma_dev) { - char *devicepath; + char *devicepath = NULL; volatile uint8_t *regs; - uint32_t bar[7]; - char *model; + uint32_t bar[7]; + char *model = NULL; uint8_t BuiltIn = 0x00; - uint8_t ClassFix[4] = { 0x00, 0x00, 0x03, 0x00 }; + uint8_t ClassFix[4] = { 0x00, 0x00, 0x03, 0x00 }; unsigned int device_id; - + devicepath = get_pci_dev_path(gma_dev); - + bar[0] = pci_config_read32(gma_dev->dev.addr, 0x10); regs = (uint8_t *) (bar[0] & ~0x0f); - + model = get_gma_model((gma_dev->vendor_id << 16) | gma_dev->device_id); device_id = gma_dev->device_id; - + verbose("Intel %s [%04x:%04x] :: %s\n", model, gma_dev->vendor_id, gma_dev->device_id, devicepath); - + if (!string) + { string = devprop_create_string(); - + } + struct DevPropDevice *device = malloc(sizeof(struct DevPropDevice)); device = devprop_add_device(string, devicepath); - + if (!device) { printf("Failed initializing dev-prop string dev-entry.\n"); pause(); return false; } - + devprop_add_value(device, "model", (uint8_t*)model, (strlen(model) + 1)); devprop_add_value(device, "device_type", (uint8_t*)"display", 8); - + if ((model == (char *)&"Mobile GMA950") || (model == (char *)&"Mobile GMA3150")) { @@ -333,9 +335,9 @@ pause(); return false; } - + memcpy(stringdata, (uint8_t*)devprop_generate_string(string), string->length); stringlength = string->length; - + return true; } Index: trunk/i386/libsaio/device_inject.c =================================================================== --- trunk/i386/libsaio/device_inject.c (revision 2258) +++ trunk/i386/libsaio/device_inject.c (revision 2259) @@ -113,14 +113,14 @@ sprintf(buff, "%c%c", path[curr], path[curr+1]); else if(x-curr == 1) sprintf(buff, "%c", path[curr]); - else + else { printf("ERROR parsing device path\n"); numpaths = 0; break; } device->pci_dev_path[numpaths].device = ascii_hex_to_int(buff); - + x += 3; // 0x curr = x; while(path[++x] != ')'); @@ -135,7 +135,7 @@ break; } device->pci_dev_path[numpaths].function = ascii_hex_to_int(buff); // TODO: find dev from char *path - + numpaths++; } } @@ -253,7 +253,7 @@ dp_swap16(string->numentries), string->WHAT3); buffer += 24; int i = 0, x = 0; - + while(i < string->numentries) { sprintf(buffer, "%08x%04x%04x", dp_swap32(string->entries[i]->length), @@ -297,7 +297,7 @@ { if(!string) return; - + int i; for(i = 0; i < string->numentries; i++) { @@ -312,11 +312,49 @@ string->entries[i] = NULL; } } - + free(string); string = NULL; } +/* ======================================================= */ + + +/******************************************************************* + * Decodes a sequence of 'len' hexadecimal chars from 'hex' into * + * a binary. returns -1 in case of error (i.e. badly formed chars) * + *******************************************************************/ +int hex2bin(const char *hex, uint8_t *bin, int len) +{ + char *p; + int i; + char buf[3]; + + if (hex == NULL || bin == NULL || len <= 0 || strlen(hex) != len * 2) + { + printf("[ERROR] bin2hex input error\n"); + return -1; + } + + buf[2] = '\0'; + p = (char *) hex; + + for (i = 0; i < len; i++) + { + if (p[0] == '\0' || p[1] == '\0' || !isxdigit(p[0]) || !isxdigit(p[1])) + { + printf("[ERROR] bin2hex '%s' syntax error\n", hex); + return -2; + } + buf[0] = *p++; + buf[1] = *p++; + bin[i] = (unsigned char) strtoul(buf, NULL, 16); + } + return 0; +} + +/* ======================================================= */ + /* a fine place for this code */ int devprop_add_network_template(struct DevPropDevice *device, uint16_t vendor_id) Index: trunk/i386/libsaio/device_inject.h =================================================================== --- trunk/i386/libsaio/device_inject.h (revision 2258) +++ trunk/i386/libsaio/device_inject.h (revision 2259) @@ -14,10 +14,6 @@ #define DEV_PROP_DEVICE_MAX_ENTRIES 64 -extern struct DevPropString *string; -extern uint8_t *stringdata; -extern uint32_t stringlength; - extern void setupDeviceProperties(Node *node); struct ACPIDevPath { @@ -45,7 +41,7 @@ struct DevPropDevice { uint32_t length; uint16_t numentries; - uint16_t WHAT2; // 0x0000 ? + uint16_t WHAT2; // 0x0000 ? struct ACPIDevPath acpi_dev_path; // = 0x02010c00 0xd041030a struct PCIDevPath pci_dev_path[MAX_PCI_DEV_PATHS]; // = 0x01010600 func dev struct DevicePathEnd path_end; // = 0x7fff0400 @@ -65,12 +61,16 @@ struct DevPropDevice **entries; }; -char *efi_inject_get_devprop_string(uint32_t *len); -int devprop_add_network_template(struct DevPropDevice *device, uint16_t vendor_id); +extern struct DevPropString *string; +extern uint8_t *stringdata; +extern uint32_t stringlength; struct DevPropString *devprop_create_string(void); struct DevPropDevice *devprop_add_device(struct DevPropString *string, char *path); +char *efi_inject_get_devprop_string(uint32_t *len); int devprop_add_value(struct DevPropDevice *device, char *nm, uint8_t *vl, uint32_t len); char *devprop_generate_string(struct DevPropString *string); void devprop_free_string(struct DevPropString *string); +int devprop_add_network_template(struct DevPropDevice *device, uint16_t vendor_id); +int hex2bin(const char *hex, uint8_t *bin, int len); #endif /* !__LIBSAIO_DEVICE_INJECT_H */ Index: trunk/i386/libsaio/nvidia.c =================================================================== --- trunk/i386/libsaio/nvidia.c (revision 2258) +++ trunk/i386/libsaio/nvidia.c (revision 2259) @@ -1161,6 +1161,7 @@ { 0x10DE11E3, "GeForce GTX 760M" }, // 11F0 - 11FF { 0x10DE11FA, "Quadro K4000" }, + { 0x10DE11FC, "Quadro 2100M" }, // 1200 - 120F { 0x10DE1200, "GeForce GTX 560 Ti" }, { 0x10DE1201, "GeForce GTX 560" }, @@ -1199,8 +1200,12 @@ { 0x10DE1292, "GeForce GT 740M" }, { 0x10DE1293, "GeForce GT 730M" }, { 0x10DE1294, "GeForce GT 740M" }, + { 0x10DE1295, "GeForce GT 710M" }, // 12A0 - 12AF //{ 0x10DE12A0, "GeForce GT ???" }, + { 0x10DE12AF, "GK208-INT" }, + { 0x10DE12B0, "GK208-CS-Q" }, + { 0x10DE12BA, "Quadro K510M" } // 12B0 - 12BF // 12C0 - 12CF // 12D0 - 12DF @@ -1472,7 +1477,9 @@ } if (numentries >= MAX_NUM_DCB_ENTRIES) + { numentries = MAX_NUM_DCB_ENTRIES; + } uint8_t num_outputs = 0, i = 0; @@ -1490,11 +1497,17 @@ /* Should we allow discontinuous DCBs? Certainly DCB I2C tables can be discontinuous */ if ((connection & 0x0000000f) == 0x0000000f) /* end of records */ + { continue; + } if (connection == 0x00000000) /* seen on an NV11 with DCB v1.5 */ + { continue; + } if ((connection & 0xf) == 0x6) /* we skip type 6 as it doesnt appear on macbook nvcaps */ + { continue; + } entries[num_outputs].type = connection & 0xf; entries[num_outputs].index = num_outputs; @@ -1522,7 +1535,9 @@ for (i = 0; i < num_outputs; i++) { if (entries[i].type == TYPE_GROUPED) + { continue; + } channel2 |= ( 0x1 << entries[i].index); entries[i].type = TYPE_GROUPED; @@ -1537,7 +1552,9 @@ for (i=0; i 0 ? size : 0; @@ -1746,33 +1764,6 @@ return 1; } -int hex2bin(const char *hex, uint8_t *bin, int len) -{ - char *p; - int i; - char buf[3]; - - if (hex == NULL || bin == NULL || len <= 0 || strlen(hex) != len * 2) { - printf("[ERROR] bin2hex input error\n"); - return -1; - } - - buf[2] = '\0'; - p = (char *) hex; - - for (i = 0; i < len; i++) - { - if (p[0] == '\0' || p[1] == '\0' || !isxdigit(p[0]) || !isxdigit(p[1])) { - printf("[ERROR] bin2hex '%s' syntax error\n", hex); - return -2; - } - buf[0] = *p++; - buf[1] = *p++; - bin[i] = (unsigned char) strtoul(buf, NULL, 16); - } - return 0; -} - unsigned long long mem_detect(volatile uint8_t *regs, uint8_t nvCardType, pci_dt_t *nvda_dev, uint32_t device_id, uint32_t subsys_id) { unsigned long long vram_size = 0; @@ -1820,6 +1811,13 @@ case 0x0DF5: // GT 525M 0DF5 vram_size = 1024*1024*1024; break; + case 0x0F00: // GT 630 + // 10DE0F0014583544 2GB VRAM + //if (((nvda_dev->subsys_id.subsys.vendor_id << 16) | nvda_dev->subsys_id.subsys.device_id) == 0x14583544 ) + //{ + vram_size = -2147483648UL;//2147483648; + //} + break; case 0x11C6: // GTX650TI 11C6 // 10DE11C61043842A 1GB VRAM if (((nvda_dev->subsys_id.subsys.vendor_id << 16) | nvda_dev->subsys_id.subsys.device_id) == 0x1043842A ) @@ -2119,12 +2117,30 @@ devprop_add_value(device, "@0,display-cfg", default_dcfg_0, DCFG0_LEN); devprop_add_value(device, "@1,display-cfg", default_dcfg_1, DCFG1_LEN); - if (getBoolForKey(kVBIOS, &doit, &bootInfo->chameleonConfig) && doit) + /******************** Added Marchrius.**********************/ + // For the AppleBacklightDisplay // + /***********************************************************/ + if (getBoolForKey(kEnableBacklight, &doit, &bootInfo->chameleonConfig) && doit) { - devprop_add_value(device, "vbios", rom, (nvBiosOveride > 0) ? nvBiosOveride : (rom[2] * 512)); + uint8_t AAPL_value[] = {0x01, 0x00, 0x00, 0x00}; //Is the same for all + devprop_add_value(device, "AAPL,HasPanel", AAPL_value, 4); + devprop_add_value(device, "AAPL,Haslid", AAPL_value, 4); + devprop_add_value(device, "AAPL,backlight-control", AAPL_value, 4); + devprop_add_value(device, "@0,backlight-control", AAPL_value, 4); } + /************************** End ****************************/ - //add HDMI Audio back to nvidia + /***********************************************************/ + // For the DualLink // + /***********************************************************/ + if (getBoolForKey(kEnableDualLink, &doit, &bootInfo->chameleonConfig) && doit) + { + uint8_t AAPL00_value[] = {0x01, 0x00, 0x00, 0x00}; + devprop_add_value(device, "AAPL00,DualLink", AAPL00_value, 4); + } + /************************** End ****************************/ + + /************************ HDMI Audio ***********************/ doit = false; //http://forge.voodooprojects.org/p/chameleon/issues/67/ if(getBoolForKey(kEnableHDMIAudio, &doit, &bootInfo->chameleonConfig) && doit) @@ -2132,8 +2148,13 @@ static uint8_t connector_type_1[]= {0x00, 0x08, 0x00, 0x00}; devprop_add_value(device, "@1,connector-type",connector_type_1, 4); } - //end Nvidia HDMI Audio + /************************ End Audio *************************/ + if (getBoolForKey(kVBIOS, &doit, &bootInfo->chameleonConfig) && doit) + { + devprop_add_value(device, "vbios", rom, (nvBiosOveride > 0) ? nvBiosOveride : (rom[2] * 512)); + } + stringdata = malloc(sizeof(uint8_t) * string->length); memcpy(stringdata, (uint8_t*)devprop_generate_string(string), string->length); stringlength = string->length; Index: trunk/i386/libsaio/ati.c =================================================================== --- trunk/i386/libsaio/ati.c (revision 2258) +++ trunk/i386/libsaio/ati.c (revision 2259) @@ -1330,17 +1330,17 @@ { 0x9555, 0x00000000, CHIP_FAMILY_RV710, "ATI Radeon HD4300/HD4500 series", kShrike }, - { 0x9557, 0x00000000, CHIP_FAMILY_RV710, "ATI FirePro RG220", kFlicker }, + { 0x9557, 0x00000000, CHIP_FAMILY_RV710, "ATI FirePro RG220", kFlicker }, { 0x955F, 0x00000000, CHIP_FAMILY_RV710, "ATI Radeon HD 4330M series", kFlicker }, - { 0x9580, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD Series", kHypoprion }, + { 0x9580, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD Series", kHypoprion }, { 0x9581, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 XT", kHypoprion }, { 0x9583, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 XT", kHypoprion }, { 0x9586, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 XT Series", kHypoprion }, - { 0x9587, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 Pro Series", kHypoprion }, + { 0x9587, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 Pro Series", kHypoprion }, { 0x9588, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 XT", kHypoprion }, { 0x9589, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 PRO", kHypoprion }, { 0x958A, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 X2 Series", kLamna }, @@ -1348,7 +1348,7 @@ { 0x958C, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 X2 Series", kLamna }, { 0x958D, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 X2 Series", kLamna }, { 0x958E, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD 2600 X2 Series", kLamna }, - { 0x958F, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD Series", kHypoprion }, + { 0x958F, 0x00000000, CHIP_FAMILY_RV630, "ATI Radeon HD Series", kHypoprion }, { 0x9591, 0x00000000, CHIP_FAMILY_RV635, "ATI Radeon HD 3600 Series", kMegalodon }, @@ -1366,7 +1366,7 @@ { 0x9614, 0x00000000, CHIP_FAMILY_RS780, "ATI Radeon HD 3300 Graphics", kNull }, - { 0x9616, 0x00000000, CHIP_FAMILY_RS780, "AMD 760G", kNull }, + { 0x9616, 0x00000000, CHIP_FAMILY_RS780, "AMD 760G", kNull }, { 0x9710, 0x00000000, CHIP_FAMILY_RS880, "ATI Radeon HD 4200 Series", kNull }, @@ -1382,7 +1382,7 @@ { 0x9806, 0x00000000, CHIP_FAMILY_RS880, "ATI Radeon HD 6320 Series", kNull }, /* Evergreen */ - { 0x688D, 0x00000000, CHIP_FAMILY_CYPRESS, "AMD FireStream 9350", kZonalis }, + { 0x688D, 0x00000000, CHIP_FAMILY_CYPRESS, "AMD FireStream 9350", kZonalis }, { 0x6898, 0x00000000, CHIP_FAMILY_CYPRESS, "ATI Radeon HD 5870 Series", kUakari }, { 0x6899, 0x00000000, CHIP_FAMILY_CYPRESS, "ATI Radeon HD 5850 Series", kUakari }, @@ -1395,11 +1395,11 @@ { 0x68A0, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 5770 Series", kHoolock }, // CHIP_FAMILY_BROADWAY ?? { 0x68A1, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 5850 Series", kHoolock }, // CHIP_FAMILY_BROADWAY ?? - { 0x68A8, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 6850M", kHoolock }, + { 0x68A8, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 6850M", kHoolock }, { 0x68A9, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI FirePro V5800 (FireGL)", kHoolock }, - { 0x68B0, 0x00000000, CHIP_FAMILY_CYPRESS, "ATI Mobility Radeon HD 5800 Series", kHoolock }, // CHIP_FAMILY_BROADWAY ?? + { 0x68B0, 0x00000000, CHIP_FAMILY_CYPRESS, "ATI Mobility Radeon HD 5800 Series", kHoolock }, // CHIP_FAMILY_BROADWAY ?? { 0x68B1, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 5770 Series", kHoolock }, { 0x68B8, 0x00000000, CHIP_FAMILY_JUNIPER, "ATI Radeon HD 5770 Series", kHoolock }, @@ -1412,7 +1412,7 @@ { 0x68C0, 0x00000000, CHIP_FAMILY_REDWOOD, "AMD Radeon HD 6570M/5700 Series", kBaboon }, { 0x68C1, 0x00000000, CHIP_FAMILY_REDWOOD, "AMD Radeon HD 6500M/5600/5700 Series", kBaboon }, { 0x68C8, 0x00000000, CHIP_FAMILY_REDWOOD, "ATI Radeon HD 5650 Series", kBaboon }, - { 0x68C9, 0x00000000, CHIP_FAMILY_REDWOOD, "FirePro 3D V3800", kBaboon }, + { 0x68C9, 0x00000000, CHIP_FAMILY_REDWOOD, "FirePro 3D V3800", kBaboon }, { 0x68D8, 0x00000000, CHIP_FAMILY_REDWOOD, "ATI Radeon HD 5670 Series", kBaboon }, { 0x68D9, 0x00000000, CHIP_FAMILY_REDWOOD, "ATI Radeon HD 5500/5600 Series", kBaboon }, @@ -1484,48 +1484,48 @@ /* Southen Islands */ - { 0x6780, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, // ATI7000Controller.kext + { 0x6780, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, // ATI7000Controller.kext -// { 0x6784, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD ??? Series", kFutomaki }, +// { 0x6784, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD ??? Series", kFutomaki }, -// { 0x6788, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD ??? Series", kFutomaki }, +// { 0x6788, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD ??? Series", kFutomaki }, - { 0x678A, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, + { 0x678A, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, - { 0x6790, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, // ATI7000Controller.kext - { 0x6791, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, - { 0x6792, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, + { 0x6790, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, // ATI7000Controller.kext + { 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 }, // ATI7000Controller.kext - { 0x6799, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7990 Series", kAji }, - { 0x679A, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7950 Series", kFutomaki }, // ATI7000Controller.kext - { 0x679B, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, + { 0x6798, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7970 X-Edition", kFutomaki }, // ATI7000Controller.kext + { 0x6799, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7990 Series", kAji }, + { 0x679A, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7950 Series", kFutomaki }, // ATI7000Controller.kext + { 0x679B, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7900 Series", kFutomaki }, - { 0x679E, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7870 XT", kFutomaki }, // ATI7000Controller.kext - { 0x679F, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7950 Series", kFutomaki }, + { 0x679E, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7870 XT", kFutomaki }, // ATI7000Controller.kext + { 0x679F, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7950 Series", kFutomaki }, - { 0x6800, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7970M", kBuri }, // ATI7000Controller.kext -// { 0x6801, 0x00000000, CHIP_FAMILY_PITCAIRN, "AMD Radeon HD 8970M Series", kFutomaki }, -// { 0x6802, 0x00000000, CHIP_FAMILY_PITCAIRN, "AMD Radeon HD ???M Series", kFutomaki }, + { 0x6800, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7970M", kBuri }, // ATI7000Controller.kext +// { 0x6801, 0x00000000, CHIP_FAMILY_PITCAIRN, "AMD Radeon HD 8970M Series", kFutomaki }, +// { 0x6802, 0x00000000, CHIP_FAMILY_PITCAIRN, "AMD Radeon HD ???M Series", kFutomaki }, - { 0x6806, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7600 Series", kFutomaki }, // ATI7000Controller.kext + { 0x6806, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7600 Series", kFutomaki }, // ATI7000Controller.kext - { 0x6808, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7600 Series", kFutomaki }, // ATI7000Controller.kext -// { 0x6809, 0x00000000, CHIP_FAMILY_PITCAIRN, "AMD Radeon HD ??? Series", kNull }, -// { 0x6810, 0x00000000, CHIP_FAMILY_PITCAIRN, "AMD Radeon HD ??? Series", kNull }, + { 0x6808, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7600 Series", kFutomaki }, // ATI7000Controller.kext +// { 0x6809, 0x00000000, CHIP_FAMILY_PITCAIRN, "AMD Radeon HD ??? Series", kNull }, +// { 0x6810, 0x00000000, CHIP_FAMILY_PITCAIRN, "AMD Radeon HD ??? Series", kNull }, - { 0x6818, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7870 Series", kFutomaki }, // CHIP_FAMILY_PITCAIRN ??// ATI7000Controller.kext - { 0x6819, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7850 Series", kFutomaki },// CHIP_FAMILY_PITCAIRN ?? - { 0x6820, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7700 Series", kBuri }, // ATI7000Controller.kext - { 0x6821, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7700 Series", kBuri }, // ATI7000Controller.kext + { 0x6818, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7870 Series", kFutomaki }, // CHIP_FAMILY_PITCAIRN ??// ATI7000Controller.kext + { 0x6819, 0x00000000, CHIP_FAMILY_TAHITI, "AMD Radeon HD 7850 Series", kFutomaki },// CHIP_FAMILY_PITCAIRN ?? + { 0x6820, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7700 Series", kBuri }, // ATI7000Controller.kext + { 0x6821, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7700 Series", kBuri }, // ATI7000Controller.kext -// { 0x6823, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 8800M Series", kBuri }, -// { 0x6824, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7700M Series", kBuri }, - { 0x6825, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7870 Series", kBuri }, // ATI7000Controller.kext - { 0x6826, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7700 Series", kBuri }, - { 0x6827, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7850M/8850M Series", kBuri }, // ATI7000Controller.kext -// { 0x6828, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD ??? Series", kBuri }, -// { 0x6829, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD ??? Series", kBuri }, +// { 0x6823, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 8800M Series", kBuri }, +// { 0x6824, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7700M Series", kBuri }, + { 0x6825, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7870 Series", kBuri }, // ATI7000Controller.kext + { 0x6826, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7700 Series", kBuri }, + { 0x6827, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 7850M/8850M Series", kBuri }, // ATI7000Controller.kext +// { 0x6828, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD ??? Series", kBuri }, +// { 0x6829, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD ??? Series", kBuri }, { 0x682B, 0x00000000, CHIP_FAMILY_VERDE, "AMD Radeon HD 8800M Series", kBuri }, @@ -1552,10 +1552,10 @@ { 0x6843, 0x00000000, CHIP_FAMILY_THAMES, "AMD Radeon HD 7670M Series", kPondweed }, { 0x6849, 0x00000000, CHIP_FAMILY_LOMBOK, "AMD Radeon HD 7600M Series", kPondweed }, -// { 0x684C, 0x00000000, CHIP_FAMILY_PITCAIRN, "AMD Radeon HD ??? Series", kNull }, - { 0x6850, 0x00000000, CHIP_FAMILY_LOMBOK, "AMD Radeon HD 7600M Series", kPondweed }, - { 0x6858, 0x00000000, CHIP_FAMILY_LOMBOK, "AMD Radeon HD 7400 Series", kPondweed }, - { 0x6859, 0x00000000, CHIP_FAMILY_LOMBOK, "AMD Radeon HD 7600M Series", kPondweed }, +// { 0x684C, 0x00000000, CHIP_FAMILY_PITCAIRN, "AMD Radeon HD ??? Series", kNull }, + { 0x6850, 0x00000000, CHIP_FAMILY_LOMBOK, "AMD Radeon HD 7600M Series", kPondweed }, + { 0x6858, 0x00000000, CHIP_FAMILY_LOMBOK, "AMD Radeon HD 7400 Series", kPondweed }, + { 0x6859, 0x00000000, CHIP_FAMILY_LOMBOK, "AMD Radeon HD 7600M Series", kPondweed }, { 0x0000, 0x00000000, CHIP_FAMILY_UNKNOW, NULL, kNull } }; Index: trunk/i386/libsaio/msdos.c =================================================================== --- trunk/i386/libsaio/msdos.c (revision 2258) +++ trunk/i386/libsaio/msdos.c (revision 2259) @@ -721,7 +721,7 @@ *flags = kFileTypeFlat; // Calculate a fake timestamp using modification date and time values. - *time = (dirp->deMDate & 0x7FFF) << 16 + dirp->deMTime; + *time = ((dirp->deMDate & 0x7FFF) << 16) + dirp->deMTime; if (infoValid) *infoValid = 1; @@ -777,7 +777,7 @@ toread-=msdosclustersize; } - getDeviceDescription(ih, devStr); + getDeviceDescription(ih, devStr); verbose("Read FAT%d file: [%s/%s] %d bytes.\n", msdosfatbits, devStr, filePath, (uint32_t)( toread<0 ) ? wastoread : wastoread-toread); free (buf); @@ -840,7 +840,7 @@ long MSDOSLoadFile(CICell ih, char * filePath) { - return MSDOSReadFile(ih, filePath, (void *)gFSLoadAddress, 0, 0); + return MSDOSReadFile(ih, filePath, (void *)gFSLoadAddress, 0, 0); } /* Fix up volume label. */ Index: trunk/i386/boot2/drivers.c =================================================================== --- trunk/i386/boot2/drivers.c (revision 2258) +++ trunk/i386/boot2/drivers.c (revision 2259) @@ -203,7 +203,7 @@ // Next try a specfic OS version folder ie 10.5 sprintf(dirSpecExtra, "bt(0,0)/Extra/%s/", &gMacOSVersion); if (FileLoadDrivers(dirSpecExtra, 0) != 0) - { + { // Next we'll try the base strcpy(dirSpecExtra, "bt(0,0)/Extra/"); FileLoadDrivers(dirSpecExtra, 0); @@ -749,7 +749,7 @@ required = XMLGetProperty(moduleDict, kPropOSBundleRequired); //if ( (required != NULL) && (required->type == kTagTypeString) && !strcmp(required->string, "Safe Boot")) - if ( (required == 0) || (required->type != kTagTypeString) || !strcmp(required->string, "Safe Boot")) + if ( (required != NULL) && ((required->type != kTagTypeString) || (!strcmp(required->string, "Safe Boot"))) ) { XMLFreeTag(moduleDict); return -2; Index: trunk/i386/boot2/boot.h =================================================================== --- trunk/i386/boot2/boot.h (revision 2258) +++ trunk/i386/boot2/boot.h (revision 2259) @@ -129,6 +129,9 @@ #define kDcfg0 "display_0" /* nvidia.c */ #define kDcfg1 "display_1" /* nvidia.c */ +/* Marchrius: added these keys */ +#define kEnableBacklight "EnableBacklight" /* nvidia.c */ + /* Kabyl: added these keys */ #define kAtiConfig "AtiConfig" /* ati.c */ #define kAtiPorts "AtiPorts" /* ati.c */ @@ -144,8 +147,9 @@ #define kSkipIntelGfx "SkipIntelGfx" /* pci_setup.c */ #define kSkipNvidiaGfx "SkipNvidiaGfx" /* pci_setup.c */ #define kSkipAtiGfx "SkipAtiGfx" /* pci_setup.c */ -#define kHD4Kig "HD4K-ig" /* gma.c */ -#define kHD5Kig "HD5K-ig" /* gma.c */ +#define kIntelCapriFB "IntelCapriFB" /* gma.c was HD4K-ig */ +#define kIntelAzulFB "IntelAzulFB" /* gma.c was HD5K-ig */ +#define kAAPLCustomIG "InjectIntel-ig" /* gma.c */ /* * Flags to the booter or kernel Index: trunk/package/OptionalSettings/Video.txt =================================================================== --- trunk/package/OptionalSettings/Video.txt (revision 2258) +++ trunk/package/OptionalSettings/Video.txt (revision 2259) @@ -32,3 +32,5 @@ Bool@SkipIntelGfx:SkipIntelGfx=Yes Bool@SkipNvidiaGfx:SkipNvidiaGfx=Yes Bool@SkipAtiGfx:SkipAtiGfx=Yes +Bool@EnableBacklight:EnableBacklight=Yes +Bool@EnableDualLink:EnableDualLink=Yes Index: trunk/package/OptionalSettings/General.txt =================================================================== --- trunk/package/OptionalSettings/General.txt (revision 2258) +++ trunk/package/OptionalSettings/General.txt (revision 2259) @@ -28,6 +28,7 @@ Text@arch:arch=i386 Bool@EHCIacquire:EHCIacquire=Yes Bool@EthernetBuiltIn:EthernetBuiltIn=Yes +#Bool@EnableWifi:EnableWifi=Yes Bool@ForceHPET:ForceHPET=Yes Bool@ForceWake:ForceWake=Yes Bool@RestartFix:RestartFix=No Index: trunk/package/bin/po4a/lib/Locale/Po4a/Xml.pm =================================================================== --- trunk/package/bin/po4a/lib/Locale/Po4a/Xml.pm (revision 2258) +++ trunk/package/bin/po4a/lib/Locale/Po4a/Xml.pm (revision 2259) @@ -339,7 +339,7 @@ form EaaaE, but you can join some (EbbbEEaaaE) to say that the content of the tag EaaaE will only be translated when it's into a EbbbE tag. -You can also specify some tag options putting some characters in front of +You can also specify some tag options by putting some characters in front of the tag hierarchy. For example, you can put 'w' (wrap) or 'W' (don't wrap) to override the default behavior specified by the global "wrap" option. @@ -428,9 +428,9 @@ (), if a tag () should only be considered when it's into another tag (). -You can also specify some tag options putting some characters in front of +You can also specify some tag options by putting some characters in front of the tag hierarchy. For example, you can put 'w' (wrap) or 'W' (don't wrap) -to overide the default behavior specified by the global "wrap" option. +to override the default behavior specified by the global "wrap" option. Example: WEchapterEEtitleE Index: trunk/package/Resources/templates/Localizable.strings =================================================================== --- trunk/package/Resources/templates/Localizable.strings (revision 2258) +++ trunk/package/Resources/templates/Localizable.strings (revision 2259) @@ -439,91 +439,91 @@ // ---------------------------------------------------------------------------- -"HD4K-igx00_title" = "01660000"; -"HD4K-igx00_description" = "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; +"IntelCaprix00_title" = "01660000"; +"IntelCaprix00_description" = "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; -"HD4K-igx01_title" = "01660001"; -"HD4K-igx01_description" = "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; +"IntelCaprix01_title" = "01660001"; +"IntelCaprix01_description" = "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; -"HD4K-igx02_title" = "01660002"; -"HD4K-igx02_description" = "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; +"IntelCaprix02_title" = "01660002"; +"IntelCaprix02_description" = "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; -"HD4K-igx03_title" = "01660003"; -"HD4K-igx03_description" = "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; +"IntelCaprix03_title" = "01660003"; +"IntelCaprix03_description" = "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; -"HD4K-igx04_title" = "01660004"; -"HD4K-igx04_description" = "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; +"IntelCaprix04_title" = "01660004"; +"IntelCaprix04_description" = "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; -"HD4K-igx05_title" = "01620005"; -"HD4K-igx05_description" = "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."; +"IntelCaprix05_title" = "01620005"; +"IntelCaprix05_description" = "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."; -"HD4K-igx06_title" = "01620006"; -"HD4K-igx06_description" = "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."; +"IntelCaprix06_title" = "01620006"; +"IntelCaprix06_description" = "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."; -"HD4K-igx07_title" = "01620007"; -"HD4K-igx07_description" = "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."; +"IntelCaprix07_title" = "01620007"; +"IntelCaprix07_description" = "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."; -"HD4K-igx08_title" = "01660008"; -"HD4K-igx08_description" = "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; +"IntelCaprix08_title" = "01660008"; +"IntelCaprix08_description" = "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; -"HD4K-igx09_title" = "01660009"; -"HD4K-igx09_description" = "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; +"IntelCaprix09_title" = "01660009"; +"IntelCaprix09_description" = "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; -"HD4K-igx10_title" = "0166000a"; -"HD4K-igx10_description" = "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; +"IntelCaprix10_title" = "0166000a"; +"IntelCaprix10_description" = "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; -"HD4K-igx11_title" = "0166000b"; -"HD4K-igx11_description" = "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; +"IntelCaprix11_title" = "0166000b"; +"IntelCaprix11_description" = "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."; // ---------------------------------------------------------------------------- -"HD5K-igx00_title" = "00000604"; -"HD5K-igx00_description" = "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx00_title" = "00000604"; +"IntelAzulx00_description" = "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx01_title" = "00001604"; -"HD5K-igx01_description" = "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx01_title" = "0000060c"; +"IntelAzulx01_description" = "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx02_title" = "02001604"; -"HD5K-igx02_description" = "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx02_title" = "00001604"; +"IntelAzulx02_description" = "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx03_title" = "00002604"; -"HD5K-igx03_description" = "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx03_title" = "0000160a"; +"IntelAzulx03_description" = "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx04_title" = "0000160a"; -"HD5K-igx04_description" = "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx04_title" = "0000160c"; +"IntelAzulx04_description" = "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx05_title" = "0000260a"; -"HD5K-igx05_description" = "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx05_title" = "00002604"; +"IntelAzulx05_description" = "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx06_title" = "0500260a"; -"HD5K-igx06_description" = "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx06_title" = "0000260a"; +"IntelAzulx06_description" = "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx07_title" = "0600260a"; -"HD5K-igx07_description" = "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx07_title" = "0000260c"; +"IntelAzulx07_description" = "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx08_title" = "0800260a"; -"HD5K-igx08_description" = "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx08_title" = "0000260d"; +"IntelAzulx08_description" = "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx09_title" = "08002e0a"; -"HD5K-igx09_description" = "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx09_title" = "02001604"; +"IntelAzulx09_description" = "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx10_title" = "0000060c"; -"HD5K-igx10_description" = "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx10_title" = "0300220d"; +"IntelAzulx10_description" = "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."; -"HD5K-igx11_title" = "0000160c"; -"HD5K-igx11_description" = "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx11_title" = "0500260a"; +"IntelAzulx11_description" = "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx12_title" = "0000260c"; -"HD5K-igx12_description" = "Set 0000260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx12_title" = "0600260a"; +"IntelAzulx12_description" = "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx13_title" = "0300220d"; -"HD5K-igx13_description" = "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."; +"IntelAzulx13_title" = "0700260d"; +"IntelAzulx13_description" = "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx14_title" = "0000260d"; -"HD5K-igx14_description" = "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx14_title" = "0800260a"; +"IntelAzulx14_description" = "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; -"HD5K-igx15_title" = "0700260d"; -"HD5K-igx15_description" = "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."; +"IntelAzulx15_title" = "08002e0a"; +"IntelAzulx15_description" = "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."; // ---------------------------------------------------------------------------- @@ -692,12 +692,12 @@ "HDAULayout_description" = "Set one HDAU Layout ID to use for your HDMi controller."; // HD4000 Layout -"HD4000_title" = "Intel HD4000 Layout"; -"HD4000_description" = "Set one AAPL,ig-platform-id to use for your Intel HD4000."; +"IntelCapri_title" = "Intel Capri AAPL,ig-platform-id"; +"IntelCapri_description" = "Set one AAPL,ig-platform-id to use for your Intel HD4000."; // HD5000 Layout -"HD5000_title" = "Intel HD5000 Layout"; -"HD5000_description" = "Set one AAPL,ig-platform-id to use for your Intel HD5000."; +"IntelAzul_title" = "Intel Azul AAPL,ig-platform-id"; +"IntelAzul_description" = "Set one AAPL,ig-platform-id to use for your Intel HD5000."; // PinConfiguration "HDEFPinConfiguration_title" = "HDEF PinConfiguration"; Index: trunk/package/po/ar.po =================================================================== --- trunk/package/po/ar.po (revision 2258) +++ trunk/package/po/ar.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-04-26 18:34+0000\n" "Last-Translator: magnifico \n" "Language-Team: ar \n" @@ -1604,337 +1604,337 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2455,25 +2455,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/en.po =================================================================== --- trunk/package/po/en.po (revision 2258) +++ trunk/package/po/en.po (revision 2259) @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" -"PO-Revision-Date: 2013-07-29 03:37-0000\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" +"PO-Revision-Date: 2013-08-28 15:47-0000\n" "Last-Translator: \n" "Language-Team: en \n" "Language: en\n" @@ -1712,337 +1712,337 @@ "Set HDAU layout-it to 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, 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: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, 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: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, 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: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, 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: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, 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: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, 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: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, 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: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, 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: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, 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: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, 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: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, 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: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, 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: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "00000604" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "0000060c" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "00001604" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "0000160a" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "0000160c" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "00002604" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "0000260a" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "0000260c" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "0000260d" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "02001604" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "0300220d" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "0500260a" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "0600260a" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "0700260d" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "0800260a" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "08002e0a" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2570,25 +2570,25 @@ 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: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "Intel Capri AAPL,ig-platform-id" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, 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: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" -msgstr "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "Intel Azul AAPL,ig-platform-id" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/bs.po =================================================================== --- trunk/package/po/bs.po (revision 2258) +++ trunk/package/po/bs.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2012-03-07 00:12-0000\n" "Last-Translator: ErmaC\n" "Language-Team: bs \n" @@ -1626,337 +1626,337 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2482,26 +2482,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "KeyLayout" -msgid "Intel HD5000 Layout" -msgstr "KeyLayout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/cs.po =================================================================== --- trunk/package/po/cs.po (revision 2258) +++ trunk/package/po/cs.po (revision 2259) @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Chameleon 2.1svn-r1870\n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-06-08 13:43+0000\n" "Last-Translator: martin63 \n" "Language-Team: cs \n" @@ -1718,361 +1718,361 @@ "Nastavit HDAU layout na 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, 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: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, 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: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, 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: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, 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: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, 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: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, 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: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, 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: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, 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: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, 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: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, 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: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, 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: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, 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: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, fuzzy, no-wrap #| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "Nastavit 01620005 pro Intel HD4000 (Desktop) AAPL, ig-platform-id." -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." @@ -2592,26 +2592,25 @@ 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: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "Intel Capri AAPL,ig-platform-id" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, 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: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "Intel Azul AAPL,ig-platform-id" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, fuzzy, no-wrap #| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." Index: trunk/package/po/mk.po =================================================================== --- trunk/package/po/mk.po (revision 2258) +++ trunk/package/po/mk.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-05-11 17:48-0000\n" "Last-Translator: ErmaC\n" "Language-Team: mk \n" @@ -1604,346 +1604,346 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2463,26 +2463,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/es.po =================================================================== --- trunk/package/po/es.po (revision 2258) +++ trunk/package/po/es.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-07-22 03:12-0000\n" "Last-Translator: Maniac \n" "Language-Team: es \n" @@ -1711,337 +1711,337 @@ "Establecer el Modo de HDAU layout-it en 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "00000604" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "0000060c" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "00001604" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "0000160a" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "0000160c" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "00002604" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "0000260a" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "0000260c" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "0000260d" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "02001604" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "0300220d" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "0500260a" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "0600260a" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "0700260d" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "0800260a" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "08002e0a" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2560,25 +2560,25 @@ 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: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, 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: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" -msgstr "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, fuzzy, no-wrap #| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." Index: trunk/package/po/fr.po =================================================================== --- trunk/package/po/fr.po (revision 2258) +++ trunk/package/po/fr.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-07-22 03:14-0000\n" "Last-Translator: JrCs \n" "Language-Team: fr \n" @@ -1736,352 +1736,352 @@ "Set HDAU layout-it to 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, 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: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, 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: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, 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: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, 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: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, 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: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, 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: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, 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: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, 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: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, 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: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, 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: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, 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: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, 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: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "00000604" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "0000060c" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "00001604" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "0000160a" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "0000160c" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "00002604" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "0000260a" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "0000260c" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "0000260d" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "02001604" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "0300220d" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, fuzzy, no-wrap #| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "0500260a" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "0600260a" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "0700260d" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "0800260a" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "08002e0a" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." @@ -2606,25 +2606,25 @@ 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: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "Intel Capri AAPL,ig-platform-id" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, 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: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" -msgstr "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "Intel Azul AAPL,ig-platform-id" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, fuzzy, no-wrap #| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." Index: trunk/package/po/nl.po =================================================================== --- trunk/package/po/nl.po (revision 2258) +++ trunk/package/po/nl.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-05-15 00:36+0000\n" "Last-Translator: beta992 \n" "Language-Team: nl \n" @@ -1622,346 +1622,346 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2480,26 +2480,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/ko.po =================================================================== --- trunk/package/po/ko.po (revision 2258) +++ trunk/package/po/ko.po (revision 2259) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-06-04 17:50+0000\n" "Last-Translator: Mill \n" "Language-Team: ko \n" @@ -1715,361 +1715,361 @@ "Set HDAU layout-it to 1981:\n" "07BD (0xBD, 0x07, 0x00, 0x00)." -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660001 설정." -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660002로 설정." -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660003로 설정." -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정." -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01620005 설정." -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01620006 설정." -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "Intel HD4000 (데스크톱) 의 AAPL,ig-platform-id로 01620007 설정." -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660008 설정." -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660009로 설정." -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 0166000b 설정." -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정." -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정." -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정." -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, fuzzy, no-wrap #| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01620005 설정." -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." @@ -2597,26 +2597,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "HDMi 컨트롤러 사용을 위한 HDAU Layout ID 설정." -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "Intel Capri AAPL,ig-platform-id" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Intel HD4000 을 위한 one AAPL,ig-platform-id 설정" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "IIntel Azul AAPL,ig-platform-id" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, fuzzy, no-wrap #| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." Index: trunk/package/po/hr.po =================================================================== --- trunk/package/po/hr.po (revision 2258) +++ trunk/package/po/hr.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-05-11 16:58-0000\n" "Last-Translator: Xpam.AmAdEuS \n" "Language-Team: hr \n" @@ -1606,346 +1606,346 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2465,26 +2465,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/pl.po =================================================================== --- trunk/package/po/pl.po (revision 2258) +++ trunk/package/po/pl.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-05-11 17:11-0000\n" "Last-Translator: oswaldini \n" "Language-Team: pl \n" @@ -1610,346 +1610,346 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2469,26 +2469,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/it.po =================================================================== --- trunk/package/po/it.po (revision 2258) +++ trunk/package/po/it.po (revision 2259) @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" -"PO-Revision-Date: 2013-07-29 03:36-0000\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" +"PO-Revision-Date: 2013-08-28 15:46-0000\n" "Last-Translator: \n" "Language-Team: it \n" "Language: it\n" @@ -1723,337 +1723,337 @@ "Setta l'HDAU layout-it a 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, 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: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, 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: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, 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: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, 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: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, 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: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, 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: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, 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: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, 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: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, 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: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, 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: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, 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: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, 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: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "00000604" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 00000604 per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "0000060c" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0000060c per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "00001604" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 00001604 per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "0000160a" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0000160a per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "0000160c" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0000160c per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "00002604" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 00002604 per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "0000260a" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0000260a per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "0000260c" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0600260c per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "0000260d" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0000260d per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "02001604" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 02001604 per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "0300220d" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0300220d per schede grafiche Intel HD5000 (Desktop)." -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "0500260a" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0500260a per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "0600260a" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0600260a per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "0700260d" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0700260d per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "0800260a" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Imposta l'AAPL,ig-platform-id a 0800260a per schede grafiche Intel HD5000 (Mobile)." -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "08002e0a" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2581,25 +2581,25 @@ 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: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "Intel Capri AAPL,ig-platform-id" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, 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: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" -msgstr "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "Intel Azul AAPL,ig-platform-id" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/hu.po =================================================================== --- trunk/package/po/hu.po (revision 2258) +++ trunk/package/po/hu.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2012-04-11 02:08-0000\n" "Last-Translator: ErmaC\n" "Language-Team: hu \n" @@ -1612,346 +1612,346 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2472,26 +2472,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/chameleon.pot =================================================================== --- trunk/package/po/chameleon.pot (revision 2258) +++ trunk/package/po/chameleon.pot (revision 2259) @@ -6,8 +6,8 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Chameleon 2.2svn-r2255\n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"Project-Id-Version: Chameleon 2.2svn-r2258\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1578,337 +1578,337 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2446,25 +2446,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/ro.po =================================================================== --- trunk/package/po/ro.po (revision 2258) +++ trunk/package/po/ro.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-05-11 16:09-0000\n" "Last-Translator: ErmaC\n" "Language-Team: ro \n" @@ -1601,346 +1601,346 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2459,26 +2459,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/ca.po =================================================================== --- trunk/package/po/ca.po (revision 2258) +++ trunk/package/po/ca.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-05-11 17:17-0000\n" "Last-Translator: ErmaC\n" "Language-Team: ca \n" @@ -1606,346 +1606,346 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2464,26 +2464,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/pt.po =================================================================== --- trunk/package/po/pt.po (revision 2258) +++ trunk/package/po/pt.po (revision 2259) @@ -7,17 +7,16 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" -"PO-Revision-Date: 2013-08-03 20:03+0000\n" -"Last-Translator: artur_pt \n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" +"PO-Revision-Date: 2013-07-29 03:44-0000\n" +"Last-Translator: \n" "Language-Team: pt-PT \n" "Language: pt\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: 1375560206.0\n" +"X-POOTLE-MTIME: 1369572030.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -1725,357 +1724,357 @@ "Injeta HDAU layout-it para 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, 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: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, 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: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, 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: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, 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: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, 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: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, 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: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, 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: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, 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: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, 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: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, 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: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, 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: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, 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: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "00000604" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 00000604 para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "0000060c" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0000060c para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "00001604" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 00001604 para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "0000160a" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0000160a para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "0000160c" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0000160c para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "00002604" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 00002604 para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "0000260a" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0000260a para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "0000260c" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0600260c para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "0000260d" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0000260d para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "02001604" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 02001604 para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "0300220d" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." -msgstr "Injeta 0300220d para Intel HD5000 (Desktop) AAPL,ig-platform-id." +msgstr "injeta 01620005 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "0500260a" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0500260a para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "0600260a" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0600260a para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "0700260d" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0700260d para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "0800260a" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0800260a para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "08002e0a" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 -#, no-wrap +#, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 08002e0a para Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." #. type: "AD2000B_PinConf_title" #: Resources/templates/Localizable.strings:530 @@ -2599,25 +2598,25 @@ 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: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "Intel Capri AAPL,ig-platform-id" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, 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: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" -msgstr "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "Intel Azul AAPL,ig-platform-id" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/pt-BR.po =================================================================== --- trunk/package/po/pt-BR.po (revision 2258) +++ trunk/package/po/pt-BR.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-07-29 03:42-0000\n" "Last-Translator: \n" "Language-Team: pt-BR \n" @@ -1724,337 +1724,337 @@ "Define HDAU layout-it para 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, 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: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, 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: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, 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: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, 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: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, 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: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, 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: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, 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: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, 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: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, 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: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, 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: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, 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: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, 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: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "00000604" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 00000604 para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "0000060c" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 0000060c para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "00001604" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 00001604 para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "0000160a" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 0000160a para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "0000160c" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 0000160c para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "00002604" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 00002604 para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "0000260a" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 0000260a para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "0000260c" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 0600260c para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "0000260d" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 0000260d para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "02001604" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 02001604 para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "0300220d" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "Define 0300220d para Intel HD5000 (Desktop) AAPL,ig-platform-id ." -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "0500260a" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 0500260a para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "0600260a" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 0600260a para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "0700260d" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 0700260d para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "0800260a" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Define 0800260a para Intel HD5000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "08002e0a" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2582,25 +2582,25 @@ 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: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "Intel Capri AAPL,ig-platform-id" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, 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: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" -msgstr "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "Intel Azul AAPL,ig-platform-id" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/sr.po =================================================================== --- trunk/package/po/sr.po (revision 2258) +++ trunk/package/po/sr.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-05-11 16:00-0000\n" "Last-Translator: ErmaC\n" "Language-Team: sr \n" @@ -1603,346 +1603,346 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2461,26 +2461,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/fa.po =================================================================== --- trunk/package/po/fa.po (revision 2258) +++ trunk/package/po/fa.po (revision 2259) @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Chameleon 2.1svn-r1870\n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-05-11 13:32+0000\n" "Last-Translator: minlite \n" "Language-Team: LANGUAGE \n" @@ -1594,337 +1594,337 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2443,25 +2443,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/ru.po =================================================================== --- trunk/package/po/ru.po (revision 2258) +++ trunk/package/po/ru.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-06-27 21:13+0000\n" "Last-Translator: ltodoto \n" "Language-Team: ru \n" @@ -1605,346 +1605,346 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2467,26 +2467,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "Выберите карту HDAU, используемую по умолчанию для Вашего HDMi-контроллера." -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "Выберите значение AAPL,ig-platform-id, используемое по умолчанию для графического процессора Intel HD4000." -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, fuzzy, no-wrap #| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." Index: trunk/package/po/de.po =================================================================== --- trunk/package/po/de.po (revision 2258) +++ trunk/package/po/de.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-05-30 23:39+0000\n" "Last-Translator: !Xabbu \n" "Language-Team: de \n" @@ -1718,361 +1718,361 @@ "Setzt HDAU Layout auf 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, 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: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, 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: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, 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: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, 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: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, 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: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, 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: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, 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: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, 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: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, 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: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, 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: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, 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: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, 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: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, fuzzy, no-wrap #| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, fuzzy, no-wrap #| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "Setze 01620005 für Intel HD4000 (Desktop) AAPL,ig-platform-id ." -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, fuzzy, no-wrap #| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, fuzzy, no-wrap #| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." @@ -2592,26 +2592,25 @@ 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: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "Intel Capri AAPL,ig-platform-id" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, 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: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel HD5000 LayoutIntel Azul AAPL,ig-platform-id" +msgstr "Intel HD4000 LayoutIntel Azul AAPL,ig-platform-id" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, fuzzy, no-wrap #| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." Index: trunk/package/po/bg.po =================================================================== --- trunk/package/po/bg.po (revision 2258) +++ trunk/package/po/bg.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2012-04-28 17:25+0200\n" "Last-Translator: Желязко \n" "Language-Team: bg \n" @@ -1624,337 +1624,337 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2480,26 +2480,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "KeyLayout" -msgid "Intel HD5000 Layout" -msgstr "KeyLayout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/ja.po =================================================================== --- trunk/package/po/ja.po (revision 2258) +++ trunk/package/po/ja.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1570,337 +1570,337 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2419,25 +2419,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/zh_TW.po =================================================================== --- trunk/package/po/zh_TW.po (revision 2258) +++ trunk/package/po/zh_TW.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-07-22 03:05-0000\n" "Last-Translator: crazybirdy \n" "Language-Team: zh_TW \n" @@ -1711,338 +1711,338 @@ "設定 HDAU layout-it 為 1981:\n" "7BD (0xBD, 0x07, 0x00, 0x00)." -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660000." -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660001." -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660002." -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660003." -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660004." -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Desktop) AAPL,ig-platform-id 為 01660005." -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Desktop) AAPL,ig-platform-id 為 01660006." -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Desktop) AAPL,ig-platform-id 為 01660007." -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660008." -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660009." -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 0166000a." -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 0166000b." -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "00000604" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 00000604." -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "0000060c" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0000060c." -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "00001604" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 00001604." -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "0000160a" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0000160a." -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "0000160c" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0000160c." -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "00002604" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 00002604." -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "0000260a" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0000260a." -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "0000260c" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, fuzzy, no-wrap #| msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0600260a." -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "0000260d" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0000260d." -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "02001604" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 02001604." -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "0300220d" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Desktop) AAPL,ig-platform-id 為 0300220d." -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "0500260a" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0500260a." -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "0600260a" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0600260a." -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "0700260d" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0700260d." -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "0800260a" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0800260a." -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "08002e0a" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2565,26 +2565,26 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, fuzzy, no-wrap -#| msgid "KeyLayout" -msgid "Intel HD5000 Layout" -msgstr "鍵盤佈局" -#. type: "HD5000_description" +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" + +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/id.po =================================================================== --- trunk/package/po/id.po (revision 2258) +++ trunk/package/po/id.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-05-11 16:47-0000\n" "Last-Translator: archintosh \n" "Language-Team: id \n" @@ -1611,346 +1611,346 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, fuzzy, no-wrap #| msgid "01660000" msgid "00000604" msgstr "01660000" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000060c" msgstr "01660000" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, fuzzy, no-wrap #| msgid "01660000" msgid "00001604" msgstr "01660000" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160a" msgstr "01660000" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000160c" msgstr "01660000" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, fuzzy, no-wrap #| msgid "01660000" msgid "00002604" msgstr "01660000" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260a" msgstr "01660000" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260c" msgstr "01660000" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, fuzzy, no-wrap #| msgid "01660000" msgid "0000260d" msgstr "01660000" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2470,26 +2470,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" -msgstr "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" +msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "Intel HD4000 Layout" -msgid "Intel HD5000 Layout" -msgstr "Intel HD4000 Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/he.po =================================================================== --- trunk/package/po/he.po (revision 2258) +++ trunk/package/po/he.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: he \n" @@ -1577,337 +1577,337 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2427,25 +2427,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/el.po =================================================================== --- trunk/package/po/el.po (revision 2258) +++ trunk/package/po/el.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: el \n" @@ -1570,337 +1570,337 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2420,25 +2420,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 #, no-wrap -msgid "Intel HD5000 Layout" +msgid "Intel Azul AAPL,ig-platform-id" msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/package/po/zh_CN.po =================================================================== --- trunk/package/po/zh_CN.po (revision 2258) +++ trunk/package/po/zh_CN.po (revision 2259) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-29 03:34+0200\n" +"POT-Creation-Date: 2013-08-28 15:43+0200\n" "PO-Revision-Date: 2013-07-22 03:08-0000\n" "Last-Translator: crazybirdy \n" "Language-Team: zh_CN \n" @@ -1600,337 +1600,337 @@ "7BD (0xBD, 0x07, 0x00, 0x00)." msgstr "" -#. type: "HD4K-igx00_title" +#. type: "IntelCaprix00_title" #: Resources/templates/Localizable.strings:442 #, no-wrap msgid "01660000" msgstr "01660000" -#. type: "HD4K-igx00_description" +#. type: "IntelCaprix00_description" #: Resources/templates/Localizable.strings:443 #, no-wrap msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx01_title" +#. type: "IntelCaprix01_title" #: Resources/templates/Localizable.strings:445 #, no-wrap msgid "01660001" msgstr "01660001" -#. type: "HD4K-igx01_description" +#. type: "IntelCaprix01_description" #: Resources/templates/Localizable.strings:446 #, no-wrap msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx02_title" +#. type: "IntelCaprix02_title" #: Resources/templates/Localizable.strings:448 #, no-wrap msgid "01660002" msgstr "01660002" -#. type: "HD4K-igx02_description" +#. type: "IntelCaprix02_description" #: Resources/templates/Localizable.strings:449 #, no-wrap msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx03_title" +#. type: "IntelCaprix03_title" #: Resources/templates/Localizable.strings:451 #, no-wrap msgid "01660003" msgstr "01660003" -#. type: "HD4K-igx03_description" +#. type: "IntelCaprix03_description" #: Resources/templates/Localizable.strings:452 #, no-wrap msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx04_title" +#. type: "IntelCaprix04_title" #: Resources/templates/Localizable.strings:454 #, no-wrap msgid "01660004" msgstr "01660004" -#. type: "HD4K-igx04_description" +#. type: "IntelCaprix04_description" #: Resources/templates/Localizable.strings:455 #, no-wrap msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx05_title" +#. type: "IntelCaprix05_title" #: Resources/templates/Localizable.strings:457 #, no-wrap msgid "01620005" msgstr "01620005" -#. type: "HD4K-igx05_description" +#. type: "IntelCaprix05_description" #: Resources/templates/Localizable.strings:458 #, no-wrap msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx06_title" +#. type: "IntelCaprix06_title" #: Resources/templates/Localizable.strings:460 #, no-wrap msgid "01620006" msgstr "01620006" -#. type: "HD4K-igx06_description" +#. type: "IntelCaprix06_description" #: Resources/templates/Localizable.strings:461 #, no-wrap msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx07_title" +#. type: "IntelCaprix07_title" #: Resources/templates/Localizable.strings:463 #, no-wrap msgid "01620007" msgstr "01620007" -#. type: "HD4K-igx07_description" +#. type: "IntelCaprix07_description" #: Resources/templates/Localizable.strings:464 #, no-wrap msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx08_title" +#. type: "IntelCaprix08_title" #: Resources/templates/Localizable.strings:466 #, no-wrap msgid "01660008" msgstr "01660008" -#. type: "HD4K-igx08_description" +#. type: "IntelCaprix08_description" #: Resources/templates/Localizable.strings:467 #, no-wrap msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx09_title" +#. type: "IntelCaprix09_title" #: Resources/templates/Localizable.strings:469 #, no-wrap msgid "01660009" msgstr "01660009" -#. type: "HD4K-igx09_description" +#. type: "IntelCaprix09_description" #: Resources/templates/Localizable.strings:470 #, no-wrap msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx10_title" +#. type: "IntelCaprix10_title" #: Resources/templates/Localizable.strings:472 #, no-wrap msgid "0166000a" msgstr "0166000a" -#. type: "HD4K-igx10_description" +#. type: "IntelCaprix10_description" #: Resources/templates/Localizable.strings:473 #, no-wrap msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD4K-igx11_title" +#. type: "IntelCaprix11_title" #: Resources/templates/Localizable.strings:475 #, no-wrap msgid "0166000b" msgstr "0166000b" -#. type: "HD4K-igx11_description" +#. type: "IntelCaprix11_description" #: Resources/templates/Localizable.strings:476 #, no-wrap msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ." msgstr "" -#. type: "HD5K-igx00_title" +#. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:480 #, no-wrap msgid "00000604" msgstr "00000604" -#. type: "HD5K-igx00_description" +#. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:481 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx01_title" +#. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:483 #, no-wrap msgid "0000060c" msgstr "0000060c" -#. type: "HD5K-igx01_description" +#. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx02_title" +#. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:486 #, no-wrap msgid "00001604" msgstr "00001604" -#. type: "HD5K-igx02_description" +#. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx03_title" +#. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:489 #, no-wrap msgid "0000160a" msgstr "0000160a" -#. type: "HD5K-igx03_description" +#. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx04_title" +#. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:492 #, no-wrap msgid "0000160c" msgstr "0000160c" -#. type: "HD5K-igx04_description" +#. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx05_title" +#. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:495 #, no-wrap msgid "00002604" msgstr "00002604" -#. type: "HD5K-igx05_description" +#. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx06_title" +#. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:498 #, no-wrap msgid "0000260a" msgstr "0000260a" -#. type: "HD5K-igx06_description" +#. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx07_title" +#. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:501 #, no-wrap msgid "0000260c" msgstr "0000260c" -#. type: "HD5K-igx07_description" +#. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx08_title" +#. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:504 #, no-wrap msgid "0000260d" msgstr "0000260d" -#. type: "HD5K-igx08_description" +#. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx09_title" +#. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:507 #, no-wrap msgid "02001604" msgstr "02001604" -#. type: "HD5K-igx09_description" +#. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx10_title" +#. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "0300220d" msgstr "0300220d" -#. type: "HD5K-igx10_description" +#. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx11_title" +#. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0500260a" msgstr "0500260a" -#. type: "HD5K-igx11_description" +#. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx12_title" +#. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0600260a" msgstr "0600260a" -#. type: "HD5K-igx12_description" +#. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx13_title" +#. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0700260d" msgstr "0700260d" -#. type: "HD5K-igx13_description" +#. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx14_title" +#. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0800260a" msgstr "0800260a" -#. type: "HD5K-igx14_description" +#. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." msgstr "" -#. type: "HD5K-igx15_title" +#. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "08002e0a" msgstr "08002e0a" -#. type: "HD5K-igx15_description" +#. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." @@ -2451,26 +2451,25 @@ msgid "Set one HDAU Layout ID to use for your HDMi controller." msgstr "" -#. type: "HD4000_title" +#. type: "IntelCapri_title" #: Resources/templates/Localizable.strings:695 #, no-wrap -msgid "Intel HD4000 Layout" +msgid "Intel Capri AAPL,ig-platform-id" msgstr "" -#. type: "HD4000_description" +#. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:696 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." msgstr "" -#. type: "HD5000_title" +#. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:699 -#, fuzzy, no-wrap -#| msgid "HDEF Layout" -msgid "Intel HD5000 Layout" -msgstr "HDEF Layout" +#, no-wrap +msgid "Intel Azul AAPL,ig-platform-id" +msgstr "" -#. type: "HD5000_description" +#. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:700 #, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." Index: trunk/Make.rules =================================================================== --- trunk/Make.rules (revision 2258) +++ trunk/Make.rules (revision 2259) @@ -122,11 +122,11 @@ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-local"; \ - else \ - local_target="$$target"; \ - fi; \ + if test "$$subdir" = "."; then \ + local_target="$$target-local"; \ + else \ + local_target="$$target"; \ + fi; \ (cd $$subdir && $(MAKE) $$local_target) \ || eval $$failcom; \ done @@ -149,7 +149,7 @@ fi @rm -rf $(OBJROOT) $(SYMROOT) $(DSTROOT) \ $(SRCROOT)/i386/modules/module_includes - + distclean: distclean-recursive clean-local clean-dep @find . $(FIND_IGNORE) \ \( -name '*.orig' -o -name '*.rej' -o -name '*~' \