Index: branches/chucko/Chameleon.xcodeproj/project.pbxproj =================================================================== --- branches/chucko/Chameleon.xcodeproj/project.pbxproj (revision 2315) +++ branches/chucko/Chameleon.xcodeproj/project.pbxproj (revision 2316) @@ -97,9 +97,7 @@ 360A04BC1861F48F0091F464 /* smbios_getters.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = smbios_getters.c; sourceTree = ""; }; 360A04BD1861F48F0091F464 /* smbios_getters.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = smbios_getters.h; sourceTree = ""; }; 360A04BE1861F48F0091F464 /* smbios.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = smbios.c; sourceTree = ""; }; - 360A04BF1861F48F0091F464 /* smbios.c.diff */ = {isa = PBXFileReference; lastKnownFileType = text; path = smbios.c.diff; sourceTree = ""; }; 360A04C01861F48F0091F464 /* smbios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = smbios.h; sourceTree = ""; }; - 360A04C11861F48F0091F464 /* smbios.h.diff */ = {isa = PBXFileReference; lastKnownFileType = text; path = smbios.h.diff; sourceTree = ""; }; 360A04C21861F48F0091F464 /* spd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = spd.c; sourceTree = ""; }; 360A04C31861F48F0091F464 /* spd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = spd.h; sourceTree = ""; }; 360A04C41861F48F0091F464 /* stringTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = stringTable.c; sourceTree = ""; }; @@ -3419,9 +3417,7 @@ 360A04BC1861F48F0091F464 /* smbios_getters.c */, 360A04BD1861F48F0091F464 /* smbios_getters.h */, 360A04BE1861F48F0091F464 /* smbios.c */, - 360A04BF1861F48F0091F464 /* smbios.c.diff */, 360A04C01861F48F0091F464 /* smbios.h */, - 360A04C11861F48F0091F464 /* smbios.h.diff */, 360A04C21861F48F0091F464 /* spd.c */, 360A04C31861F48F0091F464 /* spd.h */, 360A04C41861F48F0091F464 /* stringTable.c */, Index: branches/chucko/i386/libsaio/aml_generator.c =================================================================== --- branches/chucko/i386/libsaio/aml_generator.c (revision 2315) +++ branches/chucko/i386/libsaio/aml_generator.c (revision 2316) @@ -21,12 +21,12 @@ case AML_CHUNK_DWORD: case AML_CHUNK_QWORD: case AML_CHUNK_ALIAS: - verbose("aml_add_to_parent: node doesn't support child nodes!\n"); + verbose("aml_add_to_parent: Node doesn't support child nodes!\n"); return false; case AML_CHUNK_NAME: if (parent->First) { - verbose("aml_add_to_parent: name node supports only one child node!\n"); + verbose("aml_add_to_parent: Name node supports only one child node!\n"); return false; } break; @@ -78,7 +78,7 @@ // Free node if (node->Buffer) free(node->Buffer); - + free(node); } @@ -183,11 +183,11 @@ unsigned int aml_fill_name(struct aml_chunk* node, const char* name) { - if (!node) + if (!node) return 0; - + int len = strlen(name), offset = 0, count = len / 4; - + if ((len % 4) > 1 || count == 0) { verbose("aml_fill_name: pathname %s has incorrect length! Must be 4, 8, 12, 16, etc...\n", name); @@ -195,7 +195,7 @@ } unsigned int root = 0; - + if ((len % 4) == 1 && name[0] == '\\') root++; @@ -234,7 +234,7 @@ if (node) { node->Type = AML_CHUNK_SCOPE; - + aml_fill_name(node, name); } @@ -248,21 +248,21 @@ if (node) { node->Type = AML_CHUNK_NAME; - + aml_fill_name(node, name); } - + return node; } struct aml_chunk* aml_add_package(struct aml_chunk* parent) { struct aml_chunk* node = aml_create_node(parent); - + if (node) { node->Type = AML_CHUNK_PACKAGE; - + node->Length = 1; node->Buffer = malloc(node->Length); } @@ -273,17 +273,17 @@ struct aml_chunk* aml_add_alias(struct aml_chunk* parent, const char* name1, const char* name2) { struct aml_chunk* node = aml_create_node(parent); - + if (node) { node->Type = AML_CHUNK_ALIAS; - + node->Length = 8; node->Buffer = malloc(node->Length); aml_fill_simple_name(node->Buffer, name1); aml_fill_simple_name(node->Buffer+4, name2); } - + return node; } @@ -304,7 +304,7 @@ if (node) { node->Size = 0; - + // Calculate child nodes size struct aml_chunk* child = node->First; unsigned char child_count = 0; @@ -312,9 +312,9 @@ while (child) { child_count++; - + node->Size += aml_calculate_size(child); - + child = child->Next; } @@ -353,17 +353,17 @@ node->Size += 1 + node->Length; break; } - + return node->Size; } - + return 0; } unsigned int aml_write_byte(unsigned char value, char* buffer, unsigned int offset) { buffer[offset++] = value; - + return offset; } @@ -371,7 +371,7 @@ { buffer[offset++] = value & 0xff; buffer[offset++] = value >> 8; - + return offset; } @@ -381,7 +381,7 @@ buffer[offset++] = (value >> 8) & 0xff; buffer[offset++] = (value >> 16) & 0xff; buffer[offset++] = (value >> 24) & 0xff; - + return offset; } @@ -395,7 +395,7 @@ buffer[offset++] = (value >> 40) & 0xff; buffer[offset++] = (value >> 48) & 0xff; buffer[offset++] = (value >> 56) & 0xff; - + return offset; } @@ -405,7 +405,7 @@ { memcpy(buffer + offset, value, size); } - + return offset + size; } @@ -426,14 +426,14 @@ buffer[offset++] = (size >> 4) & 0xff; buffer[offset++] = (size >> 12) & 0xff; } - else + else { buffer[offset++] = 0xc0 | (size & 0xf); buffer[offset++] = (size >> 4) & 0xff; buffer[offset++] = (size >> 12) & 0xff; buffer[offset++] = (size >> 20) & 0xff; } - + return offset; } @@ -442,7 +442,7 @@ if (node && buffer) { unsigned int old = offset; - + switch (node->Type) { case AML_CHUNK_NONE: @@ -455,7 +455,7 @@ offset = aml_write_size(node->Size-1, buffer, offset); offset = aml_write_buffer(node->Buffer, node->Length, buffer, offset); break; - + case AML_CHUNK_BYTE: if (node->Buffer[0] == 0x0 || node->Buffer[0] == 0x1) { @@ -467,7 +467,7 @@ offset = aml_write_buffer(node->Buffer, node->Length, buffer, offset); } break; - + case AML_CHUNK_WORD: case AML_CHUNK_DWORD: case AML_CHUNK_QWORD: @@ -476,13 +476,13 @@ offset = aml_write_byte(node->Type, buffer, offset); offset = aml_write_buffer(node->Buffer, node->Length, buffer, offset); break; - + default: break; } struct aml_chunk* child = node->First; - + while (child) { offset = aml_write_node(child, buffer, offset); Index: branches/chucko/i386/libsaio/aml_generator.h =================================================================== --- branches/chucko/i386/libsaio/aml_generator.h (revision 2315) +++ branches/chucko/i386/libsaio/aml_generator.h (revision 2316) @@ -29,10 +29,10 @@ { unsigned char Type; unsigned int Length; - char* Buffer; - + char* Buffer; + unsigned int Size; - + struct aml_chunk* Next; struct aml_chunk* First; struct aml_chunk* Last; @@ -58,4 +58,4 @@ unsigned int aml_calculate_size(struct aml_chunk* node); unsigned int aml_write_node(struct aml_chunk* node, char* buffer, unsigned int offset); -#endif /* !__LIBSAIO_AML_GENERATOR_H */ \ No newline at end of file +#endif /* !__LIBSAIO_AML_GENERATOR_H */ Index: branches/chucko/i386/libsaio/nvidia.c =================================================================== --- branches/chucko/i386/libsaio/nvidia.c (revision 2315) +++ branches/chucko/i386/libsaio/nvidia.c (revision 2316) @@ -1139,6 +1139,8 @@ { 0x10DE118E, "GeForce GTX 760 (192-bit)" }, { 0x10DE118F, "Tesla K10" }, // 1190 - 119F + { 0x10DE1192, "GeForce GK104" }, + { 0x10DE1193, "GeForce GTX 760 Ti" }, { 0x10DE119F, "GeForce GTX 780M" }, // 11A0 - 11AF { 0x10DE11A0, "GeForce GTX 680M" }, @@ -1181,6 +1183,7 @@ { 0x10DE1211, "GeForce GTX 580M" }, { 0x10DE1212, "GeForce GTX 675M" }, { 0x10DE1213, "GeForce GTX 670M" }, + //{ 0x10DE121F, "GF114-INT" }, { 0x10DE1240, "GeForce GT 620M" }, { 0x10DE1241, "GeForce GT 545" }, { 0x10DE1243, "GeForce GT 545" }, @@ -1212,6 +1215,7 @@ //{ 0x10DE12A0, "GeForce GT ???" }, { 0x10DE12AF, "GK208-INT" }, { 0x10DE12B0, "GK208-CS-Q" }, + { 0x10DE12B9, "Quadro K610M" }, { 0x10DE12BA, "Quadro K510M" } // 12B0 - 12BF // 12C0 - 12CF @@ -1486,8 +1490,7 @@ return PATCH_ROM_FAILED; } - if (numentries >= MAX_NUM_DCB_ENTRIES) - { + if (numentries >= MAX_NUM_DCB_ENTRIES) { numentries = MAX_NUM_DCB_ENTRIES; } Index: branches/chucko/i386/libsaio/smbios.c =================================================================== --- branches/chucko/i386/libsaio/smbios.c (revision 2315) +++ branches/chucko/i386/libsaio/smbios.c (revision 2316) @@ -139,43 +139,67 @@ #define KDefaultBoardAssetTagNumber "Pro-Enclosure" // ErmaC #define kDefaultLocatioInChassis "Part Component" // ErmaC -// defaults for a Mac mini +//=========== Mac mini =========== #define kDefaultMacminiFamily "Macmini" #define kDefaultMacmini "Macmini1,1" #define kDefaultMacminiBIOSVersion " MM21.88Z.009A.B00.0903051113" +// MacMini5,1 Mac-8ED6AF5B48C039E1 - MM51.88Z.0077.B0F.1110201309 +// MacMini5,2 Mac-4BC72D62AD45599E +// MacMini5,3 -// defaults for a MacBook +// MacMini 6,1 - Mac-F65AE981FFA204ED +// MacMini 6,2 +//#define kDefaultMacmini62 "Macmini6,2" +//#define kDefaultMacmini62BIOSVersion " MM61.88Z.0106.B00.1208091121" +//#define kDefaultMacmini62BoardProduct "Mac-F65AE981FFA204ED" +//#define kDefaultMacmini62BIOSReleaseDate "10/14/2012" + +//=========== MacBook =========== #define kDefaultMacBookFamily "MacBook" #define kDefaultMacBook "MacBook4,1" #define kDefaultMacBookBIOSVersion " MB41.88Z.0073.B00.0903051113" - -// defaults for a MacBook Pro +//=========== MacBookAir =========== +// MacBookAir4,1 - Mac-C08A6BB70A942AC2 +// MacBookAir4,2 - Mac-742912EFDBEE19B3 +// MacBookAir6,1 - Mac-35C1E88140C3E6CF - MBA61.88Z.0099.B04.1309271229 +// MacBookAir6,2 - Mac-7DF21CB3ED6977E5 - MBA62.88Z.00EF.B00.1205221442 +//=========== MacBookPro =========== #define kDefaultMacBookProFamily "MacBookPro" #define kDefaultMacBookPro "MacBookPro4,1" #define kDefaultMacBookProBIOSVersion " MBP41.88Z.0073.B00.0903051113" +// MacBookPro8,1 - Mac-94245B3640C91C81 - MBP81.88Z.0047.B24.1110141131 +// MacBookPro8,2 - Mac_94245A3940C91C80 +// MacBookPro8,3 - Mac-942459F5819B171B +// MacBookPro11,2 - Mac-3CBD00234E554E41 - MBP112.88Z.0138.B02.1310181745 +// MacBookPro11,3 - Mac-2BD1B31983FE1663 - MBP112.88Z.0138.B02.1310181745 -// defaults for an iMac +//=========== iMac =========== #define kDefaultiMacFamily "iMac" #define kDefaultiMac "iMac8,1" #define kDefaultiMacBIOSVersion " IM81.88Z.00C1.B00.0903051113" -// defaults for an iMac11,1 core i3/i5/i7 +// iMac10,1 +// iMac11,1 core i3/i5/i7 #define kDefaultiMacNehalem "iMac11,1" #define kDefaultiMacNehalemBIOSVersion " IM111.88Z.0034.B00.0903051113" +// iMac11,2 +// iMac11,3 // defaults for an iMac12,1 #define kDefaultiMacSandy "iMac12,1" #define kDefaultiMacSandyBIOSVersion " IM121.88Z.0047.B00.1102091756" -// defaults for a Mac Pro +//=========== MacPro =========== #define kDefaultMacProFamily "MacPro" #define kDefaultMacPro "MacPro3,1" #define kDefaultMacProBIOSVersion " MP31.88Z.006C.B05.0903051113" // defaults for a Mac Pro 4,1 core i7/Xeon #define kDefaultMacProNehalem "MacPro4,1" -#define kDefaultMacProNehalemBIOSVersion " MP41.88Z.0081.B04.0903051113" +#define kDefaultMacProNehalemBIOSVersion " MP41.88Z.0081.B08.1001221313" // defaults for a Mac Pro 5,1 core i7/Xeon #define kDefaultMacProWestmere "MacPro5,1" #define kDefaultMacProWestmereBIOSVersion " MP51.88Z.007F.B03.1010071432" #define kDefaultMacProWestmereBIOSReleaseDate "10/07/2010" +// defaults for a Mac Pro 6,1 +// MacPro6,1 - Mac-F60DEB81FF30ACF6 - MP61.88Z.0116.B00.1311020956 //------------------------------------------------------------------------------------------------------------------------- @@ -309,7 +333,7 @@ {kSMBTypeBaseBoard, kSMBString, getFieldOffset(SMBBaseBoard, locationInChassis), kSMBBaseBoardLocationInChassisKey, NULL, &defaultBaseBoard.locationInChassis }, // SMboardlocation - Part Component - {kSMBTypeBaseBoard, kSMBByte,getFieldOffset(SMBBaseBoard, boardType), + {kSMBTypeBaseBoard, kSMBByte, getFieldOffset(SMBBaseBoard, boardType), kSMBBaseBoardTypeKey,NULL, &defaultBaseBoard.boardType }, // SMboardtype - 10 (Motherboard) all model, 11 (Processor+Memory Module) MacPro // Index: branches/chucko/i386/libsaio/smbios_decode.c =================================================================== --- branches/chucko/i386/libsaio/smbios_decode.c (revision 2315) +++ branches/chucko/i386/libsaio/smbios_decode.c (revision 2316) @@ -134,7 +134,7 @@ DBG("\tManufacturer: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->manufacturer)); DBG("\tType: %d\n", structHeader->type); DBG("\tVersion: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->version)); - DBG("\tSerial Number: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); + DBG("\tSerial Number: ** PRIVATE **\n"); //%s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->serialNumber)); DBG("\tAsset Tag Number: %s\n", getSMBStringForField((SMBStructHeader *)structHeader, structHeader->assetTagNumber)); // Boot-up State: // Power Supply State Index: branches/chucko/i386/libsaio/smbios.h =================================================================== --- branches/chucko/i386/libsaio/smbios.h (revision 2315) +++ branches/chucko/i386/libsaio/smbios.h (revision 2316) @@ -227,7 +227,6 @@ /* ======================= System Enclosure (Type 3) ========================= */ - typedef struct SMBSystemEnclosure { SMB_STRUCT_HEADER // Type 3 Index: branches/chucko/i386/include/hfs/hfs_format.h =================================================================== --- branches/chucko/i386/include/hfs/hfs_format.h (revision 2315) +++ branches/chucko/i386/include/hfs/hfs_format.h (revision 2316) @@ -68,7 +68,7 @@ * These directories and their contents are not exported from the filesystem * under Mac OS X. */ -#define HFSPLUSMETADATAFOLDER "\xE2\x90\x80\xE2\x90\x80\xE2\x90\x80\xE2\x90\x80HFS+ Private Data" +#define HFSPLUSMETADATAFOLDER "\xE0\x80\x80\xE0\x80\x80\xE0\x80\x80\xE0\x80\x80HFS+ Private Data" #define HFSPLUS_DIR_METADATA_FOLDER ".HFS+ Private Directory Data\xd" /* Index: branches/chucko/package/po/en.po =================================================================== --- branches/chucko/package/po/en.po (revision 2315) +++ branches/chucko/package/po/en.po (revision 2316) @@ -8,15 +8,16 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-08-28 15:47-0000\n" -"Last-Translator: \n" +"PO-Revision-Date: 2013-12-29 12:14+0000\n" +"Last-Translator: ErmaC \n" "Language-Team: en \n" "Language: en\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: Poedit 1.5.7\n" +"X-Generator: Pootle 2.5.0-rc1\n" +"X-POOTLE-MTIME: 1388319263.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -682,16 +683,15 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 #, no-wrap msgid "Force SMBIOS Table 17 to be 27 bytes long." -msgstr "" +msgstr "Force SMBIOS Table 17 to be 27 bytes long." #. type: "RestartFix_title" #: Resources/templates/Localizable.strings:147 @@ -1879,7 +1879,7 @@ #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 00000604 for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 @@ -1891,7 +1891,7 @@ #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 0000060c for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 @@ -1903,7 +1903,7 @@ #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 @@ -1915,7 +1915,7 @@ #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 0000160a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 @@ -1927,7 +1927,7 @@ #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 0000160c for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 @@ -1939,7 +1939,7 @@ #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 @@ -1951,7 +1951,7 @@ #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 0000260a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 @@ -1963,7 +1963,7 @@ #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 0600260c for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 @@ -1975,7 +1975,7 @@ #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 0000260d for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:510 @@ -1987,7 +1987,7 @@ #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:513 @@ -1999,7 +1999,7 @@ #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." -msgstr "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." +msgstr "Set 0300220d for Intel Haswell (Desktop) AAPL,ig-platform-id." #. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:516 @@ -2011,7 +2011,7 @@ #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:519 @@ -2023,7 +2023,7 @@ #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 0600260a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:522 @@ -2035,7 +2035,7 @@ #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 0700260d for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:525 @@ -2047,7 +2047,7 @@ #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 0800260a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:528 @@ -2059,7 +2059,7 @@ #: Resources/templates/Localizable.strings:529 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." +msgstr "Set 08002e0a for Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "AD2000B_PinConf_title" #: Resources/templates/Localizable.strings:533 Index: branches/chucko/package/po/cs.po =================================================================== --- branches/chucko/package/po/cs.po (revision 2315) +++ branches/chucko/package/po/cs.po (revision 2316) @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: Chameleon 2.1svn-r1870\n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-06-08 13:43+0000\n" -"Last-Translator: martin63 \n" +"PO-Revision-Date: 2013-12-29 12:13+0000\n" +"Last-Translator: ErmaC \n" "Language-Team: cs \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -16,7 +16,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1370699010.0\n" +"X-POOTLE-MTIME: 1388319197.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -464,10 +464,9 @@ #. type: "NVIDIAGraphicsEnabler_title" #: Resources/templates/Localizable.strings:83 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "NVIDIAGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "NVIDIAGraphicsEnabler" #. type: "NVIDIAGraphicsEnabler_description" #: Resources/templates/Localizable.strings:84 @@ -479,10 +478,9 @@ #. type: "AMDGraphicsEnabler_title" #: Resources/templates/Localizable.strings:87 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "AMDGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "AMDGraphicsEnabler" #. type: "AMDGraphicsEnabler_description" #: Resources/templates/Localizable.strings:88 @@ -494,10 +492,9 @@ #. type: "IntelGraphicsEnabler_title" #: Resources/templates/Localizable.strings:91 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "IntelGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "IntelGraphicsEnabler" #. type: "IntelGraphicsEnabler_description" #: Resources/templates/Localizable.strings:92 @@ -677,10 +674,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 @@ -780,10 +776,9 @@ #. type: "DropHPET_description" #: Resources/templates/Localizable.strings:171 -#, fuzzy, no-wrap -#| msgid "Discard the motherboard's built-in SSDT tables." +#, no-wrap msgid "Discard the motherboard's built-in HPET table." -msgstr "Vyřadí SSDT tabulky obsažené v základní desce." +msgstr "Vyřadí HPET tabulky obsažené v základní desce." #. type: "DropSBST_title" #: Resources/templates/Localizable.strings:173 @@ -793,10 +788,9 @@ #. type: "DropSBST_description" #: Resources/templates/Localizable.strings:174 -#, fuzzy, no-wrap -#| msgid "Discard the motherboard's built-in SSDT tables." +#, no-wrap msgid "Discard the motherboard's built-in SBST table." -msgstr "Vyřadí SSDT tabulky obsažené v základní desce." +msgstr "Vyřadí SBST tabulky obsažené v základní desce." #. type: "DropECDT_title" #: Resources/templates/Localizable.strings:176 @@ -806,10 +800,9 @@ #. type: "DropECDT_description" #: Resources/templates/Localizable.strings:177 -#, fuzzy, no-wrap -#| msgid "Discard the motherboard's built-in SSDT tables." +#, no-wrap msgid "Discard the motherboard's built-in ECDT table." -msgstr "Vyřadí SSDT tabulky obsažené v základní desce." +msgstr "Vyřadí ECDT tabulky obsažené v základní desce." #. type: "DropASFT_title" #: Resources/templates/Localizable.strings:179 @@ -819,10 +812,9 @@ #. type: "DropASFT_description" #: Resources/templates/Localizable.strings:180 -#, fuzzy, no-wrap -#| msgid "Discard the motherboard's built-in SSDT tables." +#, no-wrap msgid "Discard the motherboard's built-in ASF! table." -msgstr "Vyřadí SSDT tabulky obsažené v základní desce." +msgstr "Vyřadí ASF! tabulky obsažené v základní desce." #. type: "DropDMAR_title" #: Resources/templates/Localizable.strings:182 @@ -1147,23 +1139,19 @@ #. type: "HDAULayoutIDx32_title" #: Resources/templates/Localizable.strings:265 #: Resources/templates/Localizable.strings:363 -#, fuzzy, no-wrap -#| msgid "LayoutID=392" +#, no-wrap msgid "LayoutID=32" -msgstr "LayoutID=392" +msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" #: Resources/templates/Localizable.strings:266 -#, fuzzy, no-wrap -#| msgid "" -#| "Set HDAU layout-it to 2:\n" -#| "002 (0x02, 0x00, 0x00, 0x00)." +#, no-wrap msgid "" "Set HDEF layout-it to 32:\n" "020 (0x20, 0x00, 0x00, 0x00)." msgstr "" -"Nastavit HDAU layout na 0:\n" -"002 (0x02, 0x00, 0x00, 0x00)." +"Nastavit HDEF layout na 32:\n" +"020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" #: Resources/templates/Localizable.strings:269 @@ -1530,16 +1518,13 @@ #. type: "HDAULayoutIDx32_description" #: Resources/templates/Localizable.strings:364 -#, fuzzy, no-wrap -#| msgid "" -#| "Set HDAU layout-it to 2:\n" -#| "002 (0x02, 0x00, 0x00, 0x00)." +#, no-wrap msgid "" "Set HDAU layout-it to 32:\n" "020 (0x20, 0x00, 0x00, 0x00)." msgstr "" -"Nastavit HDAU layout na 0:\n" -"002 (0x02, 0x00, 0x00, 0x00)." +"Nastavit HDAU layout na 32:\n" +"020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" #: Resources/templates/Localizable.strings:368 @@ -1877,220 +1862,195 @@ #. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:483 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00000604" -msgstr "01660000" +msgstr "00000604" #. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:484 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." +msgstr "Nastavit 00000604 pro Intel HD5000 (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000060c" -msgstr "01660000" +msgstr "0000060c" #. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:487 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." +msgstr "Nastavit 0000060c pro Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00001604" -msgstr "01660000" +msgstr "00001604" #. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:490 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." +msgstr "Nastavit 01660004 pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160a" -msgstr "01660000" +msgstr "0000160a" #. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:493 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." +msgstr "Nastavit 0000160a pro Intel HD5000 (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160c" -msgstr "01660000" +msgstr "0000160c" #. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:496 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." +msgstr "Nastavit 0000160c pro Intel HD5000 (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00002604" -msgstr "01660000" +msgstr "00002604" #. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:499 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." +msgstr "Nastavit 00002604 pro Intel HD5000 (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260a" -msgstr "01660000" +msgstr "0000260a" #. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:502 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." +msgstr "Nastavit 0000260a pro Intel HD5000 (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260c" -msgstr "01660000" +msgstr "0000260c" #. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:505 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." +msgstr "Nastavit 0600260c pro Intel HD5000 (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260d" -msgstr "01660000" +msgstr "0000260d" #. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:508 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." +msgstr "Nastavit 0000260d pro Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "02001604" -msgstr "" +msgstr "02001604" #. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:511 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id." +msgstr "Nastavit 02001604 pro Intel Haswell (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0300220d" -msgstr "" +msgstr "0300220d" #. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:514 -#, fuzzy, no-wrap -#| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." -msgstr "Nastavit 01620005 pro Intel HD4000 (Desktop) AAPL, ig-platform-id." +msgstr "Nastavit 0300220d pro Intel Haswell (Desktop) AAPL, ig-platform-id." #. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0500260a" -msgstr "" +msgstr "0500260a" #. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:517 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." +msgstr "Nastavit 0500260a pro Intel HD5000 (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0600260a" -msgstr "" +msgstr "0600260a" #. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:520 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." +msgstr "Nastavit 0600260a pro Intel HD5000 (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0700260d" -msgstr "" +msgstr "0700260d" #. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:523 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id." +msgstr "Nastavit 0700260d pro Intel HD5000 (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "0800260a" -msgstr "" +msgstr "0800260a" #. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:526 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." +msgstr "Nastavit 0800260a pro Intel HD5000 (Mobile) AAPL, ig-platform-id." #. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:528 #, no-wrap msgid "08002e0a" -msgstr "" +msgstr "08002e0a" #. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:529 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id." +msgstr "Nastavit 08002e0a pro Intel HD5000 (Mobile) AAPL, ig-platform-id." #. type: "AD2000B_PinConf_title" #: Resources/templates/Localizable.strings:533 @@ -2619,16 +2579,15 @@ #. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:702 -#, fuzzy, no-wrap +#, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:703 -#, fuzzy, no-wrap -#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." +#, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." -msgstr "Nastavit jednu AAPL,ig-platform-id požitelnú pro vaši Intel HD4000." +msgstr "Nastavit jednu AAPL,ig-platform-id požitelnú pro vaši Intel HD5000." #. type: "HDEFPinConfiguration_title" #: Resources/templates/Localizable.strings:706 Index: branches/chucko/package/po/es.po =================================================================== --- branches/chucko/package/po/es.po (revision 2315) +++ branches/chucko/package/po/es.po (revision 2316) @@ -8,7 +8,7 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-07-22 03:12-0000\n" +"PO-Revision-Date: 2013-12-29 12:07+0000\n" "Last-Translator: Maniac \n" "Language-Team: es \n" "Language: es\n" @@ -17,7 +17,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1371470563.0\n" +"X-POOTLE-MTIME: 1388318845.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -680,10 +680,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 @@ -915,10 +914,9 @@ #. type: "GenerateTStates_description" #: Resources/templates/Localizable.strings:204 -#, fuzzy, no-wrap -#| msgid "Enable auto generation of processor power performance states (P-States)." +#, no-wrap msgid "Enable auto generation of processor power performance states (T-States)." -msgstr "Habilita la generación automática de estados de carga o P-States del procesador." +msgstr "Habilita la generación automática de estados de carga o T-States del procesador." #. type: "1024x600x32_title" #: Resources/templates/Localizable.strings:208 @@ -2577,7 +2575,7 @@ #: Resources/templates/Localizable.strings:698 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" -msgstr "" +msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:699 @@ -2589,14 +2587,13 @@ #: Resources/templates/Localizable.strings:702 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" -msgstr "" +msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:703 -#, fuzzy, no-wrap -#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." +#, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." -msgstr "Set one AAPL,ig-platform-id to use for your Intel HD4000." +msgstr "" #. type: "HDEFPinConfiguration_title" #: Resources/templates/Localizable.strings:706 @@ -2606,10 +2603,9 @@ #. type: "HDEFPinConfiguration_description" #: Resources/templates/Localizable.strings:707 -#, fuzzy, no-wrap -#| msgid "Set one resolution to use." +#, no-wrap msgid "Set one HDEF PinConfiguration to use." -msgstr "Permite fijar la resolución de pantalla para nuestro monitor" +msgstr "" #. type: "Video_title" #: Resources/templates/Localizable.strings:710 Index: branches/chucko/package/po/fr.po =================================================================== --- branches/chucko/package/po/fr.po (revision 2315) +++ branches/chucko/package/po/fr.po (revision 2316) @@ -8,7 +8,7 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-07-22 03:14-0000\n" +"PO-Revision-Date: 2013-12-29 12:14+0000\n" "Last-Translator: JrCs \n" "Language-Team: fr \n" "Language: fr\n" @@ -17,7 +17,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1374452669.0\n" +"X-POOTLE-MTIME: 1388319299.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -700,10 +700,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 @@ -1172,16 +1171,11 @@ #. type: "HDEFLayoutIDx32_description" #: Resources/templates/Localizable.strings:266 -#, fuzzy, no-wrap -#| msgid "" -#| "Set HDAU layout-it to 2:\n" -#| "002 (0x02, 0x00, 0x00, 0x00)." +#, no-wrap msgid "" "Set HDEF layout-it to 32:\n" "020 (0x20, 0x00, 0x00, 0x00)." msgstr "" -"Set HDAU layout-it to 2:\n" -"002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" #: Resources/templates/Localizable.strings:269 @@ -1548,16 +1542,11 @@ #. type: "HDAULayoutIDx32_description" #: Resources/templates/Localizable.strings:364 -#, fuzzy, no-wrap -#| msgid "" -#| "Set HDAU layout-it to 2:\n" -#| "002 (0x02, 0x00, 0x00, 0x00)." +#, no-wrap msgid "" "Set HDAU layout-it to 32:\n" "020 (0x20, 0x00, 0x00, 0x00)." msgstr "" -"Set HDAU layout-it to 2:\n" -"002 (0x02, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" #: Resources/templates/Localizable.strings:368 @@ -1901,10 +1890,9 @@ #. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:484 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 @@ -1914,10 +1902,9 @@ #. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:487 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 @@ -1927,10 +1914,9 @@ #. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:490 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 @@ -1940,10 +1926,9 @@ #. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:493 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 @@ -1953,10 +1938,9 @@ #. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:496 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 @@ -1966,10 +1950,9 @@ #. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:499 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 @@ -1979,10 +1962,9 @@ #. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:502 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 @@ -1992,10 +1974,9 @@ #. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:505 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 @@ -2005,10 +1986,9 @@ #. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:508 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:510 @@ -2018,10 +1998,9 @@ #. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:511 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:513 @@ -2031,10 +2010,9 @@ #. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:514 -#, fuzzy, no-wrap -#| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." -msgstr "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:516 @@ -2044,10 +2022,9 @@ #. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:517 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:519 @@ -2057,10 +2034,9 @@ #. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:520 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:522 @@ -2070,10 +2046,9 @@ #. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:523 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:525 @@ -2083,10 +2058,9 @@ #. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:526 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:528 @@ -2096,10 +2070,9 @@ #. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:529 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "" #. type: "AD2000B_PinConf_title" #: Resources/templates/Localizable.strings:533 @@ -2639,10 +2612,9 @@ #. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:703 -#, fuzzy, no-wrap -#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." +#, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." -msgstr "Set one AAPL,ig-platform-id to use for your Intel HD4000." +msgstr "" #. type: "HDEFPinConfiguration_title" #: Resources/templates/Localizable.strings:706 Index: branches/chucko/package/po/nl.po =================================================================== --- branches/chucko/package/po/nl.po (revision 2315) +++ branches/chucko/package/po/nl.po (revision 2316) @@ -8,15 +8,16 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-05-15 00:36+0000\n" +"PO-Revision-Date: 2013-12-29 12:05+0000\n" "Last-Translator: beta992 \n" "Language-Team: nl \n" "Language: nl\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: 1368578199.0\n" +"X-POOTLE-MTIME: 1388318756.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -474,10 +475,9 @@ #. type: "NVIDIAGraphicsEnabler_title" #: Resources/templates/Localizable.strings:83 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "NVIDIAGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "NVIDIAGraphicsEnabler" #. type: "NVIDIAGraphicsEnabler_description" #: Resources/templates/Localizable.strings:84 @@ -489,10 +489,9 @@ #. type: "AMDGraphicsEnabler_title" #: Resources/templates/Localizable.strings:87 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "AMDGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "AMDGraphicsEnabler" #. type: "AMDGraphicsEnabler_description" #: Resources/templates/Localizable.strings:88 @@ -504,10 +503,9 @@ #. type: "IntelGraphicsEnabler_title" #: Resources/templates/Localizable.strings:91 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "IntelGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "IntelGraphicsEnabler" #. type: "IntelGraphicsEnabler_description" #: Resources/templates/Localizable.strings:92 @@ -687,10 +685,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 @@ -1145,10 +1142,9 @@ #. type: "HDAULayoutIDx32_title" #: Resources/templates/Localizable.strings:265 #: Resources/templates/Localizable.strings:363 -#, fuzzy, no-wrap -#| msgid "LayoutID=392" +#, no-wrap msgid "LayoutID=32" -msgstr "LayoutID=392" +msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" #: Resources/templates/Localizable.strings:266 @@ -1781,10 +1777,9 @@ #. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:483 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00000604" -msgstr "01660000" +msgstr "00000604" #. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:484 @@ -1794,10 +1789,9 @@ #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000060c" -msgstr "01660000" +msgstr "0000060c" #. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:487 @@ -1807,10 +1801,9 @@ #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00001604" -msgstr "01660000" +msgstr "00001604" #. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:490 @@ -1820,10 +1813,9 @@ #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160a" -msgstr "01660000" +msgstr "0000160a" #. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:493 @@ -1833,10 +1825,9 @@ #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160c" -msgstr "01660000" +msgstr "0000160c" #. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:496 @@ -1846,10 +1837,9 @@ #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00002604" -msgstr "01660000" +msgstr "00002604" #. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:499 @@ -1859,10 +1849,9 @@ #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260a" -msgstr "01660000" +msgstr "0000260a" #. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:502 @@ -1872,10 +1861,9 @@ #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260c" -msgstr "01660000" +msgstr "0000260c" #. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:505 @@ -1885,10 +1873,9 @@ #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260d" -msgstr "01660000" +msgstr "0000260d" #. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:508 @@ -1900,7 +1887,7 @@ #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "02001604" -msgstr "" +msgstr "02001604" #. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:511 @@ -1912,7 +1899,7 @@ #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0300220d" -msgstr "" +msgstr "0300220d" #. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:514 @@ -1924,7 +1911,7 @@ #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0500260a" -msgstr "" +msgstr "0500260a" #. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:517 @@ -1936,7 +1923,7 @@ #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0600260a" -msgstr "" +msgstr "0600260a" #. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:520 @@ -1948,7 +1935,7 @@ #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0700260d" -msgstr "" +msgstr "0700260d" #. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:523 @@ -1960,7 +1947,7 @@ #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "0800260a" -msgstr "" +msgstr "0800260a" #. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:526 @@ -1972,7 +1959,7 @@ #: Resources/templates/Localizable.strings:528 #, no-wrap msgid "08002e0a" -msgstr "" +msgstr "08002e0a" #. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:529 @@ -2263,7 +2250,7 @@ #: Resources/templates/Localizable.strings:610 #, no-wrap msgid "nvda_drv=1" -msgstr "" +msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" #: Resources/templates/Localizable.strings:611 @@ -2279,7 +2266,7 @@ #: Resources/templates/Localizable.strings:616 #, no-wrap msgid "dart=0" -msgstr "" +msgstr "dart=0" #. type: "Dart0_description" #: Resources/templates/Localizable.strings:617 @@ -2497,7 +2484,7 @@ #: Resources/templates/Localizable.strings:698 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" -msgstr "" +msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:699 @@ -2509,7 +2496,7 @@ #: Resources/templates/Localizable.strings:702 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" -msgstr "" +msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:703 Index: branches/chucko/package/po/ko.po =================================================================== --- branches/chucko/package/po/ko.po (revision 2315) +++ branches/chucko/package/po/ko.po (revision 2316) @@ -7,7 +7,7 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-06-04 17:50+0000\n" +"PO-Revision-Date: 2013-12-29 12:00+0000\n" "Last-Translator: Mill \n" "Language-Team: ko \n" "Language: ko\n" @@ -16,7 +16,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1370368229.0\n" +"X-POOTLE-MTIME: 1388318425.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -678,10 +678,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "강제 깨우기(ForceWake=Yes)" +msgstr "" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 @@ -1144,23 +1143,19 @@ #. type: "HDAULayoutIDx32_title" #: Resources/templates/Localizable.strings:265 #: Resources/templates/Localizable.strings:363 -#, fuzzy, no-wrap -#| msgid "LayoutID=392" +#, no-wrap msgid "LayoutID=32" -msgstr "LayoutID=392" +msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" #: Resources/templates/Localizable.strings:266 -#, fuzzy, no-wrap -#| msgid "" -#| "Set HDAU layout-it to 2:\n" -#| "002 (0x02, 0x00, 0x00, 0x00)." +#, no-wrap msgid "" "Set HDEF layout-it to 32:\n" "020 (0x20, 0x00, 0x00, 0x00)." msgstr "" -"Set HDAU layout-it to 2:\n" -"002 (0x02, 0x00, 0x00, 0x00)." +"HDEF layout-it 을 32로 설정:\n" +"020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_title" #: Resources/templates/Localizable.strings:269 @@ -1527,16 +1522,13 @@ #. type: "HDAULayoutIDx32_description" #: Resources/templates/Localizable.strings:364 -#, fuzzy, no-wrap -#| msgid "" -#| "Set HDAU layout-it to 2:\n" -#| "002 (0x02, 0x00, 0x00, 0x00)." +#, no-wrap msgid "" "Set HDAU layout-it to 32:\n" "020 (0x20, 0x00, 0x00, 0x00)." msgstr "" -"Set HDAU layout-it to 2:\n" -"002 (0x02, 0x00, 0x00, 0x00)." +"HDAU layout-it을 32로 설정:\n" +"020 (0x20, 0x00, 0x00, 0x00)." #. type: "HDAULayoutIDx40_description" #: Resources/templates/Localizable.strings:368 @@ -1874,220 +1866,195 @@ #. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:483 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00000604" -msgstr "01660000" +msgstr "00000604" #. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:484 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." +msgstr "Intel Haswell (모바일) 의 AAPL,ig-platform-id로 00000604설정." #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000060c" -msgstr "01660000" +msgstr "0000060c" #. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:487 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." +msgstr "Intel Haswell (모바일) 의 AAPL,ig-platform-id로 0000060c 설정." #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00001604" -msgstr "01660000" +msgstr "00001604" #. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:490 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정." +msgstr "Intel Haswell (Mobile) AAPL, ig-platform-id를 00001604 로 설정." #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160a" -msgstr "01660000" +msgstr "0000160a" #. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:493 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." +msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 0000160a로 설정." #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160c" -msgstr "01660000" +msgstr "0000160c" #. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:496 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." +msgstr "Intel Haswell (모바일) 의 AAPL,ig-platform-id로 0000160c 설정." #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00002604" -msgstr "01660000" +msgstr "00002604" #. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:499 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정." +msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 00002604 로 설정." #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260a" -msgstr "01660000" +msgstr "0000260a" #. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:502 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." +msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 0000260a 로 설정." #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260c" -msgstr "01660000" +msgstr "0000260c" #. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:505 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." +msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 0600260c 로 설정." #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260d" -msgstr "01660000" +msgstr "0000260d" #. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:508 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." +msgstr "Intel Haswell (모바일) 의 AAPL,ig-platform-id로 0000260d 설정." #. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "02001604" -msgstr "" +msgstr "02001604" #. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:511 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정." +msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 02001604 로 설정." #. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0300220d" -msgstr "" +msgstr "0300220d" #. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:514 -#, fuzzy, no-wrap -#| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." -msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01620005 설정." +msgstr "Intel Haswell (데스크톱) 의 AAPL,ig-platform-id로 0300220d 설정." #. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0500260a" -msgstr "" +msgstr "0500260a" #. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:517 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." +msgstr "Intel Haswell (모바일) AAPL 를 위해 ig-platform-id를 0500260a 로 설정." #. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0600260a" -msgstr "" +msgstr "0600260a" #. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:520 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." +msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 0600260a 로 설정." #. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0700260d" -msgstr "" +msgstr "0700260d" #. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:523 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정." +msgstr "Intel Haswell (모바일) 의 AAPL,ig-platform-id로 0700260d설정." #. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "0800260a" -msgstr "" +msgstr "0800260a" #. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:526 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." +msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 0800260a로 설정." #. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:528 #, no-wrap msgid "08002e0a" -msgstr "" +msgstr "08002e0a" #. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:529 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정." +msgstr "Intel Haswell (Mobile) AAPL 를 위해 ig-platform-id를 08002e0a 로 설정." #. type: "AD2000B_PinConf_title" #: Resources/templates/Localizable.strings:533 @@ -2378,7 +2345,7 @@ #: Resources/templates/Localizable.strings:610 #, no-wrap msgid "nvda_drv=1" -msgstr "" +msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" #: Resources/templates/Localizable.strings:611 @@ -2389,6 +2356,10 @@ "http://www.insanelymac.com/forum/topic/288582-new-nvidia-retail-driver-install-solution/\n" "Findings credits to meklort and Rampage Dev." msgstr "" +"시스템 환경설정 아래에 Nvidia Web Driver 라는 새로운 새로운 환경 설정 패널을 생성합니다. \n" +"정보: 새로운 Nvidia 정식 드라이버 설치 방법\n" +"http://www.insanelymac.com/forum/topic/288582-new-nvidia-retail-driver-install-solution/ (영문)\n" +"기여: merklort, Rampage Dev." #. type: "Dart0_title" #: Resources/templates/Localizable.strings:616 @@ -2624,16 +2595,15 @@ #. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:702 -#, fuzzy, no-wrap +#, no-wrap msgid "Intel Azul AAPL,ig-platform-id" msgstr "IIntel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:703 -#, fuzzy, no-wrap -#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." +#, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." -msgstr "Intel HD4000 을 위한 one AAPL,ig-platform-id 설정" +msgstr "Intel HD5000 사용을 위해 AAPL,ig-platform-id 하나 설정" #. type: "HDEFPinConfiguration_title" #: Resources/templates/Localizable.strings:706 Index: branches/chucko/package/po/ca.po =================================================================== --- branches/chucko/package/po/ca.po (revision 2315) +++ branches/chucko/package/po/ca.po (revision 2316) @@ -7,16 +7,17 @@ msgstr "" "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-05-11 17:17-0000\n" -"Last-Translator: ErmaC\n" +"POT-Creation-Date: 2013-12-27 14:14+0000\n" +"PO-Revision-Date: 2013-12-29 12:16+0000\n" +"Last-Translator: ErmaC \n" "Language-Team: ca \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1368280430.0\n" +"X-POOTLE-MTIME: 1388319382.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -458,10 +459,9 @@ #. type: "NVIDIAGraphicsEnabler_title" #: Resources/templates/Localizable.strings:83 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "NVIDIAGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "NVIDIAGraphicsEnabler" #. type: "NVIDIAGraphicsEnabler_description" #: Resources/templates/Localizable.strings:84 @@ -473,10 +473,9 @@ #. type: "AMDGraphicsEnabler_title" #: Resources/templates/Localizable.strings:87 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "AMDGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "AMDGraphicsEnabler" #. type: "AMDGraphicsEnabler_description" #: Resources/templates/Localizable.strings:88 @@ -488,10 +487,9 @@ #. type: "IntelGraphicsEnabler_title" #: Resources/templates/Localizable.strings:91 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "IntelGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "IntelGraphicsEnabler" #. type: "IntelGraphicsEnabler_description" #: Resources/templates/Localizable.strings:92 @@ -671,10 +669,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 @@ -1129,10 +1126,9 @@ #. type: "HDAULayoutIDx32_title" #: Resources/templates/Localizable.strings:265 #: Resources/templates/Localizable.strings:363 -#, fuzzy, no-wrap -#| msgid "LayoutID=392" +#, no-wrap msgid "LayoutID=32" -msgstr "LayoutID=392" +msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" #: Resources/templates/Localizable.strings:266 @@ -1765,10 +1761,9 @@ #. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:483 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00000604" -msgstr "01660000" +msgstr "00000604" #. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:484 @@ -1778,10 +1773,9 @@ #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000060c" -msgstr "01660000" +msgstr "0000060c" #. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:487 @@ -1791,10 +1785,9 @@ #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00001604" -msgstr "01660000" +msgstr "00001604" #. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:490 @@ -1804,10 +1797,9 @@ #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160a" -msgstr "01660000" +msgstr "0000160a" #. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:493 @@ -1817,10 +1809,9 @@ #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160c" -msgstr "01660000" +msgstr "0000160c" #. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:496 @@ -1830,10 +1821,9 @@ #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00002604" -msgstr "01660000" +msgstr "00002604" #. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:499 @@ -1843,10 +1833,9 @@ #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260a" -msgstr "01660000" +msgstr "0000260a" #. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:502 @@ -1856,10 +1845,9 @@ #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260c" -msgstr "01660000" +msgstr "0000260c" #. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:505 @@ -1869,10 +1857,9 @@ #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260d" -msgstr "01660000" +msgstr "0000260d" #. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:508 @@ -1884,7 +1871,7 @@ #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "02001604" -msgstr "" +msgstr "02001604" #. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:511 @@ -1896,7 +1883,7 @@ #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0300220d" -msgstr "" +msgstr "0300220d" #. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:514 @@ -1908,7 +1895,7 @@ #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0500260a" -msgstr "" +msgstr "0500260a" #. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:517 @@ -1920,7 +1907,7 @@ #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0600260a" -msgstr "" +msgstr "0600260a" #. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:520 @@ -1932,7 +1919,7 @@ #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0700260d" -msgstr "" +msgstr "0700260d" #. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:523 @@ -1944,7 +1931,7 @@ #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "0800260a" -msgstr "" +msgstr "0800260a" #. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:526 @@ -1956,7 +1943,7 @@ #: Resources/templates/Localizable.strings:528 #, no-wrap msgid "08002e0a" -msgstr "" +msgstr "08002e0a" #. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:529 @@ -2247,7 +2234,7 @@ #: Resources/templates/Localizable.strings:610 #, no-wrap msgid "nvda_drv=1" -msgstr "" +msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" #: Resources/templates/Localizable.strings:611 @@ -2481,7 +2468,7 @@ #: Resources/templates/Localizable.strings:698 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" -msgstr "" +msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:699 @@ -2493,7 +2480,7 @@ #: Resources/templates/Localizable.strings:702 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" -msgstr "" +msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:703 @@ -2509,10 +2496,9 @@ #. type: "HDEFPinConfiguration_description" #: Resources/templates/Localizable.strings:707 -#, fuzzy, no-wrap -#| msgid "Set one resolution to use." +#, no-wrap msgid "Set one HDEF PinConfiguration to use." -msgstr "Estableix la resolució del teu monitor" +msgstr "" #. type: "Video_title" #: Resources/templates/Localizable.strings:710 Index: branches/chucko/package/po/pt.po =================================================================== --- branches/chucko/package/po/pt.po (revision 2315) +++ branches/chucko/package/po/pt.po (revision 2316) @@ -8,15 +8,16 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-07-29 03:44-0000\n" -"Last-Translator: \n" +"PO-Revision-Date: 2013-12-29 11:59+0000\n" +"Last-Translator: ErmaC \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: 1369572030.0\n" +"X-POOTLE-MTIME: 1388318373.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -694,10 +695,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 @@ -1889,10 +1889,9 @@ #. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:484 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 00000604 para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 @@ -1902,10 +1901,9 @@ #. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:487 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 0000060c para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 @@ -1915,10 +1913,9 @@ #. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:490 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 00001604 para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 @@ -1928,10 +1925,9 @@ #. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:493 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 0000160a para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 @@ -1941,10 +1937,9 @@ #. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:496 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 0000160c para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 @@ -1954,10 +1949,9 @@ #. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:499 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 00002604 para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 @@ -1967,10 +1961,9 @@ #. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:502 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 0000260a para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 @@ -1980,10 +1973,9 @@ #. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:505 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 0600260c para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 @@ -1993,10 +1985,9 @@ #. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:508 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 0000260d para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:510 @@ -2006,10 +1997,9 @@ #. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:511 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 02001604 para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:513 @@ -2019,10 +2009,9 @@ #. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:514 -#, fuzzy, no-wrap -#| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." -msgstr "injeta 01620005 para Intel HD4000 (Desktop) AAPL,ig-platform-id ." +msgstr "injeta 0300220d para Intel Haswell (Desktop) AAPL,ig-platform-id ." #. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:516 @@ -2032,10 +2021,9 @@ #. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:517 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 0500260a para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:519 @@ -2045,10 +2033,9 @@ #. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:520 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 0600260a para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:522 @@ -2058,10 +2045,9 @@ #. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:523 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 0700260d para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:525 @@ -2071,10 +2057,9 @@ #. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:526 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 0800260a para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:528 @@ -2084,10 +2069,9 @@ #. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:529 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Injeta 08002e0a para Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "AD2000B_PinConf_title" #: Resources/templates/Localizable.strings:533 Index: branches/chucko/package/po/pt-BR.po =================================================================== --- branches/chucko/package/po/pt-BR.po (revision 2315) +++ branches/chucko/package/po/pt-BR.po (revision 2316) @@ -8,15 +8,16 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-07-29 03:42-0000\n" -"Last-Translator: \n" +"PO-Revision-Date: 2013-12-29 11:56+0000\n" +"Last-Translator: ErmaC \n" "Language-Team: pt-BR \n" "Language: pt-BR\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: 1369690350.0\n" +"X-POOTLE-MTIME: 1388318218.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -694,10 +695,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 Index: branches/chucko/package/po/fa.po =================================================================== --- branches/chucko/package/po/fa.po (revision 2315) +++ branches/chucko/package/po/fa.po (revision 2316) @@ -7,15 +7,16 @@ msgstr "" "Project-Id-Version: Chameleon 2.1svn-r1870\n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-05-11 13:32+0000\n" +"PO-Revision-Date: 2014-01-05 13:57+0000\n" "Last-Translator: minlite \n" "Language-Team: LANGUAGE \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1368280430.0\n" +"X-POOTLE-MTIME: 1388930225.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -30,7 +31,7 @@ #. type: Content of:

#: Resources/templates/Welcome.html:25 msgid "Do not install to an Apple Macintosh computer" -msgstr "بر روی کامپیوتر های مکینتاش نصب نکنید." +msgstr "بر روی کامپیوتر های مکینتاش اپل نصب نکنید" #. type: Content of:

#: Resources/templates/Welcome.html:27 @@ -65,12 +66,12 @@ #. type: Content of:

#: Resources/templates/Welcome.html:36 Resources/templates/Conclusion.html:30 msgid "Package built by: %WHOBUILD%, language translated by: blackosx" -msgstr "ساختن بسته توسط :%WHOBUILD% , ترجمه زبان توسط : cyrus" +msgstr "ساختن بسته توسط: %WHOBUILD%، ترجمه زبان توسط: cyrus و minlite" #. type: Content of:

#: Resources/templates/Welcome.html:37 Resources/templates/Conclusion.html:31 msgid "Copyright © %CPRYEAR%" -msgstr "Copyright © %CPRYEAR%" +msgstr "Copyright © %CPRYEAR%‫‪‪‫" #. type: Content of:

#: Resources/templates/Description.html:18 @@ -79,95 +80,92 @@ "evolved from the development of David Elliott's fake EFI implementation " "added to Apple's boot-132 project." msgstr "" -"کامیلیون یک بوت لودر است که توسعه یافته ترکیب fake efi توسط دیوید الیوت با " -"Apple boot-132 می باشد." +"کامیلیون یک بوت لودر برگفته از ترکیب قسمت هایی از پیاده سازی EFI تقلبی توسط " +"دیوید الیوت است که به پروژه boot-132 اپل اضافه شده اند." #. type: Content of:

#: Resources/templates/Description.html:20 msgid "Chameleon v2 is extended with many features. For example:" -msgstr "در کامیلیون نسخه دوم خصوصیات زیادی توسعه یافته است . مانند:" +msgstr "در نسخه دوم کامیلیون خصوصیات زیادی توسعه یافته اند. مانند:" #. type: Content of:

#: Resources/templates/Description.html:22 msgid "- Fully customizable GUI to bring some color to the Darwin Bootloader." -msgstr "" -"-ظاهری با قابلیت شخصی سازی کامل برای افزودن تعدای از رنگ ها به بوت لودر " -"داروین." +msgstr "- ظاهری با قابلیت شخصی سازی کامل برای زیبا سازی بوت لودر داروین." #. type: Content of:

#: Resources/templates/Description.html:23 msgid "" "- Load a ramdisk to directly boot retail DVDs without additional programs." msgstr "" -"بارگیری یک ramdisk برای بوت مستقیم دی وی دی اصلی بدونه نیاز به برنامه های " +"- بارگیری یک ramdisk برای بوت مستقیم دی وی دی اصلی بدون نیاز به برنامه های " "اضافی ." #. type: Content of:

#: Resources/templates/Description.html:24 msgid "- Hibernation. Enjoy resuming your Mac OS X with a preview image." msgstr "" -"-قابلیت هایبر نت . از قابلیت شروع مجدد سیستم عامل مک خود با یک تصویر پیش " +"- قابلیت خواب زمستانی. از قابلیت شروع مجدد سیستم عامل مک خود با یک تصویر پیش " "نمایش لذت ببرید." #. type: Content of:

#: Resources/templates/Description.html:25 msgid "- SMBIOS override to modify the factory SMBIOS values." -msgstr "" -"-قابیلت نادیده گرفتن smbios تعریف شده توسط کارخانه و جایگزینی با smbios دیگر." +msgstr "- قابلیت استفاده از SMBIOS متفرقه برای جایگزین کردن SMBIOS کارخانه." #. type: Content of:

#: Resources/templates/Description.html:26 msgid "" "- DSDT override to use a modified fixed DSDT which can solve several issues." msgstr "" -"-نادیده گرفتن DSDT . برای استفاده از یک DSDT ویرایش شده که می تواند تعدادی " -"از مشکلات را حل کند." +"- قابلیت استفاده از DSDT متفرقه ویرایش شده که می تواند تعدادی از مشکلات " +"احتمالی را حل کند." #. type: Content of:

#: Resources/templates/Description.html:27 msgid "- Device Property Injection via device-properties string." -msgstr "-تزریق مشخصات دستگاه ها توسط device-properties sting" +msgstr "- تزریق مشخصات دستگاه توسط رشته device-properties." #. type: Content of:

#: Resources/templates/Description.html:28 msgid "- hybrid boot0 / boot1h for MBR and GPT partitioned disks." -msgstr "-boot0/boot1h پیوندی برای دیسک MBR و GPT" +msgstr "- boot0/boot1h پیوندی برای دیسک های پارتیشن شده به روش MBR و GPT." #. type: Content of:

#: Resources/templates/Description.html:29 msgid "- Automatic FSB detection code even for recent AMD CPUs." -msgstr "-تشخیص خودکار FSB حتی برای سی پی یو های AMD" +msgstr "- تشخیص خودکار FSB حتی برای سی پی یو های جدید AMD." #. type: Content of:

#: Resources/templates/Description.html:30 msgid "- Apple Software RAID support." -msgstr "-پشتیبانی از قابلیت نرم افزاری RAID اپل ." +msgstr "- پشتیبانی از قابلیت RAID نرم افزاری اپل ." #. type: Content of:

#: Resources/templates/Description.html:31 msgid "- Nvidia & ATI/AMD Graphics Card Enabler." -msgstr "-فعال سازی کار ت گرافیک های ;Nvidia&,ATI/AMD" +msgstr "- فعال سازی کارت گرافیک های: Nvidia و ATI/AMD." #. type: Content of:

#: Resources/templates/Description.html:32 msgid "- Module support" -msgstr "-پشتیبانی از ماژول." +msgstr "- پشتیبانی از ماژول." #. type: Content of:

#: Resources/templates/Description.html:33 msgid "- Memory detection adapted from memtest86: " -msgstr "-تشخیص کارت حافظه بهینه سازی شده memtest86: " +msgstr "- تشخیص حافظه برگرفته از برنامه memtest86." #. type: Content of:

#: Resources/templates/Description.html:34 msgid "" "- Automatic P-State & C-State generation for native power management." -msgstr "-مدیریت انرژی به صورت بومی با استفاده از ایجاد c-state,pstate&" +msgstr "- ایجاد خودکار P-State و C-State ها برای مدیریت قدرت بومی." #. type: Content of:

#: Resources/templates/Description.html:35 msgid "- Message logging." -msgstr "-نمایش پیغامهای که هنگام بوت نمایش داده می شوند بعد از ورود به سیستم ." +msgstr "- قابلیت لاگ کردن پیغام ها." #. type: Content of:

#: Resources/templates/Description.html:37 @@ -177,12 +175,12 @@ #. type: Content of:

#: Resources/templates/Description.html:40 msgid "FAQ's: " -msgstr "پرسش و پاسخ ها: " +msgstr "سوالات متداول: " #. type: Content of:

#: Resources/templates/Conclusion.html:22 msgid "The scripts have completed and a file named " -msgstr "اسکریپت ها کامل شده و تحت یک فایل که نامیده شده است  " +msgstr "اسکریپت ها کامل شده و یک فایل نامیده شده است  " #. type: Content of:

#: Resources/templates/Conclusion.html:22 @@ -192,7 +190,7 @@ #. type: Content of:

#: Resources/templates/Conclusion.html:23 msgid " has been written to the root of your chosen partition." -msgstr " در ریشه پارتیشن انتخاب شده نوشته می شود." +msgstr "  در ریشه پارتیشن انتخاب شده نوشته می شود." #. type: Content of:

#: Resources/templates/Conclusion.html:25 @@ -210,8 +208,8 @@ " to find out if the installation was successful and keep it for a " "record of what was done." msgstr "" -" برای اینکه فهمیدن این موضوع که نصب موفقیت آمیز بوده است و نگهداشتن آن " -"برای اینکه مشخص شود چه عملیاتی انجام شده است." +" برای فهمیدن این موضوع که نصب موفقیت آمیز بوده است، آن را برای این که " +"بدانید چه کار هایی انجام شده است نگه دارید." #. type: Content of:

#: Resources/templates/Conclusion.html:28 @@ -246,7 +244,7 @@ #: Resources/templates/Localizable.strings:13 #, no-wrap msgid "This software cannot be installed on this computer." -msgstr "این نرم افزار بر روی این کامپیوتر نصب نمی شود ." +msgstr "این نرم افزار بر روی این کامپیوتر نصب نمی شود." #. type: "Chameleon_title" #: Resources/templates/Localizable.strings:19 @@ -264,9 +262,9 @@ "boot2 (On the partition's root directory) for loading kernel etc." msgstr "" "کامیلیون نیازمند سه فایل ضروری است. (به شکل ساده)\n" -"boot0 (بر روی درایو MBR) ;که boot1را بار گیری می کند .\n" +"boot0 (بر روی MBR درایو); که boot1 را بار گیری می کند .\n" "boot1 (بر روی بوت سکتور پارتیشن) برای اینکه boot2 را پیدا کند .\n" -"boot2 (در پارتیشن ریشه ) بر بارگیری کرنل و غیره." +"boot2 (در فلدر ریشه پارتیشن) بر بارگیری کرنل و غیره." #. type: "Default_title" #: Resources/templates/Localizable.strings:25 @@ -279,7 +277,10 @@ #: Resources/templates/Localizable.strings:26 #, no-wrap msgid "Install Chameleon's files to the root of the selected partition using either boot0 or boot0md depending on your system without destroying any existing Windows installation if you have one." -msgstr "فایل های کامیلیون را در ریشه پارتیشن انتخاب شده با استفاده از boot0 یا boot0mdبسته به سیستم شما بدونه آسیب زدن به نسخه های نصب شده ویندوز (در صورت وجود )نصب می کند ." +msgstr "" +"فایل های کامیلیون را در ریشه پارتیشن انتخاب شده با استفاده از boot0 یا " +"boot0md بسته به سیستم شما بدونه آسیب زدن به نسخه های نصب شده ویندوز (در صورت " +"وجود) نصب کن." #. type: "noboot_title" #: Resources/templates/Localizable.strings:28 Index: branches/chucko/package/po/de.po =================================================================== --- branches/chucko/package/po/de.po (revision 2315) +++ branches/chucko/package/po/de.po (revision 2316) @@ -8,15 +8,16 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-05-30 23:39+0000\n" -"Last-Translator: !Xabbu \n" +"PO-Revision-Date: 2013-12-29 12:04+0000\n" +"Last-Translator: ErmaC \n" "Language-Team: de \n" "Language: de\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: 1369957192.0\n" +"X-POOTLE-MTIME: 1388318654.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -688,10 +689,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Ja" +msgstr "ForceFullMemInfo=Ja" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 @@ -1877,220 +1877,195 @@ #. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:483 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00000604" -msgstr "01660000" +msgstr "00000604" #. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:484 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 00000604 für Intel HD5000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000060c" -msgstr "01660000" +msgstr "0000060c" #. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:487 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 0000060c für Intel HD5000 (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00001604" -msgstr "01660000" +msgstr "00001604" #. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:490 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 00001604 für Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160a" -msgstr "01660000" +msgstr "0000160a" #. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:493 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 0000160a für Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160c" -msgstr "01660000" +msgstr "0000160c" #. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:496 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 0000160c für Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00002604" -msgstr "01660000" +msgstr "00002604" #. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:499 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 00002604 für Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260a" -msgstr "01660000" +msgstr "0000260a" #. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:502 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 0000260a für Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260c" -msgstr "01660000" +msgstr "0000260c" #. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:505 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 0600260c für Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260d" -msgstr "01660000" +msgstr "0000260d" #. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:508 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 0000260d für Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "02001604" -msgstr "" +msgstr "02001604" #. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:511 -#, fuzzy, no-wrap -#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 02001604 für Intel Haswell (Mobile) AAPL,ig-platform-id ." #. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0300220d" -msgstr "" +msgstr "0300220d" #. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:514 -#, fuzzy, no-wrap -#| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." -msgstr "Setze 01620005 für Intel HD4000 (Desktop) AAPL,ig-platform-id ." +msgstr "Setze 0300220d für Intel Haswell (Desktop) AAPL,ig-platform-id ." #. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0500260a" -msgstr "" +msgstr "0500260a" #. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:517 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 0500260a für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0600260a" -msgstr "" +msgstr "0600260a" #. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:520 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 0600260a für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0700260d" -msgstr "" +msgstr "0700260d" #. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:523 -#, fuzzy, no-wrap -#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 0700260d für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "0800260a" -msgstr "" +msgstr "0800260a" #. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:526 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 0800260a für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:528 #, no-wrap msgid "08002e0a" -msgstr "" +msgstr "08002e0a" #. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:529 -#, fuzzy, no-wrap -#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ." +#, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ." +msgstr "Setze 08002e0a für Intel Haswell (Mobile) AAPL,ig-platform-id." #. type: "AD2000B_PinConf_title" #: Resources/templates/Localizable.strings:533 @@ -2619,17 +2594,15 @@ #. type: "IntelAzul_title" #: Resources/templates/Localizable.strings:702 -#, fuzzy, no-wrap -#| msgid "Intel Capri AAPL,ig-platform-id" +#, no-wrap msgid "Intel Azul AAPL,ig-platform-id" -msgstr "Intel Capri AAPL,ig-platform-id" +msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:703 -#, fuzzy, no-wrap -#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000." +#, no-wrap msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000." -msgstr "Wähle eine AAPL,ig-platform-id zur Nutzung der Intel HD4000 Grafik." +msgstr "Wähle eine AAPL,ig-platform-id zur Nutzung der Intel HD5000 Grafik." #. type: "HDEFPinConfiguration_title" #: Resources/templates/Localizable.strings:706 Index: branches/chucko/package/po/zh_TW.po =================================================================== --- branches/chucko/package/po/zh_TW.po (revision 2315) +++ branches/chucko/package/po/zh_TW.po (revision 2316) @@ -8,7 +8,7 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-12-10 07:23+0000\n" +"PO-Revision-Date: 2013-12-28 07:30+0000\n" "Last-Translator: crazybirdy <>\n" "Language-Team: zh_TW \n" "Language: zh_TW\n" @@ -17,7 +17,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1386660204.0\n" +"X-POOTLE-MTIME: 1388215834.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -687,16 +687,15 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 #, no-wrap msgid "Force SMBIOS Table 17 to be 27 bytes long." -msgstr "" +msgstr "(預設是 No) 強制 SMBIOS 表格 17 的長度改為 27 bytes。" #. type: "RestartFix_title" #: Resources/templates/Localizable.strings:147 @@ -1884,7 +1883,7 @@ #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 00000604。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 00000604。" #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 @@ -1896,7 +1895,7 @@ #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000060c。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000060c。" #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 @@ -1908,7 +1907,7 @@ #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 00001604。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 00001604。" #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 @@ -1920,7 +1919,7 @@ #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000160a。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000160a。" #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 @@ -1932,7 +1931,7 @@ #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000160c。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000160c。" #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 @@ -1944,7 +1943,7 @@ #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 00002604。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 00002604。" #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 @@ -1956,7 +1955,7 @@ #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000260a。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000260a。" #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 @@ -1968,7 +1967,7 @@ #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0600260c。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0600260c。" #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 @@ -1980,7 +1979,7 @@ #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000260d。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0000260d。" #. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:510 @@ -1992,7 +1991,7 @@ #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 02001604。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 02001604。" #. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:513 @@ -2004,7 +2003,7 @@ #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Desktop) 顯示卡的 AAPL,ig-platform-id 為 0300220d。" +msgstr "設定 Intel Haswell (Desktop) 顯示卡的 AAPL,ig-platform-id 為 0300220d。" #. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:516 @@ -2016,7 +2015,7 @@ #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0500260a。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0500260a。" #. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:519 @@ -2028,7 +2027,7 @@ #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0600260a。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0600260a。" #. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:522 @@ -2040,7 +2039,7 @@ #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0700260d。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0700260d。" #. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:525 @@ -2052,7 +2051,7 @@ #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0800260a。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 0800260a。" #. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:528 @@ -2064,7 +2063,7 @@ #: Resources/templates/Localizable.strings:529 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "設定 Intel HD5000 (Mobile) 顯示卡的 AAPL,ig-platform-id 為 08002e0a。" +msgstr "設定 Intel Haswell (Mobile) 顯示卡的 AAPL,ig-platform-id 為 08002e0a。" #. type: "AD2000B_PinConf_title" #: Resources/templates/Localizable.strings:533 Index: branches/chucko/package/po/id.po =================================================================== --- branches/chucko/package/po/id.po (revision 2315) +++ branches/chucko/package/po/id.po (revision 2316) @@ -8,15 +8,16 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-05-11 16:47-0000\n" +"PO-Revision-Date: 2013-12-29 12:18+0000\n" "Last-Translator: archintosh \n" "Language-Team: id \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1368282607.0\n" +"X-POOTLE-MTIME: 1388319522.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -461,10 +462,9 @@ #. type: "NVIDIAGraphicsEnabler_title" #: Resources/templates/Localizable.strings:83 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "NVIDIAGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "NVIDIAGraphicsEnabler" #. type: "NVIDIAGraphicsEnabler_description" #: Resources/templates/Localizable.strings:84 @@ -476,10 +476,9 @@ #. type: "AMDGraphicsEnabler_title" #: Resources/templates/Localizable.strings:87 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "AMDGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "AMDGraphicsEnabler" #. type: "AMDGraphicsEnabler_description" #: Resources/templates/Localizable.strings:88 @@ -491,10 +490,9 @@ #. type: "IntelGraphicsEnabler_title" #: Resources/templates/Localizable.strings:91 -#, fuzzy, no-wrap -#| msgid "GraphicsEnabler=Yes" +#, no-wrap msgid "IntelGraphicsEnabler" -msgstr "GraphicsEnabler=Yes" +msgstr "IntelGraphicsEnabler" #. type: "IntelGraphicsEnabler_description" #: Resources/templates/Localizable.strings:92 @@ -644,10 +642,9 @@ #. type: "EnableWifi_description" #: Resources/templates/Localizable.strings:136 -#, fuzzy, no-wrap -#| msgid "Enables the option of adding 'built-in' to your ethernet devices." +#, no-wrap msgid "Enables the option of adding AirPort values to your wireless device." -msgstr "Mengaktifkan opsi dalam menambah ‘integrasi (built-in)’ ke perangkat ethernet anda." +msgstr "" #. type: "ForceHPET_title" #: Resources/templates/Localizable.strings:138 @@ -675,10 +672,9 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 @@ -910,10 +906,9 @@ #. type: "GenerateTStates_description" #: Resources/templates/Localizable.strings:204 -#, fuzzy, no-wrap -#| msgid "Enable auto generation of processor power performance states (P-States)." +#, no-wrap msgid "Enable auto generation of processor power performance states (T-States)." -msgstr "Mengaktifkan secara otomatis processor P-States." +msgstr "Mengaktifkan secara otomatis processor T-States." #. type: "1024x600x32_title" #: Resources/templates/Localizable.strings:208 @@ -1134,10 +1129,9 @@ #. type: "HDAULayoutIDx32_title" #: Resources/templates/Localizable.strings:265 #: Resources/templates/Localizable.strings:363 -#, fuzzy, no-wrap -#| msgid "LayoutID=392" +#, no-wrap msgid "LayoutID=32" -msgstr "LayoutID=392" +msgstr "LayoutID=32" #. type: "HDEFLayoutIDx32_description" #: Resources/templates/Localizable.strings:266 @@ -1770,10 +1764,9 @@ #. type: "IntelAzulx00_title" #: Resources/templates/Localizable.strings:483 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00000604" -msgstr "01660000" +msgstr "00000604" #. type: "IntelAzulx00_description" #: Resources/templates/Localizable.strings:484 @@ -1783,10 +1776,9 @@ #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000060c" -msgstr "01660000" +msgstr "0000060c" #. type: "IntelAzulx01_description" #: Resources/templates/Localizable.strings:487 @@ -1796,10 +1788,9 @@ #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00001604" -msgstr "01660000" +msgstr "00001604" #. type: "IntelAzulx02_description" #: Resources/templates/Localizable.strings:490 @@ -1809,10 +1800,9 @@ #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160a" -msgstr "01660000" +msgstr "0000160a" #. type: "IntelAzulx03_description" #: Resources/templates/Localizable.strings:493 @@ -1822,10 +1812,9 @@ #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000160c" -msgstr "01660000" +msgstr "0000160c" #. type: "IntelAzulx04_description" #: Resources/templates/Localizable.strings:496 @@ -1835,10 +1824,9 @@ #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "00002604" -msgstr "01660000" +msgstr "00002604" #. type: "IntelAzulx05_description" #: Resources/templates/Localizable.strings:499 @@ -1848,10 +1836,9 @@ #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260a" -msgstr "01660000" +msgstr "0000260a" #. type: "IntelAzulx06_description" #: Resources/templates/Localizable.strings:502 @@ -1861,10 +1848,9 @@ #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260c" -msgstr "01660000" +msgstr "0000260c" #. type: "IntelAzulx07_description" #: Resources/templates/Localizable.strings:505 @@ -1874,10 +1860,9 @@ #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 -#, fuzzy, no-wrap -#| msgid "01660000" +#, no-wrap msgid "0000260d" -msgstr "01660000" +msgstr "0000260d" #. type: "IntelAzulx08_description" #: Resources/templates/Localizable.strings:508 @@ -1889,7 +1874,7 @@ #: Resources/templates/Localizable.strings:510 #, no-wrap msgid "02001604" -msgstr "" +msgstr "02001604" #. type: "IntelAzulx09_description" #: Resources/templates/Localizable.strings:511 @@ -1901,7 +1886,7 @@ #: Resources/templates/Localizable.strings:513 #, no-wrap msgid "0300220d" -msgstr "" +msgstr "0300220d" #. type: "IntelAzulx10_description" #: Resources/templates/Localizable.strings:514 @@ -1913,7 +1898,7 @@ #: Resources/templates/Localizable.strings:516 #, no-wrap msgid "0500260a" -msgstr "" +msgstr "0500260a" #. type: "IntelAzulx11_description" #: Resources/templates/Localizable.strings:517 @@ -1925,7 +1910,7 @@ #: Resources/templates/Localizable.strings:519 #, no-wrap msgid "0600260a" -msgstr "" +msgstr "0600260a" #. type: "IntelAzulx12_description" #: Resources/templates/Localizable.strings:520 @@ -1937,7 +1922,7 @@ #: Resources/templates/Localizable.strings:522 #, no-wrap msgid "0700260d" -msgstr "" +msgstr "0700260d" #. type: "IntelAzulx13_description" #: Resources/templates/Localizable.strings:523 @@ -1949,7 +1934,7 @@ #: Resources/templates/Localizable.strings:525 #, no-wrap msgid "0800260a" -msgstr "" +msgstr "0800260a" #. type: "IntelAzulx14_description" #: Resources/templates/Localizable.strings:526 @@ -1961,7 +1946,7 @@ #: Resources/templates/Localizable.strings:528 #, no-wrap msgid "08002e0a" -msgstr "" +msgstr "08002e0a" #. type: "IntelAzulx15_description" #: Resources/templates/Localizable.strings:529 @@ -2049,10 +2034,9 @@ #. type: "GraphicsEnabler_description" #: Resources/templates/Localizable.strings:554 -#, fuzzy, no-wrap -#| msgid "Enables the option to autodetect NVIDIA based GPUs and inject the correct info." +#, no-wrap msgid "Enables the option to autodetect NVIDIA, AMD/ATI or Intel based GPUs and inject the correct info." -msgstr "Mengaktifkan opsi untuk mendeteksi otomatis GPU berbasis NVIDIA dan memasukkan info-info yang benar." +msgstr "" #. type: "EnableHDMIAudio_title" #: Resources/templates/Localizable.strings:556 @@ -2253,7 +2237,7 @@ #: Resources/templates/Localizable.strings:610 #, no-wrap msgid "nvda_drv=1" -msgstr "" +msgstr "nvda_drv=1" #. type: "NvdaDrv1_description" #: Resources/templates/Localizable.strings:611 @@ -2487,7 +2471,7 @@ #: Resources/templates/Localizable.strings:698 #, no-wrap msgid "Intel Capri AAPL,ig-platform-id" -msgstr "" +msgstr "Intel Capri AAPL,ig-platform-id" #. type: "IntelCapri_description" #: Resources/templates/Localizable.strings:699 @@ -2499,7 +2483,7 @@ #: Resources/templates/Localizable.strings:702 #, no-wrap msgid "Intel Azul AAPL,ig-platform-id" -msgstr "" +msgstr "Intel Azul AAPL,ig-platform-id" #. type: "IntelAzul_description" #: Resources/templates/Localizable.strings:703 @@ -2515,10 +2499,9 @@ #. type: "HDEFPinConfiguration_description" #: Resources/templates/Localizable.strings:707 -#, fuzzy, no-wrap -#| msgid "Set one resolution to use." +#, no-wrap msgid "Set one HDEF PinConfiguration to use." -msgstr "Pilih salah satu resolusi yang ingin di gunakan." +msgstr "" #. type: "Video_title" #: Resources/templates/Localizable.strings:710 Index: branches/chucko/package/po/zh_CN.po =================================================================== --- branches/chucko/package/po/zh_CN.po (revision 2315) +++ branches/chucko/package/po/zh_CN.po (revision 2316) @@ -8,7 +8,7 @@ "Project-Id-Version: Chameleon 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-12-27 13:32+0000\n" -"PO-Revision-Date: 2013-12-10 07:17+0000\n" +"PO-Revision-Date: 2013-12-28 07:30+0000\n" "Last-Translator: crazybirdy <>\n" "Language-Team: zh_CN \n" "Language: zh_CN\n" @@ -17,7 +17,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.5.0-rc1\n" -"X-POOTLE-MTIME: 1386659875.0\n" +"X-POOTLE-MTIME: 1388215804.0\n" #. type: Content of:

#: Resources/templates/Welcome.html:22 @@ -687,16 +687,15 @@ #. type: "ForceFullMemInfo_title" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "ForceWake=Yes" +#, no-wrap msgid "ForceFullMemInfo=Yes" -msgstr "ForceWake=Yes" +msgstr "ForceFullMemInfo=Yes" #. type: "ForceFullMemInfo_description" #: Resources/templates/Localizable.strings:145 #, no-wrap msgid "Force SMBIOS Table 17 to be 27 bytes long." -msgstr "" +msgstr "(默认是 No) 强制 SMBIOS 表格 17 的长度改为 27 bytes。" #. type: "RestartFix_title" #: Resources/templates/Localizable.strings:147 @@ -1884,7 +1883,7 @@ #: Resources/templates/Localizable.strings:484 #, no-wrap msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 00000604。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 00000604。" #. type: "IntelAzulx01_title" #: Resources/templates/Localizable.strings:486 @@ -1896,7 +1895,7 @@ #: Resources/templates/Localizable.strings:487 #, no-wrap msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0000060c。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0000060c。" #. type: "IntelAzulx02_title" #: Resources/templates/Localizable.strings:489 @@ -1908,7 +1907,7 @@ #: Resources/templates/Localizable.strings:490 #, no-wrap msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 00001604。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 00001604。" #. type: "IntelAzulx03_title" #: Resources/templates/Localizable.strings:492 @@ -1920,7 +1919,7 @@ #: Resources/templates/Localizable.strings:493 #, no-wrap msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0000160a。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0000160a。" #. type: "IntelAzulx04_title" #: Resources/templates/Localizable.strings:495 @@ -1932,7 +1931,7 @@ #: Resources/templates/Localizable.strings:496 #, no-wrap msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0000160c。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0000160c。" #. type: "IntelAzulx05_title" #: Resources/templates/Localizable.strings:498 @@ -1944,7 +1943,7 @@ #: Resources/templates/Localizable.strings:499 #, no-wrap msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 00002604。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 00002604。" #. type: "IntelAzulx06_title" #: Resources/templates/Localizable.strings:501 @@ -1956,7 +1955,7 @@ #: Resources/templates/Localizable.strings:502 #, no-wrap msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0000260a。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0000260a。" #. type: "IntelAzulx07_title" #: Resources/templates/Localizable.strings:504 @@ -1968,7 +1967,7 @@ #: Resources/templates/Localizable.strings:505 #, no-wrap msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0600260c。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0600260c。" #. type: "IntelAzulx08_title" #: Resources/templates/Localizable.strings:507 @@ -1980,7 +1979,7 @@ #: Resources/templates/Localizable.strings:508 #, no-wrap msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0000260d。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0000260d。" #. type: "IntelAzulx09_title" #: Resources/templates/Localizable.strings:510 @@ -1992,7 +1991,7 @@ #: Resources/templates/Localizable.strings:511 #, no-wrap msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 02001604。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 02001604。" #. type: "IntelAzulx10_title" #: Resources/templates/Localizable.strings:513 @@ -2004,7 +2003,7 @@ #: Resources/templates/Localizable.strings:514 #, no-wrap msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Desktop) 显卡的 AAPL,ig-platform-id 为 0300220d。" +msgstr "设置 Intel Haswell (Desktop) 显卡的 AAPL,ig-platform-id 为 0300220d。" #. type: "IntelAzulx11_title" #: Resources/templates/Localizable.strings:516 @@ -2016,7 +2015,7 @@ #: Resources/templates/Localizable.strings:517 #, no-wrap msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0500260a。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0500260a。" #. type: "IntelAzulx12_title" #: Resources/templates/Localizable.strings:519 @@ -2028,7 +2027,7 @@ #: Resources/templates/Localizable.strings:520 #, no-wrap msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0600260a。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0600260a。" #. type: "IntelAzulx13_title" #: Resources/templates/Localizable.strings:522 @@ -2040,7 +2039,7 @@ #: Resources/templates/Localizable.strings:523 #, no-wrap msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0700260d。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0700260d。" #. type: "IntelAzulx14_title" #: Resources/templates/Localizable.strings:525 @@ -2052,7 +2051,7 @@ #: Resources/templates/Localizable.strings:526 #, no-wrap msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 0800260a。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 0800260a。" #. type: "IntelAzulx15_title" #: Resources/templates/Localizable.strings:528 @@ -2064,7 +2063,7 @@ #: Resources/templates/Localizable.strings:529 #, no-wrap msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id." -msgstr "设置 Intel HD5000 (Mobile) 显卡的 AAPL,ig-platform-id 为 08002e0a。" +msgstr "设置 Intel Haswell (Mobile) 显卡的 AAPL,ig-platform-id 为 08002e0a。" #. type: "AD2000B_PinConf_title" #: Resources/templates/Localizable.strings:533 Property changes on: branches/chucko ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r2287-2315