Chameleon

Chameleon Commit Details

Date:2013-09-01 01:02:58 (10 years 6 months ago)
Author:ErmaC
Commit:2259
Parents: 2258
Message:- nVidia add new model. - Add (nvidia) EnableBacklight option thx Marchrius. - Add (nvidia) EnableDualLink option thx ErmaC. - Correct probably compiling error msdos.c (xcode5) thx Slice. - General cleanup. - Update boot help menu. - Update Installer pkg choice (EnableBacklight & EnableDualLink). - Update language resources.
Changes:
M/trunk/package/po/fr.po
M/trunk/package/po/nl.po
M/trunk/package/po/hr.po
M/trunk/i386/libsaio/gma.c
M/trunk/package/po/pl.po
M/trunk/package/po/it.po
M/trunk/i386/libsaio/nvidia.c
M/trunk/i386/boot2/boot.h
M/trunk/package/po/ca.po
M/trunk/package/po/pt.po
M/trunk/package/po/pt-BR.po
M/trunk/package/po/sr.po
M/trunk/package/po/fa.po
M/trunk/package/Resources/templates/Localizable.strings
M/trunk/package/po/de.po
M/trunk/package/po/bg.po
M/trunk/package/po/ja.po
M/trunk/i386/libsaio/msdos.c
M/trunk/package/po/he.po
M/trunk/package/OptionalSettings/Video.txt
M/trunk/i386/libsaio/device_inject.c
M/trunk/package/po/bs.po
M/trunk/package/po/cs.po
M/trunk/i386/libsaio/device_inject.h
M/trunk/package/po/es.po
M/trunk/package/po/mk.po
M/trunk/package/po/ko.po
M/trunk/package/po/hu.po
M/trunk/package/po/chameleon.pot
M/trunk/Make.rules
M/trunk/package/po/ro.po
M/trunk/i386/libsaio/ati.c
M/trunk/package/po/ru.po
M/trunk/i386/boot2/drivers.c
M/trunk/package/po/zh_TW.po
M/trunk/package/po/id.po
M/trunk/package/po/el.po
M/trunk/package/po/zh_CN.po
M/trunk/package/po/ar.po
M/trunk/package/po/en.po
M/trunk/package/bin/po4a/lib/Locale/Po4a/Xml.pm
M/trunk/package/OptionalSettings/General.txt

File differences

trunk/i386/libsaio/gma.c
155155
156156
157157
158
158
159159
160
161
160
161
162162
163
163
164164
165
165
166166
167
167
168168
169169
170
170
171171
172172
173
173
174174
175175
176
176
177177
178
178179
179
180
181
180182
181183
182
184
183185
184186
185187
186188
187189
188190
189
191
190192
191193
192
194
193195
194196
195197
......
333335
334336
335337
336
338
337339
338340
339
341
340342
341343
bool setup_gma_devprop(pci_dt_t *gma_dev)
{
char*devicepath;
char*devicepath = NULL;
volatile uint8_t*regs;
uint32_tbar[7];
char*model;
uint32_tbar[7];
char*model = NULL;
uint8_t BuiltIn =0x00;
uint8_t ClassFix[4] ={ 0x00, 0x00, 0x03, 0x00 };
uint8_t ClassFix[4] = { 0x00, 0x00, 0x03, 0x00 };
unsigned intdevice_id;
devicepath = get_pci_dev_path(gma_dev);
bar[0] = pci_config_read32(gma_dev->dev.addr, 0x10);
regs = (uint8_t *) (bar[0] & ~0x0f);
model = get_gma_model((gma_dev->vendor_id << 16) | gma_dev->device_id);
device_id = gma_dev->device_id;
verbose("Intel %s [%04x:%04x] :: %s\n",
model, gma_dev->vendor_id, gma_dev->device_id, devicepath);
if (!string)
{
string = devprop_create_string();
}
struct DevPropDevice *device = malloc(sizeof(struct DevPropDevice));
device = devprop_add_device(string, devicepath);
if (!device)
{
printf("Failed initializing dev-prop string dev-entry.\n");
pause();
return false;
}
devprop_add_value(device, "model", (uint8_t*)model, (strlen(model) + 1));
devprop_add_value(device, "device_type", (uint8_t*)"display", 8);
if ((model == (char *)&"Mobile GMA950")
|| (model == (char *)&"Mobile GMA3150"))
{
pause();
return false;
}
memcpy(stringdata, (uint8_t*)devprop_generate_string(string), string->length);
stringlength = string->length;
return true;
}
trunk/i386/libsaio/device_inject.c
113113
114114
115115
116
116
117117
118118
119119
120120
121121
122122
123
123
124124
125125
126126
......
135135
136136
137137
138
138
139139
140140
141141
......
253253
254254
255255
256
256
257257
258258
259259
......
297297
298298
299299
300
300
301301
302302
303303
......
312312
313313
314314
315
315
316316
317317
318318
319319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
320358
321359
322360
sprintf(buff, "%c%c", path[curr], path[curr+1]);
else if(x-curr == 1)
sprintf(buff, "%c", path[curr]);
else
else
{
printf("ERROR parsing device path\n");
numpaths = 0;
break;
}
device->pci_dev_path[numpaths].device =ascii_hex_to_int(buff);
x += 3; // 0x
curr = x;
while(path[++x] != ')');
break;
}
device->pci_dev_path[numpaths].function = ascii_hex_to_int(buff); // TODO: find dev from char *path
numpaths++;
}
}
dp_swap16(string->numentries), string->WHAT3);
buffer += 24;
int i = 0, x = 0;
while(i < string->numentries)
{
sprintf(buffer, "%08x%04x%04x", dp_swap32(string->entries[i]->length),
{
if(!string)
return;
int i;
for(i = 0; i < string->numentries; i++)
{
string->entries[i] = NULL;
}
}
free(string);
string = NULL;
}
/* ======================================================= */
/*******************************************************************
* Decodes a sequence of 'len' hexadecimal chars from 'hex' into *
* a binary. returns -1 in case of error (i.e. badly formed chars) *
*******************************************************************/
int hex2bin(const char *hex, uint8_t *bin, int len)
{
char*p;
inti;
charbuf[3];
if (hex == NULL || bin == NULL || len <= 0 || strlen(hex) != len * 2)
{
printf("[ERROR] bin2hex input error\n");
return -1;
}
buf[2] = '\0';
p = (char *) hex;
for (i = 0; i < len; i++)
{
if (p[0] == '\0' || p[1] == '\0' || !isxdigit(p[0]) || !isxdigit(p[1]))
{
printf("[ERROR] bin2hex '%s' syntax error\n", hex);
return -2;
}
buf[0] = *p++;
buf[1] = *p++;
bin[i] = (unsigned char) strtoul(buf, NULL, 16);
}
return 0;
}
/* ======================================================= */
/* a fine place for this code */
int devprop_add_network_template(struct DevPropDevice *device, uint16_t vendor_id)
trunk/i386/libsaio/device_inject.h
1414
1515
1616
17
18
19
20
2117
2218
2319
......
4541
4642
4743
48
44
4945
5046
5147
......
6561
6662
6763
68
69
64
65
66
7067
7168
69
7270
7371
7472
7573
74
75
7676
#define DEV_PROP_DEVICE_MAX_ENTRIES 64
extern struct DevPropString *string;
extern uint8_t *stringdata;
extern uint32_t stringlength;
extern void setupDeviceProperties(Node *node);
struct ACPIDevPath {
struct DevPropDevice {
uint32_t length;
uint16_t numentries;
uint16_t WHAT2;// 0x0000 ?
uint16_t WHAT2;// 0x0000 ?
struct ACPIDevPath acpi_dev_path;// = 0x02010c00 0xd041030a
struct PCIDevPath pci_dev_path[MAX_PCI_DEV_PATHS]; // = 0x01010600 func dev
struct DevicePathEnd path_end;// = 0x7fff0400
struct DevPropDevice **entries;
};
char*efi_inject_get_devprop_string(uint32_t *len);
intdevprop_add_network_template(struct DevPropDevice *device, uint16_t vendor_id);
extern struct DevPropString *string;
extern uint8_t *stringdata;
extern uint32_t stringlength;
struct DevPropString*devprop_create_string(void);
struct DevPropDevice*devprop_add_device(struct DevPropString *string, char *path);
char*efi_inject_get_devprop_string(uint32_t *len);
intdevprop_add_value(struct DevPropDevice *device, char *nm, uint8_t *vl, uint32_t len);
char*devprop_generate_string(struct DevPropString *string);
voiddevprop_free_string(struct DevPropString *string);
intdevprop_add_network_template(struct DevPropDevice *device, uint16_t vendor_id);
inthex2bin(const char *hex, uint8_t *bin, int len);
#endif /* !__LIBSAIO_DEVICE_INJECT_H */
trunk/i386/libsaio/nvidia.c
11611161
11621162
11631163
1164
11641165
11651166
11661167
......
11991200
12001201
12011202
1203
12021204
12031205
1206
1207
1208
12041209
12051210
12061211
......
14721477
14731478
14741479
1480
14751481
1482
14761483
14771484
14781485
......
14901497
14911498
14921499
1500
14931501
1502
14941503
1504
14951505
1506
14961507
1508
14971509
1510
14981511
14991512
15001513
......
15221535
15231536
15241537
1538
15251539
1540
15261541
15271542
15281543
......
15371552
15381553
15391554
1555
15401556
1557
15411558
15421559
15431560
......
16971714
16981715
16991716
1700
1701
1702
1703
1704
1717
1718
1719
1720
1721
1722
17051723
17061724
17071725
......
17461764
17471765
17481766
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
17761767
17771768
17781769
......
18201811
18211812
18221813
1814
1815
1816
1817
1818
1819
1820
18231821
18241822
18251823
......
21192117
21202118
21212119
2122
2120
2121
2122
2123
21232124
2124
2125
2126
2127
2128
2129
21252130
2131
21262132
2127
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
21282144
21292145
21302146
......
21322148
21332149
21342150
2135
2151
21362152
2153
2154
2155
2156
2157
21372158
21382159
21392160
{ 0x10DE11E3,"GeForce GTX 760M" },
// 11F0 - 11FF
{ 0x10DE11FA,"Quadro K4000" },
{ 0x10DE11FC,"Quadro 2100M" },
// 1200 - 120F
{ 0x10DE1200,"GeForce GTX 560 Ti" },
{ 0x10DE1201,"GeForce GTX 560" },
{ 0x10DE1292,"GeForce GT 740M" },
{ 0x10DE1293,"GeForce GT 730M" },
{ 0x10DE1294,"GeForce GT 740M" },
{ 0x10DE1295,"GeForce GT 710M" },
// 12A0 - 12AF
//{ 0x10DE12A0,"GeForce GT ???" },
{ 0x10DE12AF,"GK208-INT" },
{ 0x10DE12B0,"GK208-CS-Q" },
{ 0x10DE12BA,"Quadro K510M" }
// 12B0 - 12BF
// 12C0 - 12CF
// 12D0 - 12DF
}
if (numentries >= MAX_NUM_DCB_ENTRIES)
{
numentries = MAX_NUM_DCB_ENTRIES;
}
uint8_t num_outputs = 0, i = 0;
/* Should we allow discontinuous DCBs? Certainly DCB I2C tables can be discontinuous */
if ((connection & 0x0000000f) == 0x0000000f) /* end of records */
{
continue;
}
if (connection == 0x00000000) /* seen on an NV11 with DCB v1.5 */
{
continue;
}
if ((connection & 0xf) == 0x6) /* we skip type 6 as it doesnt appear on macbook nvcaps */
{
continue;
}
entries[num_outputs].type = connection & 0xf;
entries[num_outputs].index = num_outputs;
for (i = 0; i < num_outputs; i++)
{
if (entries[i].type == TYPE_GROUPED)
{
continue;
}
channel2 |= ( 0x1 << entries[i].index);
entries[i].type = TYPE_GROUPED;
for (i=0; i<num_outputs; i++)
{
if (entries[i].type == TYPE_GROUPED)
{
continue;
}
// if type is TMDS, the prior output is ANALOG
// we always group ANALOG and TMDS
// if there is a TV output after TMDS, we group it to that channel as well
}
size = file_size(fd);
if(size)
{
*buf = malloc(size);
size = read(fd, (char *)buf, size);
}
if (size)
{
*buf = malloc(size);
size = read(fd, (char *)buf, size);
}
close(fd);
return size > 0 ? size : 0;
return 1;
}
int hex2bin(const char *hex, uint8_t *bin, int len)
{
char*p;
inti;
charbuf[3];
if (hex == NULL || bin == NULL || len <= 0 || strlen(hex) != len * 2) {
printf("[ERROR] bin2hex input error\n");
return -1;
}
buf[2] = '\0';
p = (char *) hex;
for (i = 0; i < len; i++)
{
if (p[0] == '\0' || p[1] == '\0' || !isxdigit(p[0]) || !isxdigit(p[1])) {
printf("[ERROR] bin2hex '%s' syntax error\n", hex);
return -2;
}
buf[0] = *p++;
buf[1] = *p++;
bin[i] = (unsigned char) strtoul(buf, NULL, 16);
}
return 0;
}
unsigned long long mem_detect(volatile uint8_t *regs, uint8_t nvCardType, pci_dt_t *nvda_dev, uint32_t device_id, uint32_t subsys_id)
{
unsigned long long vram_size = 0;
case 0x0DF5: // GT 525M 0DF5
vram_size = 1024*1024*1024;
break;
case 0x0F00:// GT 630
// 10DE0F0014583544 2GB VRAM
//if (((nvda_dev->subsys_id.subsys.vendor_id << 16) | nvda_dev->subsys_id.subsys.device_id) == 0x14583544 )
//{
vram_size = -2147483648UL;//2147483648;
//}
break;
case 0x11C6:// GTX650TI 11C6
// 10DE11C61043842A 1GB VRAM
if (((nvda_dev->subsys_id.subsys.vendor_id << 16) | nvda_dev->subsys_id.subsys.device_id) == 0x1043842A )
devprop_add_value(device, "@0,display-cfg", default_dcfg_0, DCFG0_LEN);
devprop_add_value(device, "@1,display-cfg", default_dcfg_1, DCFG1_LEN);
if (getBoolForKey(kVBIOS, &doit, &bootInfo->chameleonConfig) && doit)
/******************** Added Marchrius.**********************/
// For the AppleBacklightDisplay //
/***********************************************************/
if (getBoolForKey(kEnableBacklight, &doit, &bootInfo->chameleonConfig) && doit)
{
devprop_add_value(device, "vbios", rom, (nvBiosOveride > 0) ? nvBiosOveride : (rom[2] * 512));
uint8_t AAPL_value[] = {0x01, 0x00, 0x00, 0x00}; //Is the same for all
devprop_add_value(device, "AAPL,HasPanel", AAPL_value, 4);
devprop_add_value(device, "AAPL,Haslid", AAPL_value, 4);
devprop_add_value(device, "AAPL,backlight-control", AAPL_value, 4);
devprop_add_value(device, "@0,backlight-control", AAPL_value, 4);
}
/************************** End ****************************/
//add HDMI Audio back to nvidia
/***********************************************************/
// For the DualLink //
/***********************************************************/
if (getBoolForKey(kEnableDualLink, &doit, &bootInfo->chameleonConfig) && doit)
{
uint8_t AAPL00_value[] = {0x01, 0x00, 0x00, 0x00};
devprop_add_value(device, "AAPL00,DualLink", AAPL00_value, 4);
}
/************************** End ****************************/
/************************ HDMI Audio ***********************/
doit = false;
//http://forge.voodooprojects.org/p/chameleon/issues/67/
if(getBoolForKey(kEnableHDMIAudio, &doit, &bootInfo->chameleonConfig) && doit)
static uint8_t connector_type_1[]= {0x00, 0x08, 0x00, 0x00};
devprop_add_value(device, "@1,connector-type",connector_type_1, 4);
}
//end Nvidia HDMI Audio
/************************ End Audio *************************/
if (getBoolForKey(kVBIOS, &doit, &bootInfo->chameleonConfig) && doit)
{
devprop_add_value(device, "vbios", rom, (nvBiosOveride > 0) ? nvBiosOveride : (rom[2] * 512));
}
stringdata = malloc(sizeof(uint8_t) * string->length);
memcpy(stringdata, (uint8_t*)devprop_generate_string(string), string->length);
stringlength = string->length;
trunk/i386/libsaio/ati.c
13301330
13311331
13321332
1333
1333
13341334
13351335
13361336
1337
1337
13381338
13391339
13401340
13411341
13421342
1343
1343
13441344
13451345
13461346
......
13481348
13491349
13501350
1351
1351
13521352
13531353
13541354
......
13661366
13671367
13681368
1369
1369
13701370
13711371
13721372
......
13821382
13831383
13841384
1385
1385
13861386
13871387
13881388
......
13951395
13961396
13971397
1398
1398
13991399
14001400
14011401
1402
1402
14031403
14041404
14051405
......
14121412
14131413
14141414
1415
1415
14161416
14171417
14181418
......
14841484
14851485
14861486
1487
1487
14881488
1489
1489
14901490
1491
1491
14921492
1493
1493
14941494
1495
1496
1497
1495
1496
1497
14981498
1499
1500
1501
1502
1499
1500
1501
1502
15031503
1504
1505
1504
1505
15061506
1507
1508
1509
1507
1508
1509
15101510
1511
1511
15121512
1513
1514
1515
1513
1514
1515
15161516
1517
1518
1519
1520
1517
1518
1519
1520
15211521
1522
1523
1524
1525
1526
1527
1528
1522
1523
1524
1525
1526
1527
1528
15291529
15301530
15311531
......
15521552
15531553
15541554
1555
1556
1557
1558
1555
1556
1557
1558
15591559
15601560
15611561
{ 0x9555,0x00000000, CHIP_FAMILY_RV710,"ATI Radeon HD4300/HD4500 series",kShrike},
{ 0x9557,0x00000000, CHIP_FAMILY_RV710,"ATI FirePro RG220", kFlicker},
{ 0x9557,0x00000000, CHIP_FAMILY_RV710,"ATI FirePro RG220",kFlicker},
{ 0x955F,0x00000000, CHIP_FAMILY_RV710,"ATI Radeon HD 4330M series", kFlicker},
{ 0x9580,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD Series",kHypoprion},
{ 0x9580,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD Series",kHypoprion},
{ 0x9581,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 XT",kHypoprion},
{ 0x9583,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 XT",kHypoprion},
{ 0x9586,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 XT Series",kHypoprion},
{ 0x9587,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 Pro Series",kHypoprion},
{ 0x9587,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 Pro Series",kHypoprion},
{ 0x9588,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 XT",kHypoprion},
{ 0x9589,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 PRO",kHypoprion},
{ 0x958A,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 X2 Series",kLamna},
{ 0x958C,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 X2 Series",kLamna},
{ 0x958D,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 X2 Series",kLamna},
{ 0x958E,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD 2600 X2 Series",kLamna},
{ 0x958F,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD Series",kHypoprion},
{ 0x958F,0x00000000, CHIP_FAMILY_RV630,"ATI Radeon HD Series",kHypoprion},
{ 0x9591,0x00000000, CHIP_FAMILY_RV635,"ATI Radeon HD 3600 Series",kMegalodon},
{ 0x9614,0x00000000, CHIP_FAMILY_RS780,"ATI Radeon HD 3300 Graphics",kNull},
{ 0x9616,0x00000000, CHIP_FAMILY_RS780,"AMD 760G", kNull},
{ 0x9616,0x00000000, CHIP_FAMILY_RS780,"AMD 760G", kNull},
{ 0x9710,0x00000000, CHIP_FAMILY_RS880,"ATI Radeon HD 4200 Series",kNull},
{ 0x9806,0x00000000, CHIP_FAMILY_RS880,"ATI Radeon HD 6320 Series",kNull},
/* Evergreen */
{ 0x688D,0x00000000, CHIP_FAMILY_CYPRESS,"AMD FireStream 9350",kZonalis},
{ 0x688D,0x00000000, CHIP_FAMILY_CYPRESS,"AMD FireStream 9350",kZonalis},
{ 0x6898,0x00000000, CHIP_FAMILY_CYPRESS,"ATI Radeon HD 5870 Series",kUakari},
{ 0x6899,0x00000000, CHIP_FAMILY_CYPRESS,"ATI Radeon HD 5850 Series",kUakari},
{ 0x68A0,0x00000000, CHIP_FAMILY_JUNIPER,"ATI Radeon HD 5770 Series",kHoolock}, // CHIP_FAMILY_BROADWAY ??
{ 0x68A1,0x00000000, CHIP_FAMILY_JUNIPER,"ATI Radeon HD 5850 Series",kHoolock}, // CHIP_FAMILY_BROADWAY ??
{ 0x68A8,0x00000000, CHIP_FAMILY_JUNIPER,"ATI Radeon HD 6850M",kHoolock},
{ 0x68A8,0x00000000, CHIP_FAMILY_JUNIPER,"ATI Radeon HD 6850M",kHoolock},
{ 0x68A9,0x00000000, CHIP_FAMILY_JUNIPER,"ATI FirePro V5800 (FireGL)",kHoolock},
{ 0x68B0,0x00000000, CHIP_FAMILY_CYPRESS,"ATI Mobility Radeon HD 5800 Series", kHoolock}, // CHIP_FAMILY_BROADWAY ??
{ 0x68B0,0x00000000, CHIP_FAMILY_CYPRESS,"ATI Mobility Radeon HD 5800 Series",kHoolock}, // CHIP_FAMILY_BROADWAY ??
{ 0x68B1,0x00000000, CHIP_FAMILY_JUNIPER,"ATI Radeon HD 5770 Series",kHoolock},
{ 0x68B8,0x00000000, CHIP_FAMILY_JUNIPER,"ATI Radeon HD 5770 Series",kHoolock},
{ 0x68C0,0x00000000, CHIP_FAMILY_REDWOOD,"AMD Radeon HD 6570M/5700 Series",kBaboon},
{ 0x68C1,0x00000000, CHIP_FAMILY_REDWOOD,"AMD Radeon HD 6500M/5600/5700 Series",kBaboon},
{ 0x68C8,0x00000000, CHIP_FAMILY_REDWOOD,"ATI Radeon HD 5650 Series",kBaboon},
{ 0x68C9,0x00000000, CHIP_FAMILY_REDWOOD,"FirePro 3D V3800",kBaboon},
{ 0x68C9,0x00000000, CHIP_FAMILY_REDWOOD,"FirePro 3D V3800",kBaboon},
{ 0x68D8,0x00000000, CHIP_FAMILY_REDWOOD,"ATI Radeon HD 5670 Series",kBaboon},
{ 0x68D9,0x00000000, CHIP_FAMILY_REDWOOD,"ATI Radeon HD 5500/5600 Series",kBaboon},
/* Southen Islands */
{ 0x6780,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series", kFutomaki}, // ATI7000Controller.kext
{ 0x6780,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series",kFutomaki}, // ATI7000Controller.kext
//{ 0x6784,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD ??? Series", kFutomaki},
//{ 0x6784,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD ??? Series",kFutomaki},
//{ 0x6788,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD ??? Series", kFutomaki},
//{ 0x6788,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD ??? Series",kFutomaki},
{ 0x678A,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series", kFutomaki},
{ 0x678A,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series",kFutomaki},
{ 0x6790,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series", kFutomaki}, // ATI7000Controller.kext
{ 0x6791,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series", kFutomaki},
{ 0x6792,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series", kFutomaki},
{ 0x6790,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series",kFutomaki}, // ATI7000Controller.kext
{ 0x6791,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series",kFutomaki},
{ 0x6792,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series",kFutomaki},
{ 0x6798,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7970 X-Edition", kFutomaki}, // ATI7000Controller.kext
{ 0x6799,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7990 Series", kAji},
{ 0x679A,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7950 Series", kFutomaki}, // ATI7000Controller.kext
{ 0x679B,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series", kFutomaki},
{ 0x6798,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7970 X-Edition",kFutomaki}, // ATI7000Controller.kext
{ 0x6799,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7990 Series",kAji},
{ 0x679A,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7950 Series",kFutomaki}, // ATI7000Controller.kext
{ 0x679B,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7900 Series",kFutomaki},
{ 0x679E,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7870 XT", kFutomaki}, // ATI7000Controller.kext
{ 0x679F,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7950 Series", kFutomaki},
{ 0x679E,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7870 XT",kFutomaki}, // ATI7000Controller.kext
{ 0x679F,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7950 Series",kFutomaki},
{ 0x6800,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7970M", kBuri}, // ATI7000Controller.kext
//{ 0x6801,0x00000000, CHIP_FAMILY_PITCAIRN,"AMD Radeon HD 8970M Series", kFutomaki},
//{ 0x6802,0x00000000, CHIP_FAMILY_PITCAIRN,"AMD Radeon HD ???M Series", kFutomaki},
{ 0x6800,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7970M",kBuri}, // ATI7000Controller.kext
//{ 0x6801,0x00000000, CHIP_FAMILY_PITCAIRN,"AMD Radeon HD 8970M Series",kFutomaki},
//{ 0x6802,0x00000000, CHIP_FAMILY_PITCAIRN,"AMD Radeon HD ???M Series",kFutomaki},
{ 0x6806,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7600 Series", kFutomaki}, // ATI7000Controller.kext
{ 0x6806,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7600 Series",kFutomaki}, // ATI7000Controller.kext
{ 0x6808,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7600 Series", kFutomaki}, // ATI7000Controller.kext
//{ 0x6809,0x00000000, CHIP_FAMILY_PITCAIRN,"AMD Radeon HD ??? Series", kNull},
//{ 0x6810,0x00000000, CHIP_FAMILY_PITCAIRN,"AMD Radeon HD ??? Series", kNull},
{ 0x6808,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7600 Series",kFutomaki}, // ATI7000Controller.kext
//{ 0x6809,0x00000000, CHIP_FAMILY_PITCAIRN,"AMD Radeon HD ??? Series",kNull},
//{ 0x6810,0x00000000, CHIP_FAMILY_PITCAIRN,"AMD Radeon HD ??? Series",kNull},
{ 0x6818,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7870 Series", kFutomaki}, // CHIP_FAMILY_PITCAIRN ??// ATI7000Controller.kext
{ 0x6819,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7850 Series", kFutomaki},// CHIP_FAMILY_PITCAIRN ??
{ 0x6820,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7700 Series", kBuri}, // ATI7000Controller.kext
{ 0x6821,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7700 Series", kBuri}, // ATI7000Controller.kext
{ 0x6818,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7870 Series",kFutomaki}, // CHIP_FAMILY_PITCAIRN ??// ATI7000Controller.kext
{ 0x6819,0x00000000, CHIP_FAMILY_TAHITI,"AMD Radeon HD 7850 Series",kFutomaki},// CHIP_FAMILY_PITCAIRN ??
{ 0x6820,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7700 Series",kBuri}, // ATI7000Controller.kext
{ 0x6821,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7700 Series",kBuri}, // ATI7000Controller.kext
//{ 0x6823,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 8800M Series", kBuri},
//{ 0x6824,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7700M Series", kBuri},
{ 0x6825,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7870 Series", kBuri}, // ATI7000Controller.kext
{ 0x6826,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7700 Series", kBuri},
{ 0x6827,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7850M/8850M Series", kBuri}, // ATI7000Controller.kext
//{ 0x6828,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD ??? Series", kBuri},
//{ 0x6829,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD ??? Series", kBuri},
//{ 0x6823,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 8800M Series",kBuri},
//{ 0x6824,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7700M Series",kBuri},
{ 0x6825,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7870 Series",kBuri}, // ATI7000Controller.kext
{ 0x6826,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7700 Series",kBuri},
{ 0x6827,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 7850M/8850M Series",kBuri}, // ATI7000Controller.kext
//{ 0x6828,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD ??? Series",kBuri},
//{ 0x6829,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD ??? Series",kBuri},
{ 0x682B,0x00000000, CHIP_FAMILY_VERDE,"AMD Radeon HD 8800M Series", kBuri},
{ 0x6843,0x00000000, CHIP_FAMILY_THAMES,"AMD Radeon HD 7670M Series",kPondweed},
{ 0x6849,0x00000000, CHIP_FAMILY_LOMBOK,"AMD Radeon HD 7600M Series",kPondweed },
//{ 0x684C,0x00000000, CHIP_FAMILY_PITCAIRN,"AMD Radeon HD ??? Series", kNull},
{ 0x6850,0x00000000, CHIP_FAMILY_LOMBOK,"AMD Radeon HD 7600M Series", kPondweed },
{ 0x6858,0x00000000, CHIP_FAMILY_LOMBOK,"AMD Radeon HD 7400 Series", kPondweed },
{ 0x6859,0x00000000, CHIP_FAMILY_LOMBOK,"AMD Radeon HD 7600M Series", kPondweed },
//{ 0x684C,0x00000000, CHIP_FAMILY_PITCAIRN,"AMD Radeon HD ??? Series",kNull},
{ 0x6850,0x00000000, CHIP_FAMILY_LOMBOK,"AMD Radeon HD 7600M Series",kPondweed },
{ 0x6858,0x00000000, CHIP_FAMILY_LOMBOK,"AMD Radeon HD 7400 Series",kPondweed },
{ 0x6859,0x00000000, CHIP_FAMILY_LOMBOK,"AMD Radeon HD 7600M Series",kPondweed },
{ 0x0000,0x00000000, CHIP_FAMILY_UNKNOW,NULL,kNull}
};
trunk/i386/libsaio/msdos.c
721721
722722
723723
724
724
725725
726726
727727
......
777777
778778
779779
780
780
781781
782782
783783
......
840840
841841
842842
843
843
844844
845845
846846
*flags = kFileTypeFlat;
// Calculate a fake timestamp using modification date and time values.
*time = (dirp->deMDate & 0x7FFF) << 16 + dirp->deMTime;
*time = ((dirp->deMDate & 0x7FFF) << 16) + dirp->deMTime;
if (infoValid)
*infoValid = 1;
toread-=msdosclustersize;
}
getDeviceDescription(ih, devStr);
getDeviceDescription(ih, devStr);
verbose("Read FAT%d file: [%s/%s] %d bytes.\n",
msdosfatbits, devStr, filePath, (uint32_t)( toread<0 ) ? wastoread : wastoread-toread);
free (buf);
long MSDOSLoadFile(CICell ih, char * filePath)
{
return MSDOSReadFile(ih, filePath, (void *)gFSLoadAddress, 0, 0);
return MSDOSReadFile(ih, filePath, (void *)gFSLoadAddress, 0, 0);
}
/* Fix up volume label. */
trunk/i386/boot2/drivers.c
203203
204204
205205
206
206
207207
208208
209209
......
749749
750750
751751
752
752
753753
754754
755755
// Next try a specfic OS version folder ie 10.5
sprintf(dirSpecExtra, "bt(0,0)/Extra/%s/", &gMacOSVersion);
if (FileLoadDrivers(dirSpecExtra, 0) != 0)
{
{
// Next we'll try the base
strcpy(dirSpecExtra, "bt(0,0)/Extra/");
FileLoadDrivers(dirSpecExtra, 0);
required = XMLGetProperty(moduleDict, kPropOSBundleRequired);
//if ( (required != NULL) && (required->type == kTagTypeString) && !strcmp(required->string, "Safe Boot"))
if ( (required == 0) || (required->type != kTagTypeString) || !strcmp(required->string, "Safe Boot"))
if ( (required != NULL) && ((required->type != kTagTypeString) || (!strcmp(required->string, "Safe Boot"))) )
{
XMLFreeTag(moduleDict);
return -2;
trunk/i386/boot2/boot.h
129129
130130
131131
132
133
134
132135
133136
134137
......
144147
145148
146149
147
148
150
151
152
149153
150154
151155
#define kDcfg0"display_0"/* nvidia.c */
#define kDcfg1"display_1"/* nvidia.c */
/* Marchrius: added these keys */
#define kEnableBacklight"EnableBacklight"/* nvidia.c */
/* Kabyl: added these keys */
#define kAtiConfig"AtiConfig"/* ati.c */
#define kAtiPorts"AtiPorts"/* ati.c */
#define kSkipIntelGfx"SkipIntelGfx"/* pci_setup.c */
#define kSkipNvidiaGfx"SkipNvidiaGfx"/* pci_setup.c */
#define kSkipAtiGfx"SkipAtiGfx"/* pci_setup.c */
#define kHD4Kig"HD4K-ig"/* gma.c */
#define kHD5Kig"HD5K-ig"/* gma.c */
#define kIntelCapriFB"IntelCapriFB"/* gma.c was HD4K-ig */
#define kIntelAzulFB"IntelAzulFB"/* gma.c was HD5K-ig */
#define kAAPLCustomIG"InjectIntel-ig"/* gma.c */
/*
* Flags to the booter or kernel
trunk/package/OptionalSettings/Video.txt
3232
3333
3434
35
36
Bool@SkipIntelGfx:SkipIntelGfx=Yes
Bool@SkipNvidiaGfx:SkipNvidiaGfx=Yes
Bool@SkipAtiGfx:SkipAtiGfx=Yes
Bool@EnableBacklight:EnableBacklight=Yes
Bool@EnableDualLink:EnableDualLink=Yes
trunk/package/OptionalSettings/General.txt
2828
2929
3030
31
3132
3233
3334
Text@arch:arch=i386
Bool@EHCIacquire:EHCIacquire=Yes
Bool@EthernetBuiltIn:EthernetBuiltIn=Yes
#Bool@EnableWifi:EnableWifi=Yes
Bool@ForceHPET:ForceHPET=Yes
Bool@ForceWake:ForceWake=Yes
Bool@RestartFix:RestartFix=No
trunk/package/bin/po4a/lib/Locale/Po4a/Xml.pm
339339
340340
341341
342
342
343343
344344
345345
......
428428
429429
430430
431
431
432432
433
433
434434
435435
436436
form E<lt>aaaE<gt>, but you can join some (E<lt>bbbE<gt>E<lt>aaaE<gt>) to say that the content of
the tag E<lt>aaaE<gt> will only be translated when it's into a E<lt>bbbE<gt> tag.
You can also specify some tag options putting some characters in front of
You can also specify some tag options by putting some characters in front of
the tag hierarchy. For example, you can put 'w' (wrap) or 'W' (don't wrap)
to override the default behavior specified by the global "wrap" option.
(<bbb><aaa>), if a tag (<aaa>) should only be considered
when it's into another tag (<bbb>).
You can also specify some tag options putting some characters in front of
You can also specify some tag options by putting some characters in front of
the tag hierarchy. For example, you can put 'w' (wrap) or 'W' (don't wrap)
to overide the default behavior specified by the global "wrap" option.
to override the default behavior specified by the global "wrap" option.
Example: WE<lt>chapterE<gt>E<lt>titleE<gt>
trunk/package/Resources/templates/Localizable.strings
439439
440440
441441
442
443
442
443
444444
445
446
445
446
447447
448
449
448
449
450450
451
452
451
452
453453
454
455
454
455
456456
457
458
457
458
459459
460
461
460
461
462462
463
464
463
464
465465
466
467
466
467
468468
469
470
469
470
471471
472
473
472
473
474474
475
476
475
476
477477
478478
479479
480
481
480
481
482482
483
484
483
484
485485
486
487
486
487
488488
489
490
489
490
491491
492
493
492
493
494494
495
496
495
496
497497
498
499
498
499
500500
501
502
501
502
503503
504
505
504
505
506506
507
508
507
508
509509
510
511
510
511
512512
513
514
513
514
515515
516
517
516
517
518518
519
520
519
520
521521
522
523
522
523
524524
525
526
525
526
527527
528528
529529
......
692692
693693
694694
695
696
695
696
697697
698698
699
700
699
700
701701
702702
703703
// ----------------------------------------------------------------------------
"HD4K-igx00_title" = "01660000";
"HD4K-igx00_description" = "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"IntelCaprix00_title" = "01660000";
"IntelCaprix00_description" = "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"HD4K-igx01_title" = "01660001";
"HD4K-igx01_description" = "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"IntelCaprix01_title" = "01660001";
"IntelCaprix01_description" = "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"HD4K-igx02_title" = "01660002";
"HD4K-igx02_description" = "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"IntelCaprix02_title" = "01660002";
"IntelCaprix02_description" = "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"HD4K-igx03_title" = "01660003";
"HD4K-igx03_description" = "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"IntelCaprix03_title" = "01660003";
"IntelCaprix03_description" = "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"HD4K-igx04_title" = "01660004";
"HD4K-igx04_description" = "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"IntelCaprix04_title" = "01660004";
"IntelCaprix04_description" = "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"HD4K-igx05_title" = "01620005";
"HD4K-igx05_description" = "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id .";
"IntelCaprix05_title" = "01620005";
"IntelCaprix05_description" = "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id .";
"HD4K-igx06_title" = "01620006";
"HD4K-igx06_description" = "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id .";
"IntelCaprix06_title" = "01620006";
"IntelCaprix06_description" = "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id .";
"HD4K-igx07_title" = "01620007";
"HD4K-igx07_description" = "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id .";
"IntelCaprix07_title" = "01620007";
"IntelCaprix07_description" = "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id .";
"HD4K-igx08_title" = "01660008";
"HD4K-igx08_description" = "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"IntelCaprix08_title" = "01660008";
"IntelCaprix08_description" = "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"HD4K-igx09_title" = "01660009";
"HD4K-igx09_description" = "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"IntelCaprix09_title" = "01660009";
"IntelCaprix09_description" = "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"HD4K-igx10_title" = "0166000a";
"HD4K-igx10_description" = "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"IntelCaprix10_title" = "0166000a";
"IntelCaprix10_description" = "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"HD4K-igx11_title" = "0166000b";
"HD4K-igx11_description" = "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
"IntelCaprix11_title" = "0166000b";
"IntelCaprix11_description" = "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id .";
// ----------------------------------------------------------------------------
"HD5K-igx00_title" = "00000604";
"HD5K-igx00_description" = "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx00_title" = "00000604";
"IntelAzulx00_description" = "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx01_title" = "00001604";
"HD5K-igx01_description" = "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx01_title" = "0000060c";
"IntelAzulx01_description" = "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx02_title" = "02001604";
"HD5K-igx02_description" = "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx02_title" = "00001604";
"IntelAzulx02_description" = "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx03_title" = "00002604";
"HD5K-igx03_description" = "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx03_title" = "0000160a";
"IntelAzulx03_description" = "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx04_title" = "0000160a";
"HD5K-igx04_description" = "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx04_title" = "0000160c";
"IntelAzulx04_description" = "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx05_title" = "0000260a";
"HD5K-igx05_description" = "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx05_title" = "00002604";
"IntelAzulx05_description" = "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx06_title" = "0500260a";
"HD5K-igx06_description" = "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx06_title" = "0000260a";
"IntelAzulx06_description" = "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx07_title" = "0600260a";
"HD5K-igx07_description" = "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx07_title" = "0000260c";
"IntelAzulx07_description" = "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx08_title" = "0800260a";
"HD5K-igx08_description" = "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx08_title" = "0000260d";
"IntelAzulx08_description" = "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx09_title" = "08002e0a";
"HD5K-igx09_description" = "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx09_title" = "02001604";
"IntelAzulx09_description" = "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx10_title" = "0000060c";
"HD5K-igx10_description" = "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx10_title" = "0300220d";
"IntelAzulx10_description" = "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id.";
"HD5K-igx11_title" = "0000160c";
"HD5K-igx11_description" = "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx11_title" = "0500260a";
"IntelAzulx11_description" = "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx12_title" = "0000260c";
"HD5K-igx12_description" = "Set 0000260c for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx12_title" = "0600260a";
"IntelAzulx12_description" = "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx13_title" = "0300220d";
"HD5K-igx13_description" = "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id.";
"IntelAzulx13_title" = "0700260d";
"IntelAzulx13_description" = "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx14_title" = "0000260d";
"HD5K-igx14_description" = "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx14_title" = "0800260a";
"IntelAzulx14_description" = "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"HD5K-igx15_title" = "0700260d";
"HD5K-igx15_description" = "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
"IntelAzulx15_title" = "08002e0a";
"IntelAzulx15_description" = "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id.";
// ----------------------------------------------------------------------------
"HDAULayout_description" = "Set one HDAU Layout ID to use for your HDMi controller.";
// HD4000 Layout
"HD4000_title" = "Intel HD4000 Layout";
"HD4000_description" = "Set one AAPL,ig-platform-id to use for your Intel HD4000.";
"IntelCapri_title" = "Intel Capri AAPL,ig-platform-id";
"IntelCapri_description" = "Set one AAPL,ig-platform-id to use for your Intel HD4000.";
// HD5000 Layout
"HD5000_title" = "Intel HD5000 Layout";
"HD5000_description" = "Set one AAPL,ig-platform-id to use for your Intel HD5000.";
"IntelAzul_title" = "Intel Azul AAPL,ig-platform-id";
"IntelAzul_description" = "Set one AAPL,ig-platform-id to use for your Intel HD5000.";
// PinConfiguration
"HDEFPinConfiguration_title" = "HDEF PinConfiguration";
trunk/package/po/ar.po
77
88
99
10
10
1111
1212
1313
......
16041604
16051605
16061606
1607
1607
16081608
16091609
16101610
16111611
16121612
1613
1613
16141614
16151615
16161616
16171617
16181618
1619
1619
16201620
16211621
16221622
16231623
16241624
1625
1625
16261626
16271627
16281628
16291629
16301630
1631
1631
16321632
16331633
16341634
16351635
16361636
1637
1637
16381638
16391639
16401640
16411641
16421642
1643
1643
16441644
16451645
16461646
16471647
16481648
1649
1649
16501650
16511651
16521652
16531653
16541654
1655
1655
16561656
16571657
16581658
16591659
16601660
1661
1661
16621662
16631663
16641664
16651665
16661666
1667
1667
16681668
16691669
16701670
16711671
16721672
1673
1673
16741674
16751675
16761676
16771677
16781678
1679
1679
16801680
16811681
16821682
16831683
16841684
1685
1685
16861686
16871687
16881688
16891689
16901690
1691
1691
16921692
16931693
16941694
16951695
16961696
1697
1697
16981698
16991699
17001700
17011701
17021702
1703
1703
17041704
17051705
17061706
17071707
17081708
1709
1709
17101710
17111711
17121712
17131713
17141714
1715
1715
17161716
17171717
17181718
17191719
17201720
1721
1721
17221722
17231723
17241724
17251725
17261726
1727
1727
17281728
17291729
17301730
17311731
17321732
1733
1733
17341734
17351735
17361736
17371737
17381738
1739
1739
17401740
17411741
17421742
17431743
17441744
1745
1745
17461746
17471747
17481748
17491749
17501750
1751
1751
17521752
17531753
17541754
17551755
17561756
1757
1757
17581758
17591759
17601760
17611761
17621762
1763
1763
17641764
17651765
17661766
17671767
17681768
1769
1769
17701770
17711771
17721772
17731773
17741774
1775
1775
17761776
17771777
17781778
17791779
17801780
1781
1781
17821782
17831783
17841784
17851785
17861786
1787
1787
17881788
17891789
17901790
17911791
17921792
1793
1793
17941794
17951795
17961796
17971797
17981798
1799
1799
18001800
18011801
18021802
18031803
18041804
1805
1805
18061806
18071807
18081808
18091809
18101810
1811
1811
18121812
18131813
18141814
18151815
18161816
1817
1817
18181818
18191819
18201820
18211821
18221822
1823
1823
18241824
18251825
18261826
18271827
18281828
1829
1829
18301830
18311831
18321832
18331833
18341834
1835
1835
18361836
18371837
18381838
18391839
18401840
1841
1841
18421842
18431843
18441844
18451845
18461846
1847
1847
18481848
18491849
18501850
18511851
18521852
1853
1853
18541854
18551855
18561856
18571857
18581858
1859
1859
18601860
18611861
18621862
18631863
18641864
1865
1865
18661866
18671867
18681868
18691869
18701870
1871
1871
18721872
18731873
18741874
18751875
18761876
1877
1877
18781878
18791879
18801880
18811881
18821882
1883
1883
18841884
18851885
18861886
18871887
18881888
1889
1889
18901890
18911891
18921892
18931893
18941894
1895
1895
18961896
18971897
18981898
18991899
19001900
1901
1901
19021902
19031903
19041904
19051905
19061906
1907
1907
19081908
19091909
19101910
19111911
19121912
1913
1913
19141914
19151915
19161916
19171917
19181918
1919
1919
19201920
19211921
19221922
19231923
19241924
1925
1925
19261926
19271927
19281928
19291929
19301930
1931
1931
19321932
19331933
19341934
19351935
19361936
1937
1937
19381938
19391939
19401940
......
24552455
24562456
24572457
2458
2458
24592459
24602460
2461
2461
24622462
24632463
2464
2464
24652465
24662466
24672467
24682468
24692469
2470
2470
24712471
24722472
2473
2473
24742474
24752475
2476
2476
24772477
24782478
24792479
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-04-26 18:34+0000\n"
"Last-Translator: magnifico <cparisi2@gmail.com>\n"
"Language-Team: ar <ar@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr ""
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr ""
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr ""
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr ""
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr ""
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr ""
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr ""
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr ""
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr ""
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr ""
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr ""
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr ""
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr ""
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr ""
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr ""
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr ""
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr ""
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr ""
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr ""
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr ""
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr ""
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/en.po
77
88
99
10
11
10
11
1212
1313
1414
......
17121712
17131713
17141714
1715
1715
17161716
17171717
17181718
17191719
17201720
1721
1721
17221722
17231723
17241724
17251725
17261726
1727
1727
17281728
17291729
17301730
17311731
17321732
1733
1733
17341734
17351735
17361736
17371737
17381738
1739
1739
17401740
17411741
17421742
17431743
17441744
1745
1745
17461746
17471747
17481748
17491749
17501750
1751
1751
17521752
17531753
17541754
17551755
17561756
1757
1757
17581758
17591759
17601760
17611761
17621762
1763
1763
17641764
17651765
17661766
17671767
17681768
1769
1769
17701770
17711771
17721772
17731773
17741774
1775
1775
17761776
17771777
17781778
17791779
17801780
1781
1781
17821782
17831783
17841784
17851785
17861786
1787
1787
17881788
17891789
17901790
17911791
17921792
1793
1793
17941794
17951795
17961796
17971797
17981798
1799
1799
18001800
18011801
18021802
18031803
18041804
1805
1805
18061806
18071807
18081808
18091809
18101810
1811
1811
18121812
18131813
18141814
18151815
18161816
1817
1817
18181818
18191819
18201820
18211821
18221822
1823
1823
18241824
18251825
18261826
18271827
18281828
1829
1829
18301830
18311831
18321832
18331833
18341834
1835
1835
18361836
18371837
18381838
18391839
18401840
1841
1841
18421842
18431843
18441844
18451845
18461846
1847
1847
18481848
18491849
18501850
18511851
18521852
1853
1853
18541854
18551855
18561856
18571857
18581858
1859
1859
18601860
18611861
18621862
18631863
18641864
1865
1865
18661866
18671867
18681868
18691869
18701870
1871
1871
18721872
18731873
18741874
18751875
18761876
1877
1877
18781878
18791879
18801880
18811881
18821882
1883
1883
18841884
18851885
18861886
18871887
18881888
1889
1889
18901890
18911891
18921892
18931893
18941894
1895
1895
18961896
18971897
18981898
18991899
19001900
1901
1901
19021902
19031903
19041904
19051905
19061906
1907
1907
19081908
19091909
19101910
19111911
19121912
1913
1913
19141914
19151915
19161916
19171917
19181918
1919
1919
19201920
19211921
19221922
19231923
19241924
1925
1925
19261926
19271927
19281928
19291929
19301930
1931
1931
19321932
19331933
19341934
19351935
19361936
1937
1937
19381938
19391939
19401940
19411941
19421942
1943
1943
19441944
19451945
19461946
19471947
19481948
1949
1949
19501950
19511951
19521952
19531953
19541954
1955
1955
19561956
19571957
19581958
19591959
19601960
1961
1961
19621962
19631963
19641964
19651965
19661966
1967
1967
19681968
19691969
19701970
19711971
19721972
1973
1973
19741974
19751975
19761976
19771977
19781978
1979
1979
19801980
19811981
19821982
19831983
19841984
1985
1985
19861986
19871987
19881988
19891989
19901990
1991
1991
19921992
19931993
19941994
19951995
19961996
1997
1997
19981998
19991999
20002000
20012001
20022002
2003
2003
20042004
20052005
20062006
20072007
20082008
2009
2009
20102010
20112011
20122012
20132013
20142014
2015
2015
20162016
20172017
20182018
20192019
20202020
2021
2021
20222022
20232023
20242024
20252025
20262026
2027
2027
20282028
20292029
20302030
20312031
20322032
2033
2033
20342034
20352035
20362036
20372037
20382038
2039
2039
20402040
20412041
20422042
20432043
20442044
2045
2045
20462046
20472047
20482048
......
25702570
25712571
25722572
2573
2573
25742574
25752575
2576
2577
2576
2577
25782578
2579
2579
25802580
25812581
25822582
25832583
25842584
2585
2585
25862586
25872587
2588
2589
2588
2589
25902590
2591
2591
25922592
25932593
25942594
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"PO-Revision-Date: 2013-07-29 03:37-0000\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-08-28 15:47-0000\n"
"Last-Translator: \n"
"Language-Team: en <en@li.org>\n"
"Language: en\n"
"Set HDAU layout-it to 1981:\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id."
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id."
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id."
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr "00000604"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr "0000060c"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr "00001604"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr "0000160a"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr "0000160c"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr "00002604"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr "0000260a"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr "0000260c"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr "0000260d"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr "02001604"
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr "0300220d"
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr "0500260a"
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr "0600260a"
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr "0700260d"
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr "0800260a"
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr "08002e0a"
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr "Set one HDAU Layout ID to use for your HDMi controller."
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr "Intel Capri AAPL,ig-platform-id"
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr "Set one AAPL,ig-platform-id to use for your Intel HD4000."
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgstr "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr "Intel Azul AAPL,ig-platform-id"
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/bs.po
77
88
99
10
10
1111
1212
1313
......
16261626
16271627
16281628
1629
1629
16301630
16311631
16321632
16331633
16341634
1635
1635
16361636
16371637
16381638
16391639
16401640
1641
1641
16421642
16431643
16441644
16451645
16461646
1647
1647
16481648
16491649
16501650
16511651
16521652
1653
1653
16541654
16551655
16561656
16571657
16581658
1659
1659
16601660
16611661
16621662
16631663
16641664
1665
1665
16661666
16671667
16681668
16691669
16701670
1671
1671
16721672
16731673
16741674
16751675
16761676
1677
1677
16781678
16791679
16801680
16811681
16821682
1683
1683
16841684
16851685
16861686
16871687
16881688
1689
1689
16901690
16911691
16921692
16931693
16941694
1695
1695
16961696
16971697
16981698
16991699
17001700
1701
1701
17021702
17031703
17041704
17051705
17061706
1707
1707
17081708
17091709
17101710
17111711
17121712
1713
1713
17141714
17151715
17161716
17171717
17181718
1719
1719
17201720
17211721
17221722
17231723
17241724
1725
1725
17261726
17271727
17281728
17291729
17301730
1731
1731
17321732
17331733
17341734
17351735
17361736
1737
1737
17381738
17391739
17401740
17411741
17421742
1743
1743
17441744
17451745
17461746
17471747
17481748
1749
1749
17501750
17511751
17521752
17531753
17541754
1755
1755
17561756
17571757
17581758
17591759
17601760
1761
1761
17621762
17631763
17641764
17651765
17661766
1767
1767
17681768
17691769
17701770
17711771
17721772
1773
1773
17741774
17751775
17761776
17771777
17781778
1779
1779
17801780
17811781
17821782
17831783
17841784
1785
1785
17861786
17871787
17881788
17891789
17901790
1791
1791
17921792
17931793
17941794
17951795
17961796
1797
1797
17981798
17991799
18001800
18011801
18021802
1803
1803
18041804
18051805
18061806
18071807
18081808
1809
1809
18101810
18111811
18121812
18131813
18141814
1815
1815
18161816
18171817
18181818
18191819
18201820
1821
1821
18221822
18231823
18241824
18251825
18261826
1827
1827
18281828
18291829
18301830
18311831
18321832
1833
1833
18341834
18351835
18361836
18371837
18381838
1839
1839
18401840
18411841
18421842
18431843
18441844
1845
1845
18461846
18471847
18481848
18491849
18501850
1851
1851
18521852
18531853
18541854
18551855
18561856
1857
1857
18581858
18591859
18601860
18611861
18621862
1863
1863
18641864
18651865
18661866
18671867
18681868
1869
1869
18701870
18711871
18721872
18731873
18741874
1875
1875
18761876
18771877
18781878
18791879
18801880
1881
1881
18821882
18831883
18841884
18851885
18861886
1887
1887
18881888
18891889
18901890
18911891
18921892
1893
1893
18941894
18951895
18961896
18971897
18981898
1899
1899
19001900
19011901
19021902
19031903
19041904
1905
1905
19061906
19071907
19081908
19091909
19101910
1911
1911
19121912
19131913
19141914
19151915
19161916
1917
1917
19181918
19191919
19201920
19211921
19221922
1923
1923
19241924
19251925
19261926
19271927
19281928
1929
1929
19301930
19311931
19321932
19331933
19341934
1935
1935
19361936
19371937
19381938
19391939
19401940
1941
1941
19421942
19431943
19441944
19451945
19461946
1947
1947
19481948
19491949
19501950
19511951
19521952
1953
1953
19541954
19551955
19561956
19571957
19581958
1959
1959
19601960
19611961
19621962
......
24822482
24832483
24842484
2485
2485
24862486
24872487
2488
2488
24892489
24902490
2491
2491
24922492
24932493
24942494
24952495
24962496
2497
2497
24982498
2499
2500
2501
2502
2499
2500
2501
25032502
2504
2503
25052504
25062505
25072506
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2012-03-07 00:12-0000\n"
"Last-Translator: ErmaC\n"
"Language-Team: bs <bs@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr ""
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr ""
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr ""
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr ""
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr ""
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr ""
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr ""
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr ""
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr ""
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr ""
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr ""
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr ""
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr ""
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr ""
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr ""
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr ""
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr ""
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr ""
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr ""
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr ""
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr ""
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "KeyLayout"
msgid "Intel HD5000 Layout"
msgstr "KeyLayout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/cs.po
66
77
88
9
9
1010
1111
1212
......
17181718
17191719
17201720
1721
1721
17221722
17231723
17241724
17251725
17261726
1727
1727
17281728
17291729
17301730
17311731
17321732
1733
1733
17341734
17351735
17361736
17371737
17381738
1739
1739
17401740
17411741
17421742
17431743
17441744
1745
1745
17461746
17471747
17481748
17491749
17501750
1751
1751
17521752
17531753
17541754
17551755
17561756
1757
1757
17581758
17591759
17601760
17611761
17621762
1763
1763
17641764
17651765
17661766
17671767
17681768
1769
1769
17701770
17711771
17721772
17731773
17741774
1775
1775
17761776
17771777
17781778
17791779
17801780
1781
1781
17821782
17831783
17841784
17851785
17861786
1787
1787
17881788
17891789
17901790
17911791
17921792
1793
1793
17941794
17951795
17961796
17971797
17981798
1799
1799
18001800
18011801
18021802
18031803
18041804
1805
1805
18061806
18071807
18081808
18091809
18101810
1811
1811
18121812
18131813
18141814
18151815
18161816
1817
1817
18181818
18191819
18201820
18211821
18221822
1823
1823
18241824
18251825
18261826
18271827
18281828
1829
1829
18301830
18311831
18321832
18331833
18341834
1835
1835
18361836
18371837
18381838
18391839
18401840
1841
1841
18421842
18431843
18441844
18451845
18461846
1847
1847
18481848
18491849
18501850
18511851
18521852
1853
1853
18541854
18551855
18561856
18571857
18581858
1859
1859
18601860
18611861
18621862
18631863
18641864
1865
1865
18661866
18671867
18681868
18691869
18701870
18711871
1872
1872
18731873
18741874
18751875
18761876
18771877
18781878
1879
1879
18801880
18811881
18821882
18831883
18841884
18851885
1886
1886
18871887
18881888
18891889
18901890
18911891
18921892
1893
1893
18941894
18951895
18961896
18971897
18981898
18991899
1900
1900
19011901
19021902
19031903
19041904
19051905
19061906
1907
1907
19081908
19091909
19101910
19111911
19121912
19131913
1914
1914
19151915
19161916
19171917
19181918
19191919
19201920
1921
1921
19221922
19231923
19241924
19251925
19261926
19271927
1928
1928
19291929
19301930
19311931
19321932
19331933
19341934
1935
1935
19361936
19371937
19381938
19391939
19401940
19411941
1942
1942
19431943
19441944
19451945
19461946
19471947
19481948
1949
1949
19501950
19511951
19521952
19531953
19541954
19551955
1956
1956
19571957
19581958
19591959
19601960
19611961
19621962
1963
1963
19641964
19651965
19661966
19671967
19681968
19691969
1970
1970
19711971
19721972
19731973
19741974
19751975
19761976
1977
1977
19781978
19791979
19801980
19811981
19821982
19831983
1984
1984
19851985
19861986
19871987
19881988
19891989
19901990
1991
1991
19921992
19931993
19941994
19951995
19961996
1997
1997
19981998
19991999
20002000
20012001
20022002
20032003
2004
2004
20052005
20062006
20072007
20082008
20092009
2010
2010
20112011
20122012
20132013
20142014
20152015
20162016
2017
2017
20182018
20192019
20202020
20212021
20222022
2023
2023
20242024
20252025
20262026
20272027
20282028
20292029
2030
2030
20312031
20322032
20332033
20342034
20352035
2036
2036
20372037
20382038
20392039
20402040
20412041
20422042
2043
2043
20442044
20452045
20462046
20472047
20482048
2049
2049
20502050
20512051
20522052
20532053
20542054
20552055
2056
2056
20572057
20582058
20592059
20602060
20612061
2062
2062
20632063
20642064
20652065
20662066
20672067
20682068
2069
2069
20702070
20712071
20722072
20732073
20742074
2075
2075
20762076
20772077
20782078
......
25922592
25932593
25942594
2595
2595
25962596
25972597
2598
2599
2598
2599
26002600
2601
2601
26022602
26032603
26042604
26052605
26062606
2607
2607
26082608
26092609
2610
2611
2612
2610
2611
26132612
2614
2613
26152614
26162615
26172616
msgid ""
msgstr ""
"Project-Id-Version: Chameleon 2.1svn-r1870\n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-06-08 13:43+0000\n"
"Last-Translator: martin63 <martin.badin@gmail.com>\n"
"Language-Team: cs <cs@li.org>\n"
"Nastavit HDAU layout na 1981:\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Nastavit 01660001 pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Nastavit 01660002 pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Nastavit 01660003 pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Nastavit 01620005 pro Intel HD4000 (Desktop) AAPL, ig-platform-id."
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Nastavit 01620006 pro Intel HD4000 (Desktop) AAPL, ig-platform-id."
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Nastavit 01620007 pro Intel HD4000 (Desktop) AAPL, ig-platform-id."
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Nastavit 01660008 pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Nastavit 01660009 pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Nastavit 0166000b pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 01660004 pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, fuzzy, no-wrap
#| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr "Nastavit 01620005 pro Intel HD4000 (Desktop) AAPL, ig-platform-id."
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 01660000 pro Intel HD4000 (Mobile) AAPL,ig-platform-id."
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Nastavit 0166000a pro Intel HD4000 (Mobile) AAPL, ig-platform-id."
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr "Nastavit jednu HDAU Layout ID použitelný pro váš řadič HDMI."
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr "Intel Capri AAPL,ig-platform-id"
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr "Nastavit jednu AAPL,ig-platform-id požitelnú pro vaši Intel HD4000."
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr "Intel Azul AAPL,ig-platform-id"
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, fuzzy, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
trunk/package/po/mk.po
77
88
99
10
10
1111
1212
1313
......
16041604
16051605
16061606
1607
1607
16081608
16091609
16101610
16111611
16121612
1613
1613
16141614
16151615
16161616
16171617
16181618
1619
1619
16201620
16211621
16221622
16231623
16241624
1625
1625
16261626
16271627
16281628
16291629
16301630
1631
1631
16321632
16331633
16341634
16351635
16361636
1637
1637
16381638
16391639
16401640
16411641
16421642
1643
1643
16441644
16451645
16461646
16471647
16481648
1649
1649
16501650
16511651
16521652
16531653
16541654
1655
1655
16561656
16571657
16581658
16591659
16601660
1661
1661
16621662
16631663
16641664
16651665
16661666
1667
1667
16681668
16691669
16701670
16711671
16721672
1673
1673
16741674
16751675
16761676
16771677
16781678
1679
1679
16801680
16811681
16821682
16831683
16841684
1685
1685
16861686
16871687
16881688
16891689
16901690
1691
1691
16921692
16931693
16941694
16951695
16961696
1697
1697
16981698
16991699
17001700
17011701
17021702
1703
1703
17041704
17051705
17061706
17071707
17081708
1709
1709
17101710
17111711
17121712
17131713
17141714
1715
1715
17161716
17171717
17181718
17191719
17201720
1721
1721
17221722
17231723
17241724
17251725
17261726
1727
1727
17281728
17291729
17301730
17311731
17321732
1733
1733
17341734
17351735
17361736
17371737
17381738
1739
1739
17401740
17411741
17421742
17431743
17441744
1745
1745
17461746
17471747
17481748
17491749
17501750
1751
1751
17521752
17531753
17541754
17551755
17561756
17571757
1758
1758
17591759
17601760
17611761
17621762
17631763
1764
1764
17651765
17661766
17671767
17681768
17691769
17701770
1771
1771
17721772
17731773
17741774
17751775
17761776
1777
1777
17781778
17791779
17801780
17811781
17821782
17831783
1784
1784
17851785
17861786
17871787
17881788
17891789
1790
1790
17911791
17921792
17931793
17941794
17951795
17961796
1797
1797
17981798
17991799
18001800
18011801
18021802
1803
1803
18041804
18051805
18061806
18071807
18081808
18091809
1810
1810
18111811
18121812
18131813
18141814
18151815
1816
1816
18171817
18181818
18191819
18201820
18211821
18221822
1823
1823
18241824
18251825
18261826
18271827
18281828
1829
1829
18301830
18311831
18321832
18331833
18341834
18351835
1836
1836
18371837
18381838
18391839
18401840
18411841
1842
1842
18431843
18441844
18451845
18461846
18471847
18481848
1849
1849
18501850
18511851
18521852
18531853
18541854
1855
1855
18561856
18571857
18581858
18591859
18601860
18611861
1862
1862
18631863
18641864
18651865
18661866
18671867
1868
1868
18691869
18701870
18711871
18721872
18731873
1874
1874
18751875
18761876
18771877
18781878
18791879
1880
1880
18811881
18821882
18831883
18841884
18851885
1886
1886
18871887
18881888
18891889
18901890
18911891
1892
1892
18931893
18941894
18951895
18961896
18971897
1898
1898
18991899
19001900
19011901
19021902
19031903
1904
1904
19051905
19061906
19071907
19081908
19091909
1910
1910
19111911
19121912
19131913
19141914
19151915
1916
1916
19171917
19181918
19191919
19201920
19211921
1922
1922
19231923
19241924
19251925
19261926
19271927
1928
1928
19291929
19301930
19311931
19321932
19331933
1934
1934
19351935
19361936
19371937
19381938
19391939
1940
1940
19411941
19421942
19431943
19441944
19451945
1946
1946
19471947
19481948
19491949
......
24632463
24642464
24652465
2466
2466
24672467
24682468
2469
2470
2469
2470
24712471
2472
2472
24732473
24742474
24752475
24762476
24772477
2478
2478
24792479
2480
2481
2482
2483
2480
2481
2482
24842483
2485
2484
24862485
24872486
24882487
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-05-11 17:48-0000\n"
"Last-Translator: ErmaC\n"
"Language-Team: mk <mk@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/es.po
77
88
99
10
10
1111
1212
1313
......
17111711
17121712
17131713
1714
1714
17151715
17161716
17171717
17181718
17191719
1720
1720
17211721
17221722
17231723
17241724
17251725
1726
1726
17271727
17281728
17291729
17301730
17311731
1732
1732
17331733
17341734
17351735
17361736
17371737
1738
1738
17391739
17401740
17411741
17421742
17431743
1744
1744
17451745
17461746
17471747
17481748
17491749
1750
1750
17511751
17521752
17531753
17541754
17551755
1756
1756
17571757
17581758
17591759
17601760
17611761
1762
1762
17631763
17641764
17651765
17661766
17671767
1768
1768
17691769
17701770
17711771
17721772
17731773
1774
1774
17751775
17761776
17771777
17781778
17791779
1780
1780
17811781
17821782
17831783
17841784
17851785
1786
1786
17871787
17881788
17891789
17901790
17911791
1792
1792
17931793
17941794
17951795
17961796
17971797
1798
1798
17991799
18001800
18011801
18021802
18031803
1804
1804
18051805
18061806
18071807
18081808
18091809
1810
1810
18111811
18121812
18131813
18141814
18151815
1816
1816
18171817
18181818
18191819
18201820
18211821
1822
1822
18231823
18241824
18251825
18261826
18271827
1828
1828
18291829
18301830
18311831
18321832
18331833
1834
1834
18351835
18361836
18371837
18381838
18391839
1840
1840
18411841
18421842
18431843
18441844
18451845
1846
1846
18471847
18481848
18491849
18501850
18511851
1852
1852
18531853
18541854
18551855
18561856
18571857
1858
1858
18591859
18601860
18611861
18621862
18631863
1864
1864
18651865
18661866
18671867
18681868
18691869
1870
1870
18711871
18721872
18731873
18741874
18751875
1876
1876
18771877
18781878
18791879
18801880
18811881
1882
1882
18831883
18841884
18851885
18861886
18871887
1888
1888
18891889
18901890
18911891
18921892
18931893
1894
1894
18951895
18961896
18971897
18981898
18991899
1900
1900
19011901
19021902
19031903
19041904
19051905
1906
1906
19071907
19081908
19091909
19101910
19111911
1912
1912
19131913
19141914
19151915
19161916
19171917
1918
1918
19191919
19201920
19211921
19221922
19231923
1924
1924
19251925
19261926
19271927
19281928
19291929
1930
1930
19311931
19321932
19331933
19341934
19351935
1936
1936
19371937
19381938
19391939
19401940
19411941
1942
1942
19431943
19441944
19451945
19461946
19471947
1948
1948
19491949
19501950
19511951
19521952
19531953
1954
1954
19551955
19561956
19571957
19581958
19591959
1960
1960
19611961
19621962
19631963
19641964
19651965
1966
1966
19671967
19681968
19691969
19701970
19711971
1972
1972
19731973
19741974
19751975
19761976
19771977
1978
1978
19791979
19801980
19811981
19821982
19831983
1984
1984
19851985
19861986
19871987
19881988
19891989
1990
1990
19911991
19921992
19931993
19941994
19951995
1996
1996
19971997
19981998
19991999
20002000
20012001
2002
2002
20032003
20042004
20052005
20062006
20072007
2008
2008
20092009
20102010
20112011
20122012
20132013
2014
2014
20152015
20162016
20172017
20182018
20192019
2020
2020
20212021
20222022
20232023
20242024
20252025
2026
2026
20272027
20282028
20292029
20302030
20312031
2032
2032
20332033
20342034
20352035
20362036
20372037
2038
2038
20392039
20402040
20412041
20422042
20432043
2044
2044
20452045
20462046
20472047
......
25602560
25612561
25622562
2563
2563
25642564
25652565
2566
2567
2566
2567
25682568
2569
2569
25702570
25712571
25722572
25732573
25742574
2575
2575
25762576
25772577
2578
2579
2578
2579
25802580
2581
2581
25822582
25832583
25842584
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-07-22 03:12-0000\n"
"Last-Translator: Maniac <emafrias@gmail.com>\n"
"Language-Team: es <es@li.org>\n"
"Establecer el Modo de HDAU layout-it en 1981:\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr "00000604"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr "0000060c"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr "00001604"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr "0000160a"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr "0000160c"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr "00002604"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr "0000260a"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr "0000260c"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr "0000260d"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr "02001604"
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr "0300220d"
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr "0500260a"
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr "0600260a"
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr "0700260d"
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr "0800260a"
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr "08002e0a"
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr "Set one HDAU Layout ID to use for your HDMi controller."
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr "Set one AAPL,ig-platform-id to use for your Intel HD4000."
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgstr "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, fuzzy, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
trunk/package/po/fr.po
77
88
99
10
10
1111
1212
1313
......
17361736
17371737
17381738
1739
1739
17401740
17411741
17421742
17431743
17441744
1745
1745
17461746
17471747
17481748
17491749
17501750
1751
1751
17521752
17531753
17541754
17551755
17561756
1757
1757
17581758
17591759
17601760
17611761
17621762
1763
1763
17641764
17651765
17661766
17671767
17681768
1769
1769
17701770
17711771
17721772
17731773
17741774
1775
1775
17761776
17771777
17781778
17791779
17801780
1781
1781
17821782
17831783
17841784
17851785
17861786
1787
1787
17881788
17891789
17901790
17911791
17921792
1793
1793
17941794
17951795
17961796
17971797
17981798
1799
1799
18001800
18011801
18021802
18031803
18041804
1805
1805
18061806
18071807
18081808
18091809
18101810
1811
1811
18121812
18131813
18141814
18151815
18161816
1817
1817
18181818
18191819
18201820
18211821
18221822
1823
1823
18241824
18251825
18261826
18271827
18281828
1829
1829
18301830
18311831
18321832
18331833
18341834
1835
1835
18361836
18371837
18381838
18391839
18401840
1841
1841
18421842
18431843
18441844
18451845
18461846
1847
1847
18481848
18491849
18501850
18511851
18521852
1853
1853
18541854
18551855
18561856
18571857
18581858
1859
1859
18601860
18611861
18621862
18631863
18641864
1865
1865
18661866
18671867
18681868
18691869
18701870
1871
1871
18721872
18731873
18741874
18751875
18761876
1877
1877
18781878
18791879
18801880
18811881
18821882
1883
1883
18841884
18851885
18861886
18871887
18881888
1889
1889
18901890
18911891
18921892
18931893
18941894
18951895
1896
1896
18971897
18981898
18991899
19001900
19011901
1902
1902
19031903
19041904
19051905
19061906
19071907
19081908
1909
1909
19101910
19111911
19121912
19131913
19141914
1915
1915
19161916
19171917
19181918
19191919
19201920
19211921
1922
1922
19231923
19241924
19251925
19261926
19271927
1928
1928
19291929
19301930
19311931
19321932
19331933
19341934
1935
1935
19361936
19371937
19381938
19391939
19401940
1941
1941
19421942
19431943
19441944
19451945
19461946
19471947
1948
1948
19491949
19501950
19511951
19521952
19531953
1954
1954
19551955
19561956
19571957
19581958
19591959
19601960
1961
1961
19621962
19631963
19641964
19651965
19661966
1967
1967
19681968
19691969
19701970
19711971
19721972
19731973
1974
1974
19751975
19761976
19771977
19781978
19791979
1980
1980
19811981
19821982
19831983
19841984
19851985
19861986
1987
1987
19881988
19891989
19901990
19911991
19921992
1993
1993
19941994
19951995
19961996
19971997
19981998
19991999
2000
2000
20012001
20022002
20032003
20042004
20052005
2006
2006
20072007
20082008
20092009
20102010
20112011
20122012
2013
2013
20142014
20152015
20162016
20172017
20182018
2019
2019
20202020
20212021
20222022
20232023
20242024
20252025
2026
2026
20272027
20282028
20292029
20302030
20312031
2032
2032
20332033
20342034
20352035
20362036
20372037
20382038
2039
2039
20402040
20412041
20422042
20432043
20442044
2045
2045
20462046
20472047
20482048
20492049
20502050
20512051
2052
2052
20532053
20542054
20552055
20562056
20572057
2058
2058
20592059
20602060
20612061
20622062
20632063
20642064
2065
2065
20662066
20672067
20682068
20692069
20702070
2071
2071
20722072
20732073
20742074
20752075
20762076
20772077
2078
2078
20792079
20802080
20812081
20822082
20832083
2084
2084
20852085
20862086
20872087
......
26062606
26072607
26082608
2609
2609
26102610
26112611
2612
2613
2612
2613
26142614
2615
2615
26162616
26172617
26182618
26192619
26202620
2621
2621
26222622
26232623
2624
2625
2624
2625
26262626
2627
2627
26282628
26292629
26302630
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-07-22 03:14-0000\n"
"Last-Translator: JrCs <d2t56xxptp@snkmail.com>\n"
"Language-Team: fr <fr@li.org>\n"
"Set HDAU layout-it to 1981:\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr "00000604"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr "0000060c"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr "00001604"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr "0000160a"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr "0000160c"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr "00002604"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr "0000260a"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr "0000260c"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr "0000260d"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr "02001604"
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr "0300220d"
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, fuzzy, no-wrap
#| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr "0500260a"
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr "0600260a"
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr "0700260d"
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr "0800260a"
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr "08002e0a"
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr "Définissez une HDAU Layout ID à utiliser pour votre contrôleur HDMi."
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr "Intel Capri AAPL,ig-platform-id"
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr "Set one AAPL,ig-platform-id to use for your Intel HD4000."
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgstr "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr "Intel Azul AAPL,ig-platform-id"
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, fuzzy, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
trunk/package/po/nl.po
77
88
99
10
10
1111
1212
1313
......
16221622
16231623
16241624
1625
1625
16261626
16271627
16281628
16291629
16301630
1631
1631
16321632
16331633
16341634
16351635
16361636
1637
1637
16381638
16391639
16401640
16411641
16421642
1643
1643
16441644
16451645
16461646
16471647
16481648
1649
1649
16501650
16511651
16521652
16531653
16541654
1655
1655
16561656
16571657
16581658
16591659
16601660
1661
1661
16621662
16631663
16641664
16651665
16661666
1667
1667
16681668
16691669
16701670
16711671
16721672
1673
1673
16741674
16751675
16761676
16771677
16781678
1679
1679
16801680
16811681
16821682
16831683
16841684
1685
1685
16861686
16871687
16881688
16891689
16901690
1691
1691
16921692
16931693
16941694
16951695
16961696
1697
1697
16981698
16991699
17001700
17011701
17021702
1703
1703
17041704
17051705
17061706
17071707
17081708
1709
1709
17101710
17111711
17121712
17131713
17141714
1715
1715
17161716
17171717
17181718
17191719
17201720
1721
1721
17221722
17231723
17241724
17251725
17261726
1727
1727
17281728
17291729
17301730
17311731
17321732
1733
1733
17341734
17351735
17361736
17371737
17381738
1739
1739
17401740
17411741
17421742
17431743
17441744
1745
1745
17461746
17471747
17481748
17491749
17501750
1751
1751
17521752
17531753
17541754
17551755
17561756
1757
1757
17581758
17591759
17601760
17611761
17621762
1763
1763
17641764
17651765
17661766
17671767
17681768
1769
1769
17701770
17711771
17721772
17731773
17741774
17751775
1776
1776
17771777
17781778
17791779
17801780
17811781
1782
1782
17831783
17841784
17851785
17861786
17871787
17881788
1789
1789
17901790
17911791
17921792
17931793
17941794
1795
1795
17961796
17971797
17981798
17991799
18001800
18011801
1802
1802
18031803
18041804
18051805
18061806
18071807
1808
1808
18091809
18101810
18111811
18121812
18131813
18141814
1815
1815
18161816
18171817
18181818
18191819
18201820
1821
1821
18221822
18231823
18241824
18251825
18261826
18271827
1828
1828
18291829
18301830
18311831
18321832
18331833
1834
1834
18351835
18361836
18371837
18381838
18391839
18401840
1841
1841
18421842
18431843
18441844
18451845
18461846
1847
1847
18481848
18491849
18501850
18511851
18521852
18531853
1854
1854
18551855
18561856
18571857
18581858
18591859
1860
1860
18611861
18621862
18631863
18641864
18651865
18661866
1867
1867
18681868
18691869
18701870
18711871
18721872
1873
1873
18741874
18751875
18761876
18771877
18781878
18791879
1880
1880
18811881
18821882
18831883
18841884
18851885
1886
1886
18871887
18881888
18891889
18901890
18911891
1892
1892
18931893
18941894
18951895
18961896
18971897
1898
1898
18991899
19001900
19011901
19021902
19031903
1904
1904
19051905
19061906
19071907
19081908
19091909
1910
1910
19111911
19121912
19131913
19141914
19151915
1916
1916
19171917
19181918
19191919
19201920
19211921
1922
1922
19231923
19241924
19251925
19261926
19271927
1928
1928
19291929
19301930
19311931
19321932
19331933
1934
1934
19351935
19361936
19371937
19381938
19391939
1940
1940
19411941
19421942
19431943
19441944
19451945
1946
1946
19471947
19481948
19491949
19501950
19511951
1952
1952
19531953
19541954
19551955
19561956
19571957
1958
1958
19591959
19601960
19611961
19621962
19631963
1964
1964
19651965
19661966
19671967
......
24802480
24812481
24822482
2483
2483
24842484
24852485
2486
2487
2486
2487
24882488
2489
2489
24902490
24912491
24922492
24932493
24942494
2495
2495
24962496
2497
2498
2499
2500
2497
2498
2499
25012500
2502
2501
25032502
25042503
25052504
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-05-15 00:36+0000\n"
"Last-Translator: beta992 <beta992@gmail.com>\n"
"Language-Team: nl <nl@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/ko.po
66
77
88
9
9
1010
1111
1212
......
17151715
17161716
17171717
1718
1718
17191719
17201720
17211721
17221722
17231723
1724
1724
17251725
17261726
17271727
17281728
17291729
1730
1730
17311731
17321732
17331733
17341734
17351735
1736
1736
17371737
17381738
17391739
17401740
17411741
1742
1742
17431743
17441744
17451745
17461746
17471747
1748
1748
17491749
17501750
17511751
17521752
17531753
1754
1754
17551755
17561756
17571757
17581758
17591759
1760
1760
17611761
17621762
17631763
17641764
17651765
1766
1766
17671767
17681768
17691769
17701770
17711771
1772
1772
17731773
17741774
17751775
17761776
17771777
1778
1778
17791779
17801780
17811781
17821782
17831783
1784
1784
17851785
17861786
17871787
17881788
17891789
1790
1790
17911791
17921792
17931793
17941794
17951795
1796
1796
17971797
17981798
17991799
18001800
18011801
1802
1802
18031803
18041804
18051805
18061806
18071807
1808
1808
18091809
18101810
18111811
18121812
18131813
1814
1814
18151815
18161816
18171817
18181818
18191819
1820
1820
18211821
18221822
18231823
18241824
18251825
1826
1826
18271827
18281828
18291829
18301830
18311831
1832
1832
18331833
18341834
18351835
18361836
18371837
1838
1838
18391839
18401840
18411841
18421842
18431843
1844
1844
18451845
18461846
18471847
18481848
18491849
1850
1850
18511851
18521852
18531853
18541854
18551855
1856
1856
18571857
18581858
18591859
18601860
18611861
1862
1862
18631863
18641864
18651865
18661866
18671867
18681868
1869
1869
18701870
18711871
18721872
18731873
18741874
18751875
1876
1876
18771877
18781878
18791879
18801880
18811881
18821882
1883
1883
18841884
18851885
18861886
18871887
18881888
18891889
1890
1890
18911891
18921892
18931893
18941894
18951895
18961896
1897
1897
18981898
18991899
19001900
19011901
19021902
19031903
1904
1904
19051905
19061906
19071907
19081908
19091909
19101910
1911
1911
19121912
19131913
19141914
19151915
19161916
19171917
1918
1918
19191919
19201920
19211921
19221922
19231923
19241924
1925
1925
19261926
19271927
19281928
19291929
19301930
19311931
1932
1932
19331933
19341934
19351935
19361936
19371937
19381938
1939
1939
19401940
19411941
19421942
19431943
19441944
19451945
1946
1946
19471947
19481948
19491949
19501950
19511951
19521952
1953
1953
19541954
19551955
19561956
19571957
19581958
19591959
1960
1960
19611961
19621962
19631963
19641964
19651965
19661966
1967
1967
19681968
19691969
19701970
19711971
19721972
19731973
1974
1974
19751975
19761976
19771977
19781978
19791979
19801980
1981
1981
19821982
19831983
19841984
19851985
19861986
19871987
1988
1988
19891989
19901990
19911991
19921992
19931993
1994
1994
19951995
19961996
19971997
19981998
19991999
20002000
2001
2001
20022002
20032003
20042004
20052005
20062006
2007
2007
20082008
20092009
20102010
20112011
20122012
20132013
2014
2014
20152015
20162016
20172017
20182018
20192019
2020
2020
20212021
20222022
20232023
20242024
20252025
20262026
2027
2027
20282028
20292029
20302030
20312031
20322032
2033
2033
20342034
20352035
20362036
20372037
20382038
20392039
2040
2040
20412041
20422042
20432043
20442044
20452045
2046
2046
20472047
20482048
20492049
20502050
20512051
20522052
2053
2053
20542054
20552055
20562056
20572057
20582058
2059
2059
20602060
20612061
20622062
20632063
20642064
20652065
2066
2066
20672067
20682068
20692069
20702070
20712071
2072
2072
20732073
20742074
20752075
......
25972597
25982598
25992599
2600
2600
26012601
26022602
2603
2604
2603
2604
26052605
2606
2606
26072607
26082608
26092609
26102610
26112611
2612
2612
26132613
26142614
2615
2616
2617
2615
2616
26182617
2619
2618
26202619
26212620
26222621
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-06-04 17:50+0000\n"
"Last-Translator: Mill <ceruns@ymail.com>\n"
"Language-Team: ko <ko@li.org>\n"
"Set HDAU layout-it to 1981:\n"
"07BD (0xBD, 0x07, 0x00, 0x00)."
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정."
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660001 설정."
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660002로 설정."
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660003로 설정."
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정."
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01620005 설정."
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01620006 설정."
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (데스크톱) 의 AAPL,ig-platform-id로 01620007 설정."
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660008 설정."
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660009로 설정."
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정."
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 0166000b 설정."
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정."
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정."
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정."
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정."
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정."
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정."
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정."
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정."
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정."
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 01660004로 설정."
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, fuzzy, no-wrap
#| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01620005 설정."
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정."
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정."
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (모바일) 의 AAPL,ig-platform-id로 01660000 설정."
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Intel HD4000 (Mobile) AAPL 를 위해 ig-platform-id를 0166000a로 설정."
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr "HDMi 컨트롤러 사용을 위한 HDAU Layout ID 설정."
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr "Intel Capri AAPL,ig-platform-id"
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr "Intel HD4000 을 위한 one AAPL,ig-platform-id 설정"
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr "IIntel Azul AAPL,ig-platform-id"
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, fuzzy, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
trunk/package/po/hr.po
77
88
99
10
10
1111
1212
1313
......
16061606
16071607
16081608
1609
1609
16101610
16111611
16121612
16131613
16141614
1615
1615
16161616
16171617
16181618
16191619
16201620
1621
1621
16221622
16231623
16241624
16251625
16261626
1627
1627
16281628
16291629
16301630
16311631
16321632
1633
1633
16341634
16351635
16361636
16371637
16381638
1639
1639
16401640
16411641
16421642
16431643
16441644
1645
1645
16461646
16471647
16481648
16491649
16501650
1651
1651
16521652
16531653
16541654
16551655
16561656
1657
1657
16581658
16591659
16601660
16611661
16621662
1663
1663
16641664
16651665
16661666
16671667
16681668
1669
1669
16701670
16711671
16721672
16731673
16741674
1675
1675
16761676
16771677
16781678
16791679
16801680
1681
1681
16821682
16831683
16841684
16851685
16861686
1687
1687
16881688
16891689
16901690
16911691
16921692
1693
1693
16941694
16951695
16961696
16971697
16981698
1699
1699
17001700
17011701
17021702
17031703
17041704
1705
1705
17061706
17071707
17081708
17091709
17101710
1711
1711
17121712
17131713
17141714
17151715
17161716
1717
1717
17181718
17191719
17201720
17211721
17221722
1723
1723
17241724
17251725
17261726
17271727
17281728
1729
1729
17301730
17311731
17321732
17331733
17341734
1735
1735
17361736
17371737
17381738
17391739
17401740
1741
1741
17421742
17431743
17441744
17451745
17461746
1747
1747
17481748
17491749
17501750
17511751
17521752
1753
1753
17541754
17551755
17561756
17571757
17581758
17591759
1760
1760
17611761
17621762
17631763
17641764
17651765
1766
1766
17671767
17681768
17691769
17701770
17711771
17721772
1773
1773
17741774
17751775
17761776
17771777
17781778
1779
1779
17801780
17811781
17821782
17831783
17841784
17851785
1786
1786
17871787
17881788
17891789
17901790
17911791
1792
1792
17931793
17941794
17951795
17961796
17971797
17981798
1799
1799
18001800
18011801
18021802
18031803
18041804
1805
1805
18061806
18071807
18081808
18091809
18101810
18111811
1812
1812
18131813
18141814
18151815
18161816
18171817
1818
1818
18191819
18201820
18211821
18221822
18231823
18241824
1825
1825
18261826
18271827
18281828
18291829
18301830
1831
1831
18321832
18331833
18341834
18351835
18361836
18371837
1838
1838
18391839
18401840
18411841
18421842
18431843
1844
1844
18451845
18461846
18471847
18481848
18491849
18501850
1851
1851
18521852
18531853
18541854
18551855
18561856
1857
1857
18581858
18591859
18601860
18611861
18621862
18631863
1864
1864
18651865
18661866
18671867
18681868
18691869
1870
1870
18711871
18721872
18731873
18741874
18751875
1876
1876
18771877
18781878
18791879
18801880
18811881
1882
1882
18831883
18841884
18851885
18861886
18871887
1888
1888
18891889
18901890
18911891
18921892
18931893
1894
1894
18951895
18961896
18971897
18981898
18991899
1900
1900
19011901
19021902
19031903
19041904
19051905
1906
1906
19071907
19081908
19091909
19101910
19111911
1912
1912
19131913
19141914
19151915
19161916
19171917
1918
1918
19191919
19201920
19211921
19221922
19231923
1924
1924
19251925
19261926
19271927
19281928
19291929
1930
1930
19311931
19321932
19331933
19341934
19351935
1936
1936
19371937
19381938
19391939
19401940
19411941
1942
1942
19431943
19441944
19451945
19461946
19471947
1948
1948
19491949
19501950
19511951
......
24652465
24662466
24672467
2468
2468
24692469
24702470
2471
2472
2471
2472
24732473
2474
2474
24752475
24762476
24772477
24782478
24792479
2480
2480
24812481
2482
2483
2484
2485
2482
2483
2484
24862485
2487
2486
24882487
24892488
24902489
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-05-11 16:58-0000\n"
"Last-Translator: Xpam.AmAdEuS <miljenkohalapir@outlook.com>\n"
"Language-Team: hr <hr@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/pl.po
77
88
99
10
10
1111
1212
1313
......
16101610
16111611
16121612
1613
1613
16141614
16151615
16161616
16171617
16181618
1619
1619
16201620
16211621
16221622
16231623
16241624
1625
1625
16261626
16271627
16281628
16291629
16301630
1631
1631
16321632
16331633
16341634
16351635
16361636
1637
1637
16381638
16391639
16401640
16411641
16421642
1643
1643
16441644
16451645
16461646
16471647
16481648
1649
1649
16501650
16511651
16521652
16531653
16541654
1655
1655
16561656
16571657
16581658
16591659
16601660
1661
1661
16621662
16631663
16641664
16651665
16661666
1667
1667
16681668
16691669
16701670
16711671
16721672
1673
1673
16741674
16751675
16761676
16771677
16781678
1679
1679
16801680
16811681
16821682
16831683
16841684
1685
1685
16861686
16871687
16881688
16891689
16901690
1691
1691
16921692
16931693
16941694
16951695
16961696
1697
1697
16981698
16991699
17001700
17011701
17021702
1703
1703
17041704
17051705
17061706
17071707
17081708
1709
1709
17101710
17111711
17121712
17131713
17141714
1715
1715
17161716
17171717
17181718
17191719
17201720
1721
1721
17221722
17231723
17241724
17251725
17261726
1727
1727
17281728
17291729
17301730
17311731
17321732
1733
1733
17341734
17351735
17361736
17371737
17381738
1739
1739
17401740
17411741
17421742
17431743
17441744
1745
1745
17461746
17471747
17481748
17491749
17501750
1751
1751
17521752
17531753
17541754
17551755
17561756
1757
1757
17581758
17591759
17601760
17611761
17621762
17631763
1764
1764
17651765
17661766
17671767
17681768
17691769
1770
1770
17711771
17721772
17731773
17741774
17751775
17761776
1777
1777
17781778
17791779
17801780
17811781
17821782
1783
1783
17841784
17851785
17861786
17871787
17881788
17891789
1790
1790
17911791
17921792
17931793
17941794
17951795
1796
1796
17971797
17981798
17991799
18001800
18011801
18021802
1803
1803
18041804
18051805
18061806
18071807
18081808
1809
1809
18101810
18111811
18121812
18131813
18141814
18151815
1816
1816
18171817
18181818
18191819
18201820
18211821
1822
1822
18231823
18241824
18251825
18261826
18271827
18281828
1829
1829
18301830
18311831
18321832
18331833
18341834
1835
1835
18361836
18371837
18381838
18391839
18401840
18411841
1842
1842
18431843
18441844
18451845
18461846
18471847
1848
1848
18491849
18501850
18511851
18521852
18531853
18541854
1855
1855
18561856
18571857
18581858
18591859
18601860
1861
1861
18621862
18631863
18641864
18651865
18661866
18671867
1868
1868
18691869
18701870
18711871
18721872
18731873
1874
1874
18751875
18761876
18771877
18781878
18791879
1880
1880
18811881
18821882
18831883
18841884
18851885
1886
1886
18871887
18881888
18891889
18901890
18911891
1892
1892
18931893
18941894
18951895
18961896
18971897
1898
1898
18991899
19001900
19011901
19021902
19031903
1904
1904
19051905
19061906
19071907
19081908
19091909
1910
1910
19111911
19121912
19131913
19141914
19151915
1916
1916
19171917
19181918
19191919
19201920
19211921
1922
1922
19231923
19241924
19251925
19261926
19271927
1928
1928
19291929
19301930
19311931
19321932
19331933
1934
1934
19351935
19361936
19371937
19381938
19391939
1940
1940
19411941
19421942
19431943
19441944
19451945
1946
1946
19471947
19481948
19491949
19501950
19511951
1952
1952
19531953
19541954
19551955
......
24692469
24702470
24712471
2472
2472
24732473
24742474
2475
2476
2475
2476
24772477
2478
2478
24792479
24802480
24812481
24822482
24832483
2484
2484
24852485
2486
2487
2488
2489
2486
2487
2488
24902489
2491
2490
24922491
24932492
24942493
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-05-11 17:11-0000\n"
"Last-Translator: oswaldini <oswaldinimtb@gmail.com>\n"
"Language-Team: pl <pl@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/it.po
66
77
88
9
10
9
10
1111
1212
1313
......
17231723
17241724
17251725
1726
1726
17271727
17281728
17291729
17301730
17311731
1732
1732
17331733
17341734
17351735
17361736
17371737
1738
1738
17391739
17401740
17411741
17421742
17431743
1744
1744
17451745
17461746
17471747
17481748
17491749
1750
1750
17511751
17521752
17531753
17541754
17551755
1756
1756
17571757
17581758
17591759
17601760
17611761
1762
1762
17631763
17641764
17651765
17661766
17671767
1768
1768
17691769
17701770
17711771
17721772
17731773
1774
1774
17751775
17761776
17771777
17781778
17791779
1780
1780
17811781
17821782
17831783
17841784
17851785
1786
1786
17871787
17881788
17891789
17901790
17911791
1792
1792
17931793
17941794
17951795
17961796
17971797
1798
1798
17991799
18001800
18011801
18021802
18031803
1804
1804
18051805
18061806
18071807
18081808
18091809
1810
1810
18111811
18121812
18131813
18141814
18151815
1816
1816
18171817
18181818
18191819
18201820
18211821
1822
1822
18231823
18241824
18251825
18261826
18271827
1828
1828
18291829
18301830
18311831
18321832
18331833
1834
1834
18351835
18361836
18371837
18381838
18391839
1840
1840
18411841
18421842
18431843
18441844
18451845
1846
1846
18471847
18481848
18491849
18501850
18511851
1852
1852
18531853
18541854
18551855
18561856
18571857
1858
1858
18591859
18601860
18611861
18621862
18631863
1864
1864
18651865
18661866
18671867
18681868
18691869
1870
1870
18711871
18721872
18731873
18741874
18751875
1876
1876
18771877
18781878
18791879
18801880
18811881
1882
1882
18831883
18841884
18851885
18861886
18871887
1888
1888
18891889
18901890
18911891
18921892
18931893
1894
1894
18951895
18961896
18971897
18981898
18991899
1900
1900
19011901
19021902
19031903
19041904
19051905
1906
1906
19071907
19081908
19091909
19101910
19111911
1912
1912
19131913
19141914
19151915
19161916
19171917
1918
1918
19191919
19201920
19211921
19221922
19231923
1924
1924
19251925
19261926
19271927
19281928
19291929
1930
1930
19311931
19321932
19331933
19341934
19351935
1936
1936
19371937
19381938
19391939
19401940
19411941
1942
1942
19431943
19441944
19451945
19461946
19471947
1948
1948
19491949
19501950
19511951
19521952
19531953
1954
1954
19551955
19561956
19571957
19581958
19591959
1960
1960
19611961
19621962
19631963
19641964
19651965
1966
1966
19671967
19681968
19691969
19701970
19711971
1972
1972
19731973
19741974
19751975
19761976
19771977
1978
1978
19791979
19801980
19811981
19821982
19831983
1984
1984
19851985
19861986
19871987
19881988
19891989
1990
1990
19911991
19921992
19931993
19941994
19951995
1996
1996
19971997
19981998
19991999
20002000
20012001
2002
2002
20032003
20042004
20052005
20062006
20072007
2008
2008
20092009
20102010
20112011
20122012
20132013
2014
2014
20152015
20162016
20172017
20182018
20192019
2020
2020
20212021
20222022
20232023
20242024
20252025
2026
2026
20272027
20282028
20292029
20302030
20312031
2032
2032
20332033
20342034
20352035
20362036
20372037
2038
2038
20392039
20402040
20412041
20422042
20432043
2044
2044
20452045
20462046
20472047
20482048
20492049
2050
2050
20512051
20522052
20532053
20542054
20552055
2056
2056
20572057
20582058
20592059
......
25812581
25822582
25832583
2584
2584
25852585
25862586
2587
2588
2587
2588
25892589
2590
2590
25912591
25922592
25932593
25942594
25952595
2596
2596
25972597
25982598
2599
2600
2599
2600
26012601
2602
2602
26032603
26042604
26052605
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"PO-Revision-Date: 2013-07-29 03:36-0000\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-08-28 15:46-0000\n"
"Last-Translator: \n"
"Language-Team: it <it@li.org>\n"
"Language: it\n"
"Setta l'HDAU layout-it a 1981:\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 01660000 per schede grafiche Intel HD4000 (Mobile)."
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 01660001 per schede grafiche Intel HD4000 (Mobile)."
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 01660002 per schede grafiche Intel HD4000 (Mobile)."
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 01660003 per schede grafiche Intel HD4000 (Mobile)."
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 01660004 per schede grafiche Intel HD4000 (Mobile)."
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 01620005 per schede grafiche Intel HD4000 (Desktop)."
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 01620006 per schede grafiche Intel HD4000 (Desktop)."
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 01620007 per schede grafiche Intel HD4000 (Desktop)."
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 01660008 per schede grafiche Intel HD4000 (Mobile)."
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 01660009 per schede grafiche Intel HD4000 (Mobile)."
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 0166000a per schede grafiche Intel HD4000 (Mobile)."
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Imposta l'AAPL,ig-platform-id a 0166000b per schede grafiche Intel HD4000 (Mobile)."
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr "00000604"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 00000604 per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr "0000060c"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0000060c per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr "00001604"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 00001604 per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr "0000160a"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0000160a per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr "0000160c"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0000160c per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr "00002604"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 00002604 per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr "0000260a"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0000260a per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr "0000260c"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0600260c per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr "0000260d"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0000260d per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr "02001604"
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 02001604 per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr "0300220d"
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0300220d per schede grafiche Intel HD5000 (Desktop)."
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr "0500260a"
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0500260a per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr "0600260a"
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0600260a per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr "0700260d"
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0700260d per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr "0800260a"
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Imposta l'AAPL,ig-platform-id a 0800260a per schede grafiche Intel HD5000 (Mobile)."
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr "08002e0a"
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr "Scegli un layout-id dell'HDAU da usare per il controller HDMi."
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr "Intel Capri AAPL,ig-platform-id"
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr "Scegli un AAPL,ig-platform-id da usare per la tua Intel HD 4000."
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgstr "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr "Intel Azul AAPL,ig-platform-id"
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/hu.po
77
88
99
10
10
1111
1212
1313
......
16121612
16131613
16141614
1615
1615
16161616
16171617
16181618
16191619
16201620
1621
1621
16221622
16231623
16241624
16251625
16261626
1627
1627
16281628
16291629
16301630
16311631
16321632
1633
1633
16341634
16351635
16361636
16371637
16381638
1639
1639
16401640
16411641
16421642
16431643
16441644
1645
1645
16461646
16471647
16481648
16491649
16501650
1651
1651
16521652
16531653
16541654
16551655
16561656
1657
1657
16581658
16591659
16601660
16611661
16621662
1663
1663
16641664
16651665
16661666
16671667
16681668
1669
1669
16701670
16711671
16721672
16731673
16741674
1675
1675
16761676
16771677
16781678
16791679
16801680
1681
1681
16821682
16831683
16841684
16851685
16861686
1687
1687
16881688
16891689
16901690
16911691
16921692
1693
1693
16941694
16951695
16961696
16971697
16981698
1699
1699
17001700
17011701
17021702
17031703
17041704
1705
1705
17061706
17071707
17081708
17091709
17101710
1711
1711
17121712
17131713
17141714
17151715
17161716
1717
1717
17181718
17191719
17201720
17211721
17221722
1723
1723
17241724
17251725
17261726
17271727
17281728
1729
1729
17301730
17311731
17321732
17331733
17341734
1735
1735
17361736
17371737
17381738
17391739
17401740
1741
1741
17421742
17431743
17441744
17451745
17461746
1747
1747
17481748
17491749
17501750
17511751
17521752
1753
1753
17541754
17551755
17561756
17571757
17581758
1759
1759
17601760
17611761
17621762
17631763
17641764
17651765
1766
1766
17671767
17681768
17691769
17701770
17711771
1772
1772
17731773
17741774
17751775
17761776
17771777
17781778
1779
1779
17801780
17811781
17821782
17831783
17841784
1785
1785
17861786
17871787
17881788
17891789
17901790
17911791
1792
1792
17931793
17941794
17951795
17961796
17971797
1798
1798
17991799
18001800
18011801
18021802
18031803
18041804
1805
1805
18061806
18071807
18081808
18091809
18101810
1811
1811
18121812
18131813
18141814
18151815
18161816
18171817
1818
1818
18191819
18201820
18211821
18221822
18231823
1824
1824
18251825
18261826
18271827
18281828
18291829
18301830
1831
1831
18321832
18331833
18341834
18351835
18361836
1837
1837
18381838
18391839
18401840
18411841
18421842
18431843
1844
1844
18451845
18461846
18471847
18481848
18491849
1850
1850
18511851
18521852
18531853
18541854
18551855
18561856
1857
1857
18581858
18591859
18601860
18611861
18621862
1863
1863
18641864
18651865
18661866
18671867
18681868
18691869
1870
1870
18711871
18721872
18731873
18741874
18751875
1876
1876
18771877
18781878
18791879
18801880
18811881
1882
1882
18831883
18841884
18851885
18861886
18871887
1888
1888
18891889
18901890
18911891
18921892
18931893
1894
1894
18951895
18961896
18971897
18981898
18991899
1900
1900
19011901
19021902
19031903
19041904
19051905
1906
1906
19071907
19081908
19091909
19101910
19111911
1912
1912
19131913
19141914
19151915
19161916
19171917
1918
1918
19191919
19201920
19211921
19221922
19231923
1924
1924
19251925
19261926
19271927
19281928
19291929
1930
1930
19311931
19321932
19331933
19341934
19351935
1936
1936
19371937
19381938
19391939
19401940
19411941
1942
1942
19431943
19441944
19451945
19461946
19471947
1948
1948
19491949
19501950
19511951
19521952
19531953
1954
1954
19551955
19561956
19571957
......
24722472
24732473
24742474
2475
2475
24762476
24772477
2478
2479
2478
2479
24802480
2481
2481
24822482
24832483
24842484
24852485
24862486
2487
2487
24882488
2489
2490
2491
2492
2489
2490
2491
24932492
2494
2493
24952494
24962495
24972496
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2012-04-11 02:08-0000\n"
"Last-Translator: ErmaC\n"
"Language-Team: hu <hu@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/chameleon.pot
66
77
88
9
10
9
10
1111
1212
1313
......
15781578
15791579
15801580
1581
1581
15821582
15831583
15841584
15851585
15861586
1587
1587
15881588
15891589
15901590
15911591
15921592
1593
1593
15941594
15951595
15961596
15971597
15981598
1599
1599
16001600
16011601
16021602
16031603
16041604
1605
1605
16061606
16071607
16081608
16091609
16101610
1611
1611
16121612
16131613
16141614
16151615
16161616
1617
1617
16181618
16191619
16201620
16211621
16221622
1623
1623
16241624
16251625
16261626
16271627
16281628
1629
1629
16301630
16311631
16321632
16331633
16341634
1635
1635
16361636
16371637
16381638
16391639
16401640
1641
1641
16421642
16431643
16441644
16451645
16461646
1647
1647
16481648
16491649
16501650
16511651
16521652
1653
1653
16541654
16551655
16561656
16571657
16581658
1659
1659
16601660
16611661
16621662
16631663
16641664
1665
1665
16661666
16671667
16681668
16691669
16701670
1671
1671
16721672
16731673
16741674
16751675
16761676
1677
1677
16781678
16791679
16801680
16811681
16821682
1683
1683
16841684
16851685
16861686
16871687
16881688
1689
1689
16901690
16911691
16921692
16931693
16941694
1695
1695
16961696
16971697
16981698
16991699
17001700
1701
1701
17021702
17031703
17041704
17051705
17061706
1707
1707
17081708
17091709
17101710
17111711
17121712
1713
1713
17141714
17151715
17161716
17171717
17181718
1719
1719
17201720
17211721
17221722
17231723
17241724
1725
1725
17261726
17271727
17281728
17291729
17301730
1731
1731
17321732
17331733
17341734
17351735
17361736
1737
1737
17381738
17391739
17401740
17411741
17421742
1743
1743
17441744
17451745
17461746
17471747
17481748
1749
1749
17501750
17511751
17521752
17531753
17541754
1755
1755
17561756
17571757
17581758
17591759
17601760
1761
1761
17621762
17631763
17641764
17651765
17661766
1767
1767
17681768
17691769
17701770
17711771
17721772
1773
1773
17741774
17751775
17761776
17771777
17781778
1779
1779
17801780
17811781
17821782
17831783
17841784
1785
1785
17861786
17871787
17881788
17891789
17901790
1791
1791
17921792
17931793
17941794
17951795
17961796
1797
1797
17981798
17991799
18001800
18011801
18021802
1803
1803
18041804
18051805
18061806
18071807
18081808
1809
1809
18101810
18111811
18121812
18131813
18141814
1815
1815
18161816
18171817
18181818
18191819
18201820
1821
1821
18221822
18231823
18241824
18251825
18261826
1827
1827
18281828
18291829
18301830
18311831
18321832
1833
1833
18341834
18351835
18361836
18371837
18381838
1839
1839
18401840
18411841
18421842
18431843
18441844
1845
1845
18461846
18471847
18481848
18491849
18501850
1851
1851
18521852
18531853
18541854
18551855
18561856
1857
1857
18581858
18591859
18601860
18611861
18621862
1863
1863
18641864
18651865
18661866
18671867
18681868
1869
1869
18701870
18711871
18721872
18731873
18741874
1875
1875
18761876
18771877
18781878
18791879
18801880
1881
1881
18821882
18831883
18841884
18851885
18861886
1887
1887
18881888
18891889
18901890
18911891
18921892
1893
1893
18941894
18951895
18961896
18971897
18981898
1899
1899
19001900
19011901
19021902
19031903
19041904
1905
1905
19061906
19071907
19081908
19091909
19101910
1911
1911
19121912
19131913
19141914
......
24462446
24472447
24482448
2449
2449
24502450
24512451
2452
2452
24532453
24542454
2455
2455
24562456
24572457
24582458
24592459
24602460
2461
2461
24622462
24632463
2464
2464
24652465
24662466
2467
2467
24682468
24692469
24702470
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Chameleon 2.2svn-r2255\n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"Project-Id-Version: Chameleon 2.2svn-r2258\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr ""
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr ""
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr ""
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr ""
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr ""
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr ""
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr ""
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr ""
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr ""
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr ""
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr ""
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr ""
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr ""
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr ""
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr ""
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr ""
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr ""
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr ""
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr ""
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr ""
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr ""
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/ro.po
77
88
99
10
10
1111
1212
1313
......
16011601
16021602
16031603
1604
1604
16051605
16061606
16071607
16081608
16091609
1610
1610
16111611
16121612
16131613
16141614
16151615
1616
1616
16171617
16181618
16191619
16201620
16211621
1622
1622
16231623
16241624
16251625
16261626
16271627
1628
1628
16291629
16301630
16311631
16321632
16331633
1634
1634
16351635
16361636
16371637
16381638
16391639
1640
1640
16411641
16421642
16431643
16441644
16451645
1646
1646
16471647
16481648
16491649
16501650
16511651
1652
1652
16531653
16541654
16551655
16561656
16571657
1658
1658
16591659
16601660
16611661
16621662
16631663
1664
1664
16651665
16661666
16671667
16681668
16691669
1670
1670
16711671
16721672
16731673
16741674
16751675
1676
1676
16771677
16781678
16791679
16801680
16811681
1682
1682
16831683
16841684
16851685
16861686
16871687
1688
1688
16891689
16901690
16911691
16921692
16931693
1694
1694
16951695
16961696
16971697
16981698
16991699
1700
1700
17011701
17021702
17031703
17041704
17051705
1706
1706
17071707
17081708
17091709
17101710
17111711
1712
1712
17131713
17141714
17151715
17161716
17171717
1718
1718
17191719
17201720
17211721
17221722
17231723
1724
1724
17251725
17261726
17271727
17281728
17291729
1730
1730
17311731
17321732
17331733
17341734
17351735
1736
1736
17371737
17381738
17391739
17401740
17411741
1742
1742
17431743
17441744
17451745
17461746
17471747
1748
1748
17491749
17501750
17511751
17521752
17531753
17541754
1755
1755
17561756
17571757
17581758
17591759
17601760
1761
1761
17621762
17631763
17641764
17651765
17661766
17671767
1768
1768
17691769
17701770
17711771
17721772
17731773
1774
1774
17751775
17761776
17771777
17781778
17791779
17801780
1781
1781
17821782
17831783
17841784
17851785
17861786
1787
1787
17881788
17891789
17901790
17911791
17921792
17931793
1794
1794
17951795
17961796
17971797
17981798
17991799
1800
1800
18011801
18021802
18031803
18041804
18051805
18061806
1807
1807
18081808
18091809
18101810
18111811
18121812
1813
1813
18141814
18151815
18161816
18171817
18181818
18191819
1820
1820
18211821
18221822
18231823
18241824
18251825
1826
1826
18271827
18281828
18291829
18301830
18311831
18321832
1833
1833
18341834
18351835
18361836
18371837
18381838
1839
1839
18401840
18411841
18421842
18431843
18441844
18451845
1846
1846
18471847
18481848
18491849
18501850
18511851
1852
1852
18531853
18541854
18551855
18561856
18571857
18581858
1859
1859
18601860
18611861
18621862
18631863
18641864
1865
1865
18661866
18671867
18681868
18691869
18701870
1871
1871
18721872
18731873
18741874
18751875
18761876
1877
1877
18781878
18791879
18801880
18811881
18821882
1883
1883
18841884
18851885
18861886
18871887
18881888
1889
1889
18901890
18911891
18921892
18931893
18941894
1895
1895
18961896
18971897
18981898
18991899
19001900
1901
1901
19021902
19031903
19041904
19051905
19061906
1907
1907
19081908
19091909
19101910
19111911
19121912
1913
1913
19141914
19151915
19161916
19171917
19181918
1919
1919
19201920
19211921
19221922
19231923
19241924
1925
1925
19261926
19271927
19281928
19291929
19301930
1931
1931
19321932
19331933
19341934
19351935
19361936
1937
1937
19381938
19391939
19401940
19411941
19421942
1943
1943
19441944
19451945
19461946
......
24592459
24602460
24612461
2462
2462
24632463
24642464
2465
2466
2465
2466
24672467
2468
2468
24692469
24702470
24712471
24722472
24732473
2474
2474
24752475
2476
2477
2478
2479
2476
2477
2478
24802479
2481
2480
24822481
24832482
24842483
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-05-11 16:09-0000\n"
"Last-Translator: ErmaC\n"
"Language-Team: ro <ro@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/ca.po
77
88
99
10
10
1111
1212
1313
......
16061606
16071607
16081608
1609
1609
16101610
16111611
16121612
16131613
16141614
1615
1615
16161616
16171617
16181618
16191619
16201620
1621
1621
16221622
16231623
16241624
16251625
16261626
1627
1627
16281628
16291629
16301630
16311631
16321632
1633
1633
16341634
16351635
16361636
16371637
16381638
1639
1639
16401640
16411641
16421642
16431643
16441644
1645
1645
16461646
16471647
16481648
16491649
16501650
1651
1651
16521652
16531653
16541654
16551655
16561656
1657
1657
16581658
16591659
16601660
16611661
16621662
1663
1663
16641664
16651665
16661666
16671667
16681668
1669
1669
16701670
16711671
16721672
16731673
16741674
1675
1675
16761676
16771677
16781678
16791679
16801680
1681
1681
16821682
16831683
16841684
16851685
16861686
1687
1687
16881688
16891689
16901690
16911691
16921692
1693
1693
16941694
16951695
16961696
16971697
16981698
1699
1699
17001700
17011701
17021702
17031703
17041704
1705
1705
17061706
17071707
17081708
17091709
17101710
1711
1711
17121712
17131713
17141714
17151715
17161716
1717
1717
17181718
17191719
17201720
17211721
17221722
1723
1723
17241724
17251725
17261726
17271727
17281728
1729
1729
17301730
17311731
17321732
17331733
17341734
1735
1735
17361736
17371737
17381738
17391739
17401740
1741
1741
17421742
17431743
17441744
17451745
17461746
1747
1747
17481748
17491749
17501750
17511751
17521752
1753
1753
17541754
17551755
17561756
17571757
17581758
17591759
1760
1760
17611761
17621762
17631763
17641764
17651765
1766
1766
17671767
17681768
17691769
17701770
17711771
17721772
1773
1773
17741774
17751775
17761776
17771777
17781778
1779
1779
17801780
17811781
17821782
17831783
17841784
17851785
1786
1786
17871787
17881788
17891789
17901790
17911791
1792
1792
17931793
17941794
17951795
17961796
17971797
17981798
1799
1799
18001800
18011801
18021802
18031803
18041804
1805
1805
18061806
18071807
18081808
18091809
18101810
18111811
1812
1812
18131813
18141814
18151815
18161816
18171817
1818
1818
18191819
18201820
18211821
18221822
18231823
18241824
1825
1825
18261826
18271827
18281828
18291829
18301830
1831
1831
18321832
18331833
18341834
18351835
18361836
18371837
1838
1838
18391839
18401840
18411841
18421842
18431843
1844
1844
18451845
18461846
18471847
18481848
18491849
18501850
1851
1851
18521852
18531853
18541854
18551855
18561856
1857
1857
18581858
18591859
18601860
18611861
18621862
18631863
1864
1864
18651865
18661866
18671867
18681868
18691869
1870
1870
18711871
18721872
18731873
18741874
18751875
1876
1876
18771877
18781878
18791879
18801880
18811881
1882
1882
18831883
18841884
18851885
18861886
18871887
1888
1888
18891889
18901890
18911891
18921892
18931893
1894
1894
18951895
18961896
18971897
18981898
18991899
1900
1900
19011901
19021902
19031903
19041904
19051905
1906
1906
19071907
19081908
19091909
19101910
19111911
1912
1912
19131913
19141914
19151915
19161916
19171917
1918
1918
19191919
19201920
19211921
19221922
19231923
1924
1924
19251925
19261926
19271927
19281928
19291929
1930
1930
19311931
19321932
19331933
19341934
19351935
1936
1936
19371937
19381938
19391939
19401940
19411941
1942
1942
19431943
19441944
19451945
19461946
19471947
1948
1948
19491949
19501950
19511951
......
24642464
24652465
24662466
2467
2467
24682468
24692469
2470
2471
2470
2471
24722472
2473
2473
24742474
24752475
24762476
24772477
24782478
2479
2479
24802480
2481
2482
2483
2484
2481
2482
2483
24852484
2486
2485
24872486
24882487
24892488
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-05-11 17:17-0000\n"
"Last-Translator: ErmaC\n"
"Language-Team: ca <ca@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/pt.po
77
88
99
10
11
12
10
11
12
1313
1414
1515
1616
1717
18
1918
20
19
2120
2221
2322
......
17251724
17261725
17271726
1728
1727
17291728
17301729
17311730
17321731
17331732
1734
1733
17351734
17361735
17371736
17381737
17391738
1740
1739
17411740
17421741
17431742
17441743
17451744
1746
1745
17471746
17481747
17491748
17501749
17511750
1752
1751
17531752
17541753
17551754
17561755
17571756
1758
1757
17591758
17601759
17611760
17621761
17631762
1764
1763
17651764
17661765
17671766
17681767
17691768
1770
1769
17711770
17721771
17731772
17741773
17751774
1776
1775
17771776
17781777
17791778
17801779
17811780
1782
1781
17831782
17841783
17851784
17861785
17871786
1788
1787
17891788
17901789
17911790
17921791
17931792
1794
1793
17951794
17961795
17971796
17981797
17991798
1800
1799
18011800
18021801
18031802
18041803
18051804
1806
1805
18071806
18081807
18091808
18101809
18111810
1812
1811
18131812
18141813
18151814
18161815
18171816
1818
1817
18191818
18201819
18211820
18221821
18231822
1824
1823
18251824
18261825
18271826
18281827
18291828
1830
1829
18311830
18321831
18331832
18341833
18351834
1836
1835
18371836
18381837
18391838
18401839
18411840
1842
1841
18431842
18441843
18451844
18461845
18471846
1848
1847
18491848
18501849
18511850
18521851
18531852
1854
1853
18551854
18561855
18571856
18581857
18591858
1860
1859
18611860
18621861
18631862
18641863
18651864
1866
1865
18671866
18681867
18691868
18701869
18711870
1872
1871
18731872
18741873
18751874
18761875
18771876
1878
1877
18791878
1880
1879
18811880
18821881
1883
1882
18841883
1885
1884
18861885
18871886
18881887
18891888
18901889
1891
1890
18921891
1893
1892
18941893
18951894
1896
1895
18971896
1898
1897
18991898
19001899
19011900
19021901
19031902
1904
1903
19051904
1906
1905
19071906
19081907
1909
1908
19101909
1911
1910
19121911
19131912
19141913
19151914
19161915
1917
1916
19181917
1919
1918
19201919
19211920
1922
1921
19231922
1924
1923
19251924
19261925
19271926
19281927
19291928
1930
1929
19311930
1932
1931
19331932
19341933
1935
1934
19361935
1937
1936
19381937
19391938
19401939
19411940
19421941
1943
1942
19441943
1945
1944
19461945
19471946
1948
1947
19491948
1950
1949
19511950
19521951
19531952
19541953
19551954
1956
1955
19571956
1958
1957
19591958
19601959
1961
1960
19621961
1963
1962
19641963
19651964
19661965
19671966
19681967
1969
1968
19701969
1971
1970
19721971
19731972
1974
1973
19751974
1976
1975
19771976
19781977
19791978
19801979
19811980
1982
1981
19831982
1984
1983
19851984
19861985
1987
1986
19881987
1989
1988
19901989
19911990
19921991
19931992
19941993
1995
1994
19961995
1997
1996
19981997
19991998
2000
1999
20012000
2002
2001
20032002
20042003
20052004
20062005
20072006
2008
2007
20092008
2010
2009
20112010
20122011
2013
2012
20142013
2015
2014
20162015
20172016
20182017
20192018
20202019
2021
2020
20222021
2023
2022
20242023
20252024
2026
2025
20272026
2028
2027
20292028
20302029
20312030
20322031
20332032
2034
2033
20352034
2036
2035
20372036
20382037
2039
2038
20402039
2041
2040
20422041
20432042
20442043
20452044
20462045
2047
2046
20482047
2049
2048
20502049
20512050
2052
2051
20532052
2054
2053
20552054
20562055
20572056
20582057
20592058
2060
2059
20612060
2062
2061
20632062
20642063
2065
2064
20662065
2067
2066
20682067
20692068
20702069
20712070
20722071
2073
2072
20742073
2075
2074
20762075
20772076
2078
2077
20792078
20802079
20812080
......
25992598
26002599
26012600
2602
2601
26032602
26042603
2605
2606
2604
2605
26072606
2608
2607
26092608
26102609
26112610
26122611
26132612
2614
2613
26152614
26162615
2617
2618
2616
2617
26192618
2620
2619
26212620
26222621
26232622
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"PO-Revision-Date: 2013-08-03 20:03+0000\n"
"Last-Translator: artur_pt <artursimoes.pt@gmail.com>\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-07-29 03:44-0000\n"
"Last-Translator: \n"
"Language-Team: pt-PT <pt-PT@li.org>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.5.0-rc1\n"
"X-POOTLE-MTIME: 1375560206.0\n"
"X-POOTLE-MTIME: 1369572030.0\n"
#. type: Content of: <html><body><div><p>
#: Resources/templates/Welcome.html:22
"Injeta HDAU layout-it para 1981:\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Injeta 01660001 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Injeta 01660002 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Injeta 01660003 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "injeta 01620005 para Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Injeta 01620006 para Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Injeta 01620007 para Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Injeta 01660008 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Injeta 01660009 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Injeta 0166000b para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr "00000604"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 00000604 para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr "0000060c"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0000060c para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr "00001604"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 00001604 para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr "0000160a"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0000160a para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr "0000160c"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0000160c para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr "00002604"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 00002604 para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr "0000260a"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0000260a para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr "0000260c"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0600260c para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr "0000260d"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0000260d para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr "02001604"
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 02001604 para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr "0300220d"
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr "Injeta 0300220d para Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr "injeta 01620005 para Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr "0500260a"
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0500260a para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr "0600260a"
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0600260a para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr "0700260d"
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0700260d para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr "0800260a"
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0800260a para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr "08002e0a"
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 08002e0a para Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "AD2000B_PinConf_title"
#: Resources/templates/Localizable.strings:530
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr "Injeta um HDAU Layout ID para usar com seu controlador HDMi."
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr "Intel Capri AAPL,ig-platform-id"
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr "Injeta um HDAU Layout ID para usar na sua Intel HD4000."
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgstr "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr "Intel Azul AAPL,ig-platform-id"
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/pt-BR.po
77
88
99
10
10
1111
1212
1313
......
17241724
17251725
17261726
1727
1727
17281728
17291729
17301730
17311731
17321732
1733
1733
17341734
17351735
17361736
17371737
17381738
1739
1739
17401740
17411741
17421742
17431743
17441744
1745
1745
17461746
17471747
17481748
17491749
17501750
1751
1751
17521752
17531753
17541754
17551755
17561756
1757
1757
17581758
17591759
17601760
17611761
17621762
1763
1763
17641764
17651765
17661766
17671767
17681768
1769
1769
17701770
17711771
17721772
17731773
17741774
1775
1775
17761776
17771777
17781778
17791779
17801780
1781
1781
17821782
17831783
17841784
17851785
17861786
1787
1787
17881788
17891789
17901790
17911791
17921792
1793
1793
17941794
17951795
17961796
17971797
17981798
1799
1799
18001800
18011801
18021802
18031803
18041804
1805
1805
18061806
18071807
18081808
18091809
18101810
1811
1811
18121812
18131813
18141814
18151815
18161816
1817
1817
18181818
18191819
18201820
18211821
18221822
1823
1823
18241824
18251825
18261826
18271827
18281828
1829
1829
18301830
18311831
18321832
18331833
18341834
1835
1835
18361836
18371837
18381838
18391839
18401840
1841
1841
18421842
18431843
18441844
18451845
18461846
1847
1847
18481848
18491849
18501850
18511851
18521852
1853
1853
18541854
18551855
18561856
18571857
18581858
1859
1859
18601860
18611861
18621862
18631863
18641864
1865
1865
18661866
18671867
18681868
18691869
18701870
1871
1871
18721872
18731873
18741874
18751875
18761876
1877
1877
18781878
18791879
18801880
18811881
18821882
1883
1883
18841884
18851885
18861886
18871887
18881888
1889
1889
18901890
18911891
18921892
18931893
18941894
1895
1895
18961896
18971897
18981898
18991899
19001900
1901
1901
19021902
19031903
19041904
19051905
19061906
1907
1907
19081908
19091909
19101910
19111911
19121912
1913
1913
19141914
19151915
19161916
19171917
19181918
1919
1919
19201920
19211921
19221922
19231923
19241924
1925
1925
19261926
19271927
19281928
19291929
19301930
1931
1931
19321932
19331933
19341934
19351935
19361936
1937
1937
19381938
19391939
19401940
19411941
19421942
1943
1943
19441944
19451945
19461946
19471947
19481948
1949
1949
19501950
19511951
19521952
19531953
19541954
1955
1955
19561956
19571957
19581958
19591959
19601960
1961
1961
19621962
19631963
19641964
19651965
19661966
1967
1967
19681968
19691969
19701970
19711971
19721972
1973
1973
19741974
19751975
19761976
19771977
19781978
1979
1979
19801980
19811981
19821982
19831983
19841984
1985
1985
19861986
19871987
19881988
19891989
19901990
1991
1991
19921992
19931993
19941994
19951995
19961996
1997
1997
19981998
19991999
20002000
20012001
20022002
2003
2003
20042004
20052005
20062006
20072007
20082008
2009
2009
20102010
20112011
20122012
20132013
20142014
2015
2015
20162016
20172017
20182018
20192019
20202020
2021
2021
20222022
20232023
20242024
20252025
20262026
2027
2027
20282028
20292029
20302030
20312031
20322032
2033
2033
20342034
20352035
20362036
20372037
20382038
2039
2039
20402040
20412041
20422042
20432043
20442044
2045
2045
20462046
20472047
20482048
20492049
20502050
2051
2051
20522052
20532053
20542054
20552055
20562056
2057
2057
20582058
20592059
20602060
......
25822582
25832583
25842584
2585
2585
25862586
25872587
2588
2589
2588
2589
25902590
2591
2591
25922592
25932593
25942594
25952595
25962596
2597
2597
25982598
25992599
2600
2601
2600
2601
26022602
2603
2603
26042604
26052605
26062606
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-07-29 03:42-0000\n"
"Last-Translator: \n"
"Language-Team: pt-BR <pt-BR@li.org>\n"
"Define HDAU layout-it para 1981:\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Define 01660000 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Define 01660001 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Define 01660002 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Define 01660003 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Define 01660004 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Define 01620005 para Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Define 01620006 para Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Define 01620007 para Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Define 01660008 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Define 01660009 para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Define 0166000a para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Define 0166000b para Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr "00000604"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 00000604 para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr "0000060c"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 0000060c para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr "00001604"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 00001604 para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr "0000160a"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 0000160a para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr "0000160c"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 0000160c para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr "00002604"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 00002604 para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr "0000260a"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 0000260a para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr "0000260c"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 0600260c para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr "0000260d"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 0000260d para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr "02001604"
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 02001604 para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr "0300220d"
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr "Define 0300220d para Intel HD5000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr "0500260a"
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 0500260a para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr "0600260a"
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 0600260a para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr "0700260d"
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 0700260d para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr "0800260a"
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Define 0800260a para Intel HD5000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr "08002e0a"
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr "Definir um ID do layout HDAU para usar com sua cotroladora HDMI."
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr "Intel Capri AAPL,ig-platform-id"
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr "Definir um AAPL,ig-platform-id para usar em sua Intel HD4000."
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgstr "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr "Intel Azul AAPL,ig-platform-id"
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/sr.po
77
88
99
10
10
1111
1212
1313
......
16031603
16041604
16051605
1606
1606
16071607
16081608
16091609
16101610
16111611
1612
1612
16131613
16141614
16151615
16161616
16171617
1618
1618
16191619
16201620
16211621
16221622
16231623
1624
1624
16251625
16261626
16271627
16281628
16291629
1630
1630
16311631
16321632
16331633
16341634
16351635
1636
1636
16371637
16381638
16391639
16401640
16411641
1642
1642
16431643
16441644
16451645
16461646
16471647
1648
1648
16491649
16501650
16511651
16521652
16531653
1654
1654
16551655
16561656
16571657
16581658
16591659
1660
1660
16611661
16621662
16631663
16641664
16651665
1666
1666
16671667
16681668
16691669
16701670
16711671
1672
1672
16731673
16741674
16751675
16761676
16771677
1678
1678
16791679
16801680
16811681
16821682
16831683
1684
1684
16851685
16861686
16871687
16881688
16891689
1690
1690
16911691
16921692
16931693
16941694
16951695
1696
1696
16971697
16981698
16991699
17001700
17011701
1702
1702
17031703
17041704
17051705
17061706
17071707
1708
1708
17091709
17101710
17111711
17121712
17131713
1714
1714
17151715
17161716
17171717
17181718
17191719
1720
1720
17211721
17221722
17231723
17241724
17251725
1726
1726
17271727
17281728
17291729
17301730
17311731
1732
1732
17331733
17341734
17351735
17361736
17371737
1738
1738
17391739
17401740
17411741
17421742
17431743
1744
1744
17451745
17461746
17471747
17481748
17491749
1750
1750
17511751
17521752
17531753
17541754
17551755
17561756
1757
1757
17581758
17591759
17601760
17611761
17621762
1763
1763
17641764
17651765
17661766
17671767
17681768
17691769
1770
1770
17711771
17721772
17731773
17741774
17751775
1776
1776
17771777
17781778
17791779
17801780
17811781
17821782
1783
1783
17841784
17851785
17861786
17871787
17881788
1789
1789
17901790
17911791
17921792
17931793
17941794
17951795
1796
1796
17971797
17981798
17991799
18001800
18011801
1802
1802
18031803
18041804
18051805
18061806
18071807
18081808
1809
1809
18101810
18111811
18121812
18131813
18141814
1815
1815
18161816
18171817
18181818
18191819
18201820
18211821
1822
1822
18231823
18241824
18251825
18261826
18271827
1828
1828
18291829
18301830
18311831
18321832
18331833
18341834
1835
1835
18361836
18371837
18381838
18391839
18401840
1841
1841
18421842
18431843
18441844
18451845
18461846
18471847
1848
1848
18491849
18501850
18511851
18521852
18531853
1854
1854
18551855
18561856
18571857
18581858
18591859
18601860
1861
1861
18621862
18631863
18641864
18651865
18661866
1867
1867
18681868
18691869
18701870
18711871
18721872
1873
1873
18741874
18751875
18761876
18771877
18781878
1879
1879
18801880
18811881
18821882
18831883
18841884
1885
1885
18861886
18871887
18881888
18891889
18901890
1891
1891
18921892
18931893
18941894
18951895
18961896
1897
1897
18981898
18991899
19001900
19011901
19021902
1903
1903
19041904
19051905
19061906
19071907
19081908
1909
1909
19101910
19111911
19121912
19131913
19141914
1915
1915
19161916
19171917
19181918
19191919
19201920
1921
1921
19221922
19231923
19241924
19251925
19261926
1927
1927
19281928
19291929
19301930
19311931
19321932
1933
1933
19341934
19351935
19361936
19371937
19381938
1939
1939
19401940
19411941
19421942
19431943
19441944
1945
1945
19461946
19471947
19481948
......
24612461
24622462
24632463
2464
2464
24652465
24662466
2467
2468
2467
2468
24692469
2470
2470
24712471
24722472
24732473
24742474
24752475
2476
2476
24772477
2478
2479
2480
2481
2478
2479
2480
24822481
2483
2482
24842483
24852484
24862485
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-05-11 16:00-0000\n"
"Last-Translator: ErmaC\n"
"Language-Team: sr <sr@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/fa.po
66
77
88
9
9
1010
1111
1212
......
15941594
15951595
15961596
1597
1597
15981598
15991599
16001600
16011601
16021602
1603
1603
16041604
16051605
16061606
16071607
16081608
1609
1609
16101610
16111611
16121612
16131613
16141614
1615
1615
16161616
16171617
16181618
16191619
16201620
1621
1621
16221622
16231623
16241624
16251625
16261626
1627
1627
16281628
16291629
16301630
16311631
16321632
1633
1633
16341634
16351635
16361636
16371637
16381638
1639
1639
16401640
16411641
16421642
16431643
16441644
1645
1645
16461646
16471647
16481648
16491649
16501650
1651
1651
16521652
16531653
16541654
16551655
16561656
1657
1657
16581658
16591659
16601660
16611661
16621662
1663
1663
16641664
16651665
16661666
16671667
16681668
1669
1669
16701670
16711671
16721672
16731673
16741674
1675
1675
16761676
16771677
16781678
16791679
16801680
1681
1681
16821682
16831683
16841684
16851685
16861686
1687
1687
16881688
16891689
16901690
16911691
16921692
1693
1693
16941694
16951695
16961696
16971697
16981698
1699
1699
17001700
17011701
17021702
17031703
17041704
1705
1705
17061706
17071707
17081708
17091709
17101710
1711
1711
17121712
17131713
17141714
17151715
17161716
1717
1717
17181718
17191719
17201720
17211721
17221722
1723
1723
17241724
17251725
17261726
17271727
17281728
1729
1729
17301730
17311731
17321732
17331733
17341734
1735
1735
17361736
17371737
17381738
17391739
17401740
1741
1741
17421742
17431743
17441744
17451745
17461746
1747
1747
17481748
17491749
17501750
17511751
17521752
1753
1753
17541754
17551755
17561756
17571757
17581758
1759
1759
17601760
17611761
17621762
17631763
17641764
1765
1765
17661766
17671767
17681768
17691769
17701770
1771
1771
17721772
17731773
17741774
17751775
17761776
1777
1777
17781778
17791779
17801780
17811781
17821782
1783
1783
17841784
17851785
17861786
17871787
17881788
1789
1789
17901790
17911791
17921792
17931793
17941794
1795
1795
17961796
17971797
17981798
17991799
18001800
1801
1801
18021802
18031803
18041804
18051805
18061806
1807
1807
18081808
18091809
18101810
18111811
18121812
1813
1813
18141814
18151815
18161816
18171817
18181818
1819
1819
18201820
18211821
18221822
18231823
18241824
1825
1825
18261826
18271827
18281828
18291829
18301830
1831
1831
18321832
18331833
18341834
18351835
18361836
1837
1837
18381838
18391839
18401840
18411841
18421842
1843
1843
18441844
18451845
18461846
18471847
18481848
1849
1849
18501850
18511851
18521852
18531853
18541854
1855
1855
18561856
18571857
18581858
18591859
18601860
1861
1861
18621862
18631863
18641864
18651865
18661866
1867
1867
18681868
18691869
18701870
18711871
18721872
1873
1873
18741874
18751875
18761876
18771877
18781878
1879
1879
18801880
18811881
18821882
18831883
18841884
1885
1885
18861886
18871887
18881888
18891889
18901890
1891
1891
18921892
18931893
18941894
18951895
18961896
1897
1897
18981898
18991899
19001900
19011901
19021902
1903
1903
19041904
19051905
19061906
19071907
19081908
1909
1909
19101910
19111911
19121912
19131913
19141914
1915
1915
19161916
19171917
19181918
19191919
19201920
1921
1921
19221922
19231923
19241924
19251925
19261926
1927
1927
19281928
19291929
19301930
......
24432443
24442444
24452445
2446
2446
24472447
24482448
2449
2449
24502450
24512451
2452
2452
24532453
24542454
24552455
24562456
24572457
2458
2458
24592459
24602460
2461
2461
24622462
24632463
2464
2464
24652465
24662466
24672467
msgid ""
msgstr ""
"Project-Id-Version: Chameleon 2.1svn-r1870\n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-05-11 13:32+0000\n"
"Last-Translator: minlite <miromarkarian@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr ""
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr ""
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr ""
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr ""
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr ""
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr ""
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr ""
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr ""
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr ""
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr ""
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr ""
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr ""
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr ""
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr ""
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr ""
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr ""
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr ""
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr ""
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr ""
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr ""
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr ""
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/ru.po
77
88
99
10
10
1111
1212
1313
......
16051605
16061606
16071607
1608
1608
16091609
16101610
16111611
16121612
16131613
1614
1614
16151615
16161616
16171617
16181618
16191619
1620
1620
16211621
16221622
16231623
16241624
16251625
1626
1626
16271627
16281628
16291629
16301630
16311631
1632
1632
16331633
16341634
16351635
16361636
16371637
1638
1638
16391639
16401640
16411641
16421642
16431643
1644
1644
16451645
16461646
16471647
16481648
16491649
1650
1650
16511651
16521652
16531653
16541654
16551655
1656
1656
16571657
16581658
16591659
16601660
16611661
1662
1662
16631663
16641664
16651665
16661666
16671667
1668
1668
16691669
16701670
16711671
16721672
16731673
1674
1674
16751675
16761676
16771677
16781678
16791679
1680
1680
16811681
16821682
16831683
16841684
16851685
1686
1686
16871687
16881688
16891689
16901690
16911691
1692
1692
16931693
16941694
16951695
16961696
16971697
1698
1698
16991699
17001700
17011701
17021702
17031703
1704
1704
17051705
17061706
17071707
17081708
17091709
1710
1710
17111711
17121712
17131713
17141714
17151715
1716
1716
17171717
17181718
17191719
17201720
17211721
1722
1722
17231723
17241724
17251725
17261726
17271727
1728
1728
17291729
17301730
17311731
17321732
17331733
1734
1734
17351735
17361736
17371737
17381738
17391739
1740
1740
17411741
17421742
17431743
17441744
17451745
1746
1746
17471747
17481748
17491749
17501750
17511751
1752
1752
17531753
17541754
17551755
17561756
17571757
17581758
1759
1759
17601760
17611761
17621762
17631763
17641764
1765
1765
17661766
17671767
17681768
17691769
17701770
17711771
1772
1772
17731773
17741774
17751775
17761776
17771777
1778
1778
17791779
17801780
17811781
17821782
17831783
17841784
1785
1785
17861786
17871787
17881788
17891789
17901790
1791
1791
17921792
17931793
17941794
17951795
17961796
17971797
1798
1798
17991799
18001800
18011801
18021802
18031803
1804
1804
18051805
18061806
18071807
18081808
18091809
18101810
1811
1811
18121812
18131813
18141814
18151815
18161816
1817
1817
18181818
18191819
18201820
18211821
18221822
18231823
1824
1824
18251825
18261826
18271827
18281828
18291829
1830
1830
18311831
18321832
18331833
18341834
18351835
18361836
1837
1837
18381838
18391839
18401840
18411841
18421842
1843
1843
18441844
18451845
18461846
18471847
18481848
18491849
1850
1850
18511851
18521852
18531853
18541854
18551855
1856
1856
18571857
18581858
18591859
18601860
18611861
18621862
1863
1863
18641864
18651865
18661866
18671867
18681868
1869
1869
18701870
18711871
18721872
18731873
18741874
1875
1875
18761876
18771877
18781878
18791879
18801880
1881
1881
18821882
18831883
18841884
18851885
18861886
1887
1887
18881888
18891889
18901890
18911891
18921892
1893
1893
18941894
18951895
18961896
18971897
18981898
1899
1899
19001900
19011901
19021902
19031903
19041904
1905
1905
19061906
19071907
19081908
19091909
19101910
1911
1911
19121912
19131913
19141914
19151915
19161916
1917
1917
19181918
19191919
19201920
19211921
19221922
1923
1923
19241924
19251925
19261926
19271927
19281928
1929
1929
19301930
19311931
19321932
19331933
19341934
1935
1935
19361936
19371937
19381938
19391939
19401940
1941
1941
19421942
19431943
19441944
19451945
19461946
1947
1947
19481948
19491949
19501950
......
24672467
24682468
24692469
2470
2470
24712471
24722472
2473
2474
2473
2474
24752475
2476
2476
24772477
24782478
24792479
24802480
24812481
2482
2482
24832483
2484
2485
2486
2487
2484
2485
2486
24882487
2489
2488
24902489
24912490
24922491
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-06-27 21:13+0000\n"
"Last-Translator: ltodoto <ltodoto@live.ru>\n"
"Language-Team: ru <ru@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr "Выберите карту HDAU, используемую по умолчанию для Вашего HDMi-контроллера."
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr "Выберите значение AAPL,ig-platform-id, используемое по умолчанию для графического процессора Intel HD4000."
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, fuzzy, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
trunk/package/po/de.po
77
88
99
10
10
1111
1212
1313
......
17181718
17191719
17201720
1721
1721
17221722
17231723
17241724
17251725
17261726
1727
1727
17281728
17291729
17301730
17311731
17321732
1733
1733
17341734
17351735
17361736
17371737
17381738
1739
1739
17401740
17411741
17421742
17431743
17441744
1745
1745
17461746
17471747
17481748
17491749
17501750
1751
1751
17521752
17531753
17541754
17551755
17561756
1757
1757
17581758
17591759
17601760
17611761
17621762
1763
1763
17641764
17651765
17661766
17671767
17681768
1769
1769
17701770
17711771
17721772
17731773
17741774
1775
1775
17761776
17771777
17781778
17791779
17801780
1781
1781
17821782
17831783
17841784
17851785
17861786
1787
1787
17881788
17891789
17901790
17911791
17921792
1793
1793
17941794
17951795
17961796
17971797
17981798
1799
1799
18001800
18011801
18021802
18031803
18041804
1805
1805
18061806
18071807
18081808
18091809
18101810
1811
1811
18121812
18131813
18141814
18151815
18161816
1817
1817
18181818
18191819
18201820
18211821
18221822
1823
1823
18241824
18251825
18261826
18271827
18281828
1829
1829
18301830
18311831
18321832
18331833
18341834
1835
1835
18361836
18371837
18381838
18391839
18401840
1841
1841
18421842
18431843
18441844
18451845
18461846
1847
1847
18481848
18491849
18501850
18511851
18521852
1853
1853
18541854
18551855
18561856
18571857
18581858
1859
1859
18601860
18611861
18621862
18631863
18641864
1865
1865
18661866
18671867
18681868
18691869
18701870
18711871
1872
1872
18731873
18741874
18751875
18761876
18771877
18781878
1879
1879
18801880
18811881
18821882
18831883
18841884
18851885
1886
1886
18871887
18881888
18891889
18901890
18911891
18921892
1893
1893
18941894
18951895
18961896
18971897
18981898
18991899
1900
1900
19011901
19021902
19031903
19041904
19051905
19061906
1907
1907
19081908
19091909
19101910
19111911
19121912
19131913
1914
1914
19151915
19161916
19171917
19181918
19191919
19201920
1921
1921
19221922
19231923
19241924
19251925
19261926
19271927
1928
1928
19291929
19301930
19311931
19321932
19331933
19341934
1935
1935
19361936
19371937
19381938
19391939
19401940
19411941
1942
1942
19431943
19441944
19451945
19461946
19471947
19481948
1949
1949
19501950
19511951
19521952
19531953
19541954
19551955
1956
1956
19571957
19581958
19591959
19601960
19611961
19621962
1963
1963
19641964
19651965
19661966
19671967
19681968
19691969
1970
1970
19711971
19721972
19731973
19741974
19751975
19761976
1977
1977
19781978
19791979
19801980
19811981
19821982
19831983
1984
1984
19851985
19861986
19871987
19881988
19891989
19901990
1991
1991
19921992
19931993
19941994
19951995
19961996
1997
1997
19981998
19991999
20002000
20012001
20022002
20032003
2004
2004
20052005
20062006
20072007
20082008
20092009
2010
2010
20112011
20122012
20132013
20142014
20152015
20162016
2017
2017
20182018
20192019
20202020
20212021
20222022
2023
2023
20242024
20252025
20262026
20272027
20282028
20292029
2030
2030
20312031
20322032
20332033
20342034
20352035
2036
2036
20372037
20382038
20392039
20402040
20412041
20422042
2043
2043
20442044
20452045
20462046
20472047
20482048
2049
2049
20502050
20512051
20522052
20532053
20542054
20552055
2056
2056
20572057
20582058
20592059
20602060
20612061
2062
2062
20632063
20642064
20652065
20662066
20672067
20682068
2069
2069
20702070
20712071
20722072
20732073
20742074
2075
2075
20762076
20772077
20782078
......
25922592
25932593
25942594
2595
2595
25962596
25972597
2598
2599
2598
2599
26002600
2601
2601
26022602
26032603
26042604
26052605
26062606
2607
2607
26082608
26092609
2610
2611
2612
2610
2611
26132612
2614
2613
26152614
26162615
26172616
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-05-30 23:39+0000\n"
"Last-Translator: !Xabbu <holger_frey07@web.de>\n"
"Language-Team: de <de@li.org>\n"
"Setzt HDAU Layout auf 1981:\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Setze 01660001 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Setze 01660002 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Setze 01660003 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Setze 01620005 für Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Setze 01620006 für Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "Setze 01620007 für Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Setze 01660008 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Setze 01660009 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "Setze 0166000b für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, fuzzy, no-wrap
#| msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 01660004 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, fuzzy, no-wrap
#| msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr "Setze 01620005 für Intel HD4000 (Desktop) AAPL,ig-platform-id ."
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, fuzzy, no-wrap
#| msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 01660000 für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "Setze 0166000a für Intel HD4000 (Mobile) AAPL,ig-platform-id ."
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, fuzzy, no-wrap
#| msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr "Wähle eine HDAU Layout-ID zur Nutzung des HDMI Kontrollers."
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr "Intel Capri AAPL,ig-platform-id"
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr "Wähle eine AAPL,ig-platform-id zur Nutzung der Intel HD4000 Grafik."
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel HD5000 LayoutIntel Azul AAPL,ig-platform-id"
msgstr "Intel HD4000 LayoutIntel Azul AAPL,ig-platform-id"
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, fuzzy, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
trunk/package/po/bg.po
77
88
99
10
10
1111
1212
1313
......
16241624
16251625
16261626
1627
1627
16281628
16291629
16301630
16311631
16321632
1633
1633
16341634
16351635
16361636
16371637
16381638
1639
1639
16401640
16411641
16421642
16431643
16441644
1645
1645
16461646
16471647
16481648
16491649
16501650
1651
1651
16521652
16531653
16541654
16551655
16561656
1657
1657
16581658
16591659
16601660
16611661
16621662
1663
1663
16641664
16651665
16661666
16671667
16681668
1669
1669
16701670
16711671
16721672
16731673
16741674
1675
1675
16761676
16771677
16781678
16791679
16801680
1681
1681
16821682
16831683
16841684
16851685
16861686
1687
1687
16881688
16891689
16901690
16911691
16921692
1693
1693
16941694
16951695
16961696
16971697
16981698
1699
1699
17001700
17011701
17021702
17031703
17041704
1705
1705
17061706
17071707
17081708
17091709
17101710
1711
1711
17121712
17131713
17141714
17151715
17161716
1717
1717
17181718
17191719
17201720
17211721
17221722
1723
1723
17241724
17251725
17261726
17271727
17281728
1729
1729
17301730
17311731
17321732
17331733
17341734
1735
1735
17361736
17371737
17381738
17391739
17401740
1741
1741
17421742
17431743
17441744
17451745
17461746
1747
1747
17481748
17491749
17501750
17511751
17521752
1753
1753
17541754
17551755
17561756
17571757
17581758
1759
1759
17601760
17611761
17621762
17631763
17641764
1765
1765
17661766
17671767
17681768
17691769
17701770
1771
1771
17721772
17731773
17741774
17751775
17761776
1777
1777
17781778
17791779
17801780
17811781
17821782
1783
1783
17841784
17851785
17861786
17871787
17881788
1789
1789
17901790
17911791
17921792
17931793
17941794
1795
1795
17961796
17971797
17981798
17991799
18001800
1801
1801
18021802
18031803
18041804
18051805
18061806
1807
1807
18081808
18091809
18101810
18111811
18121812
1813
1813
18141814
18151815
18161816
18171817
18181818
1819
1819
18201820
18211821
18221822
18231823
18241824
1825
1825
18261826
18271827
18281828
18291829
18301830
1831
1831
18321832
18331833
18341834
18351835
18361836
1837
1837
18381838
18391839
18401840
18411841
18421842
1843
1843
18441844
18451845
18461846
18471847
18481848
1849
1849
18501850
18511851
18521852
18531853
18541854
1855
1855
18561856
18571857
18581858
18591859
18601860
1861
1861
18621862
18631863
18641864
18651865
18661866
1867
1867
18681868
18691869
18701870
18711871
18721872
1873
1873
18741874
18751875
18761876
18771877
18781878
1879
1879
18801880
18811881
18821882
18831883
18841884
1885
1885
18861886
18871887
18881888
18891889
18901890
1891
1891
18921892
18931893
18941894
18951895
18961896
1897
1897
18981898
18991899
19001900
19011901
19021902
1903
1903
19041904
19051905
19061906
19071907
19081908
1909
1909
19101910
19111911
19121912
19131913
19141914
1915
1915
19161916
19171917
19181918
19191919
19201920
1921
1921
19221922
19231923
19241924
19251925
19261926
1927
1927
19281928
19291929
19301930
19311931
19321932
1933
1933
19341934
19351935
19361936
19371937
19381938
1939
1939
19401940
19411941
19421942
19431943
19441944
1945
1945
19461946
19471947
19481948
19491949
19501950
1951
1951
19521952
19531953
19541954
19551955
19561956
1957
1957
19581958
19591959
19601960
......
24802480
24812481
24822482
2483
2483
24842484
24852485
2486
2486
24872487
24882488
2489
2489
24902490
24912491
24922492
24932493
24942494
2495
2495
24962496
2497
2498
2499
2500
2497
2498
2499
25012500
2502
2501
25032502
25042503
25052504
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2012-04-28 17:25+0200\n"
"Last-Translator: Желязко <slackjackie@gmail.com>\n"
"Language-Team: bg <bg@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr ""
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr ""
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr ""
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr ""
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr ""
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr ""
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr ""
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr ""
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr ""
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr ""
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr ""
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr ""
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr ""
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr ""
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr ""
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr ""
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr ""
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr ""
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr ""
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr ""
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr ""
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "KeyLayout"
msgid "Intel HD5000 Layout"
msgstr "KeyLayout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/ja.po
77
88
99
10
10
1111
1212
1313
......
15701570
15711571
15721572
1573
1573
15741574
15751575
15761576
15771577
15781578
1579
1579
15801580
15811581
15821582
15831583
15841584
1585
1585
15861586
15871587
15881588
15891589
15901590
1591
1591
15921592
15931593
15941594
15951595
15961596
1597
1597
15981598
15991599
16001600
16011601
16021602
1603
1603
16041604
16051605
16061606
16071607
16081608
1609
1609
16101610
16111611
16121612
16131613
16141614
1615
1615
16161616
16171617
16181618
16191619
16201620
1621
1621
16221622
16231623
16241624
16251625
16261626
1627
1627
16281628
16291629
16301630
16311631
16321632
1633
1633
16341634
16351635
16361636
16371637
16381638
1639
1639
16401640
16411641
16421642
16431643
16441644
1645
1645
16461646
16471647
16481648
16491649
16501650
1651
1651
16521652
16531653
16541654
16551655
16561656
1657
1657
16581658
16591659
16601660
16611661
16621662
1663
1663
16641664
16651665
16661666
16671667
16681668
1669
1669
16701670
16711671
16721672
16731673
16741674
1675
1675
16761676
16771677
16781678
16791679
16801680
1681
1681
16821682
16831683
16841684
16851685
16861686
1687
1687
16881688
16891689
16901690
16911691
16921692
1693
1693
16941694
16951695
16961696
16971697
16981698
1699
1699
17001700
17011701
17021702
17031703
17041704
1705
1705
17061706
17071707
17081708
17091709
17101710
1711
1711
17121712
17131713
17141714
17151715
17161716
1717
1717
17181718
17191719
17201720
17211721
17221722
1723
1723
17241724
17251725
17261726
17271727
17281728
1729
1729
17301730
17311731
17321732
17331733
17341734
1735
1735
17361736
17371737
17381738
17391739
17401740
1741
1741
17421742
17431743
17441744
17451745
17461746
1747
1747
17481748
17491749
17501750
17511751
17521752
1753
1753
17541754
17551755
17561756
17571757
17581758
1759
1759
17601760
17611761
17621762
17631763
17641764
1765
1765
17661766
17671767
17681768
17691769
17701770
1771
1771
17721772
17731773
17741774
17751775
17761776
1777
1777
17781778
17791779
17801780
17811781
17821782
1783
1783
17841784
17851785
17861786
17871787
17881788
1789
1789
17901790
17911791
17921792
17931793
17941794
1795
1795
17961796
17971797
17981798
17991799
18001800
1801
1801
18021802
18031803
18041804
18051805
18061806
1807
1807
18081808
18091809
18101810
18111811
18121812
1813
1813
18141814
18151815
18161816
18171817
18181818
1819
1819
18201820
18211821
18221822
18231823
18241824
1825
1825
18261826
18271827
18281828
18291829
18301830
1831
1831
18321832
18331833
18341834
18351835
18361836
1837
1837
18381838
18391839
18401840
18411841
18421842
1843
1843
18441844
18451845
18461846
18471847
18481848
1849
1849
18501850
18511851
18521852
18531853
18541854
1855
1855
18561856
18571857
18581858
18591859
18601860
1861
1861
18621862
18631863
18641864
18651865
18661866
1867
1867
18681868
18691869
18701870
18711871
18721872
1873
1873
18741874
18751875
18761876
18771877
18781878
1879
1879
18801880
18811881
18821882
18831883
18841884
1885
1885
18861886
18871887
18881888
18891889
18901890
1891
1891
18921892
18931893
18941894
18951895
18961896
1897
1897
18981898
18991899
19001900
19011901
19021902
1903
1903
19041904
19051905
19061906
......
24192419
24202420
24212421
2422
2422
24232423
24242424
2425
2425
24262426
24272427
2428
2428
24292429
24302430
24312431
24322432
24332433
2434
2434
24352435
24362436
2437
2437
24382438
24392439
2440
2440
24412441
24422442
24432443
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr ""
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr ""
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr ""
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr ""
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr ""
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr ""
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr ""
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr ""
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr ""
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr ""
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr ""
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr ""
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr ""
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr ""
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr ""
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr ""
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr ""
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr ""
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr ""
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr ""
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr ""
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/zh_TW.po
77
88
99
10
10
1111
1212
1313
......
17111711
17121712
17131713
1714
1714
17151715
17161716
17171717
17181718
17191719
1720
1720
17211721
17221722
17231723
17241724
17251725
1726
1726
17271727
17281728
17291729
17301730
17311731
1732
1732
17331733
17341734
17351735
17361736
17371737
1738
1738
17391739
17401740
17411741
17421742
17431743
1744
1744
17451745
17461746
17471747
17481748
17491749
1750
1750
17511751
17521752
17531753
17541754
17551755
1756
1756
17571757
17581758
17591759
17601760
17611761
1762
1762
17631763
17641764
17651765
17661766
17671767
1768
1768
17691769
17701770
17711771
17721772
17731773
1774
1774
17751775
17761776
17771777
17781778
17791779
1780
1780
17811781
17821782
17831783
17841784
17851785
1786
1786
17871787
17881788
17891789
17901790
17911791
1792
1792
17931793
17941794
17951795
17961796
17971797
1798
1798
17991799
18001800
18011801
18021802
18031803
1804
1804
18051805
18061806
18071807
18081808
18091809
1810
1810
18111811
18121812
18131813
18141814
18151815
1816
1816
18171817
18181818
18191819
18201820
18211821
1822
1822
18231823
18241824
18251825
18261826
18271827
1828
1828
18291829
18301830
18311831
18321832
18331833
1834
1834
18351835
18361836
18371837
18381838
18391839
1840
1840
18411841
18421842
18431843
18441844
18451845
1846
1846
18471847
18481848
18491849
18501850
18511851
1852
1852
18531853
18541854
18551855
18561856
18571857
1858
1858
18591859
18601860
18611861
18621862
18631863
1864
1864
18651865
18661866
18671867
18681868
18691869
1870
1870
18711871
18721872
18731873
18741874
18751875
1876
1876
18771877
18781878
18791879
18801880
18811881
1882
1882
18831883
18841884
18851885
18861886
18871887
1888
1888
18891889
18901890
18911891
18921892
18931893
1894
1894
18951895
18961896
18971897
18981898
18991899
1900
1900
19011901
19021902
19031903
19041904
19051905
1906
1906
19071907
19081908
19091909
19101910
19111911
1912
1912
19131913
19141914
19151915
19161916
19171917
1918
1918
19191919
19201920
19211921
19221922
19231923
1924
1924
19251925
19261926
19271927
19281928
19291929
1930
1930
19311931
19321932
19331933
19341934
19351935
1936
1936
19371937
19381938
19391939
19401940
19411941
1942
1942
19431943
19441944
19451945
19461946
19471947
1948
1948
19491949
19501950
19511951
19521952
19531953
19541954
1955
1955
19561956
19571957
19581958
19591959
19601960
1961
1961
19621962
19631963
19641964
19651965
19661966
1967
1967
19681968
19691969
19701970
19711971
19721972
1973
1973
19741974
19751975
19761976
19771977
19781978
1979
1979
19801980
19811981
19821982
19831983
19841984
1985
1985
19861986
19871987
19881988
19891989
19901990
1991
1991
19921992
19931993
19941994
19951995
19961996
1997
1997
19981998
19991999
20002000
20012001
20022002
2003
2003
20042004
20052005
20062006
20072007
20082008
2009
2009
20102010
20112011
20122012
20132013
20142014
2015
2015
20162016
20172017
20182018
20192019
20202020
2021
2021
20222022
20232023
20242024
20252025
20262026
2027
2027
20282028
20292029
20302030
20312031
20322032
2033
2033
20342034
20352035
20362036
20372037
20382038
2039
2039
20402040
20412041
20422042
20432043
20442044
2045
2045
20462046
20472047
20482048
......
25652565
25662566
25672567
2568
2568
25692569
25702570
2571
2571
25722572
25732573
2574
2574
25752575
25762576
25772577
25782578
25792579
2580
2580
25812581
25822582
2583
2584
2585
25862583
2587
2584
2585
2586
2587
25882588
25892589
25902590
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-07-22 03:05-0000\n"
"Last-Translator: crazybirdy <crazybirdy@ms96.url.com.tw>\n"
"Language-Team: zh_TW <zh_TW@li.org>\n"
"設定 HDAU layout-it 為 1981:\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660000."
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660001."
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660002."
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660003."
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660004."
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Desktop) AAPL,ig-platform-id 為 01660005."
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Desktop) AAPL,ig-platform-id 為 01660006."
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Desktop) AAPL,ig-platform-id 為 01660007."
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660008."
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 01660009."
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 0166000a."
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr "設定 Intel HD4000 (Mobile) AAPL,ig-platform-id 為 0166000b."
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr "00000604"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 00000604."
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr "0000060c"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0000060c."
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr "00001604"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 00001604."
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr "0000160a"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0000160a."
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr "0000160c"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0000160c."
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr "00002604"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 00002604."
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr "0000260a"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0000260a."
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr "0000260c"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, fuzzy, no-wrap
#| msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0600260a."
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr "0000260d"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0000260d."
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr "02001604"
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 02001604."
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr "0300220d"
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Desktop) AAPL,ig-platform-id 為 0300220d."
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr "0500260a"
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0500260a."
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr "0600260a"
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0600260a."
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr "0700260d"
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0700260d."
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr "0800260a"
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr "設定 Intel HD5000 (Mobile) AAPL,ig-platform-id 為 0800260a."
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr "08002e0a"
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "KeyLayout"
msgid "Intel HD5000 Layout"
msgstr "鍵盤佈局"
#. type: "HD5000_description"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/id.po
77
88
99
10
10
1111
1212
1313
......
16111611
16121612
16131613
1614
1614
16151615
16161616
16171617
16181618
16191619
1620
1620
16211621
16221622
16231623
16241624
16251625
1626
1626
16271627
16281628
16291629
16301630
16311631
1632
1632
16331633
16341634
16351635
16361636
16371637
1638
1638
16391639
16401640
16411641
16421642
16431643
1644
1644
16451645
16461646
16471647
16481648
16491649
1650
1650
16511651
16521652
16531653
16541654
16551655
1656
1656
16571657
16581658
16591659
16601660
16611661
1662
1662
16631663
16641664
16651665
16661666
16671667
1668
1668
16691669
16701670
16711671
16721672
16731673
1674
1674
16751675
16761676
16771677
16781678
16791679
1680
1680
16811681
16821682
16831683
16841684
16851685
1686
1686
16871687
16881688
16891689
16901690
16911691
1692
1692
16931693
16941694
16951695
16961696
16971697
1698
1698
16991699
17001700
17011701
17021702
17031703
1704
1704
17051705
17061706
17071707
17081708
17091709
1710
1710
17111711
17121712
17131713
17141714
17151715
1716
1716
17171717
17181718
17191719
17201720
17211721
1722
1722
17231723
17241724
17251725
17261726
17271727
1728
1728
17291729
17301730
17311731
17321732
17331733
1734
1734
17351735
17361736
17371737
17381738
17391739
1740
1740
17411741
17421742
17431743
17441744
17451745
1746
1746
17471747
17481748
17491749
17501750
17511751
1752
1752
17531753
17541754
17551755
17561756
17571757
1758
1758
17591759
17601760
17611761
17621762
17631763
17641764
1765
1765
17661766
17671767
17681768
17691769
17701770
1771
1771
17721772
17731773
17741774
17751775
17761776
17771777
1778
1778
17791779
17801780
17811781
17821782
17831783
1784
1784
17851785
17861786
17871787
17881788
17891789
17901790
1791
1791
17921792
17931793
17941794
17951795
17961796
1797
1797
17981798
17991799
18001800
18011801
18021802
18031803
1804
1804
18051805
18061806
18071807
18081808
18091809
1810
1810
18111811
18121812
18131813
18141814
18151815
18161816
1817
1817
18181818
18191819
18201820
18211821
18221822
1823
1823
18241824
18251825
18261826
18271827
18281828
18291829
1830
1830
18311831
18321832
18331833
18341834
18351835
1836
1836
18371837
18381838
18391839
18401840
18411841
18421842
1843
1843
18441844
18451845
18461846
18471847
18481848
1849
1849
18501850
18511851
18521852
18531853
18541854
18551855
1856
1856
18571857
18581858
18591859
18601860
18611861
1862
1862
18631863
18641864
18651865
18661866
18671867
18681868
1869
1869
18701870
18711871
18721872
18731873
18741874
1875
1875
18761876
18771877
18781878
18791879
18801880
1881
1881
18821882
18831883
18841884
18851885
18861886
1887
1887
18881888
18891889
18901890
18911891
18921892
1893
1893
18941894
18951895
18961896
18971897
18981898
1899
1899
19001900
19011901
19021902
19031903
19041904
1905
1905
19061906
19071907
19081908
19091909
19101910
1911
1911
19121912
19131913
19141914
19151915
19161916
1917
1917
19181918
19191919
19201920
19211921
19221922
1923
1923
19241924
19251925
19261926
19271927
19281928
1929
1929
19301930
19311931
19321932
19331933
19341934
1935
1935
19361936
19371937
19381938
19391939
19401940
1941
1941
19421942
19431943
19441944
19451945
19461946
1947
1947
19481948
19491949
19501950
19511951
19521952
1953
1953
19541954
19551955
19561956
......
24702470
24712471
24722472
2473
2473
24742474
24752475
2476
2477
2476
2477
24782478
2479
2479
24802480
24812481
24822482
24832483
24842484
2485
2485
24862486
2487
2488
2489
2490
2487
2488
2489
24912490
2492
2491
24932492
24942493
24952494
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-05-11 16:47-0000\n"
"Last-Translator: archintosh <ardr_1109@yahoo.com>\n"
"Language-Team: id <id@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00000604"
msgstr "01660000"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000060c"
msgstr "01660000"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00001604"
msgstr "01660000"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160a"
msgstr "01660000"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000160c"
msgstr "01660000"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "00002604"
msgstr "01660000"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260a"
msgstr "01660000"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260c"
msgstr "01660000"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, fuzzy, no-wrap
#| msgid "01660000"
msgid "0000260d"
msgstr "01660000"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgstr "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "Intel HD4000 Layout"
msgid "Intel HD5000 Layout"
msgstr "Intel HD4000 Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/he.po
77
88
99
10
10
1111
1212
1313
......
15771577
15781578
15791579
1580
1580
15811581
15821582
15831583
15841584
15851585
1586
1586
15871587
15881588
15891589
15901590
15911591
1592
1592
15931593
15941594
15951595
15961596
15971597
1598
1598
15991599
16001600
16011601
16021602
16031603
1604
1604
16051605
16061606
16071607
16081608
16091609
1610
1610
16111611
16121612
16131613
16141614
16151615
1616
1616
16171617
16181618
16191619
16201620
16211621
1622
1622
16231623
16241624
16251625
16261626
16271627
1628
1628
16291629
16301630
16311631
16321632
16331633
1634
1634
16351635
16361636
16371637
16381638
16391639
1640
1640
16411641
16421642
16431643
16441644
16451645
1646
1646
16471647
16481648
16491649
16501650
16511651
1652
1652
16531653
16541654
16551655
16561656
16571657
1658
1658
16591659
16601660
16611661
16621662
16631663
1664
1664
16651665
16661666
16671667
16681668
16691669
1670
1670
16711671
16721672
16731673
16741674
16751675
1676
1676
16771677
16781678
16791679
16801680
16811681
1682
1682
16831683
16841684
16851685
16861686
16871687
1688
1688
16891689
16901690
16911691
16921692
16931693
1694
1694
16951695
16961696
16971697
16981698
16991699
1700
1700
17011701
17021702
17031703
17041704
17051705
1706
1706
17071707
17081708
17091709
17101710
17111711
1712
1712
17131713
17141714
17151715
17161716
17171717
1718
1718
17191719
17201720
17211721
17221722
17231723
1724
1724
17251725
17261726
17271727
17281728
17291729
1730
1730
17311731
17321732
17331733
17341734
17351735
1736
1736
17371737
17381738
17391739
17401740
17411741
1742
1742
17431743
17441744
17451745
17461746
17471747
1748
1748
17491749
17501750
17511751
17521752
17531753
1754
1754
17551755
17561756
17571757
17581758
17591759
1760
1760
17611761
17621762
17631763
17641764
17651765
1766
1766
17671767
17681768
17691769
17701770
17711771
1772
1772
17731773
17741774
17751775
17761776
17771777
1778
1778
17791779
17801780
17811781
17821782
17831783
1784
1784
17851785
17861786
17871787
17881788
17891789
1790
1790
17911791
17921792
17931793
17941794
17951795
1796
1796
17971797
17981798
17991799
18001800
18011801
1802
1802
18031803
18041804
18051805
18061806
18071807
1808
1808
18091809
18101810
18111811
18121812
18131813
1814
1814
18151815
18161816
18171817
18181818
18191819
1820
1820
18211821
18221822
18231823
18241824
18251825
1826
1826
18271827
18281828
18291829
18301830
18311831
1832
1832
18331833
18341834
18351835
18361836
18371837
1838
1838
18391839
18401840
18411841
18421842
18431843
1844
1844
18451845
18461846
18471847
18481848
18491849
1850
1850
18511851
18521852
18531853
18541854
18551855
1856
1856
18571857
18581858
18591859
18601860
18611861
1862
1862
18631863
18641864
18651865
18661866
18671867
1868
1868
18691869
18701870
18711871
18721872
18731873
1874
1874
18751875
18761876
18771877
18781878
18791879
1880
1880
18811881
18821882
18831883
18841884
18851885
1886
1886
18871887
18881888
18891889
18901890
18911891
1892
1892
18931893
18941894
18951895
18961896
18971897
1898
1898
18991899
19001900
19011901
19021902
19031903
1904
1904
19051905
19061906
19071907
19081908
19091909
1910
1910
19111911
19121912
19131913
......
24272427
24282428
24292429
2430
2430
24312431
24322432
2433
2433
24342434
24352435
2436
2436
24372437
24382438
24392439
24402440
24412441
2442
2442
24432443
24442444
2445
2445
24462446
24472447
2448
2448
24492449
24502450
24512451
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: he <he@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr ""
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr ""
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr ""
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr ""
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr ""
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr ""
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr ""
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr ""
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr ""
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr ""
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr ""
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr ""
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr ""
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr ""
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr ""
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr ""
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr ""
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr ""
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr ""
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr ""
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr ""
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/el.po
77
88
99
10
10
1111
1212
1313
......
15701570
15711571
15721572
1573
1573
15741574
15751575
15761576
15771577
15781578
1579
1579
15801580
15811581
15821582
15831583
15841584
1585
1585
15861586
15871587
15881588
15891589
15901590
1591
1591
15921592
15931593
15941594
15951595
15961596
1597
1597
15981598
15991599
16001600
16011601
16021602
1603
1603
16041604
16051605
16061606
16071607
16081608
1609
1609
16101610
16111611
16121612
16131613
16141614
1615
1615
16161616
16171617
16181618
16191619
16201620
1621
1621
16221622
16231623
16241624
16251625
16261626
1627
1627
16281628
16291629
16301630
16311631
16321632
1633
1633
16341634
16351635
16361636
16371637
16381638
1639
1639
16401640
16411641
16421642
16431643
16441644
1645
1645
16461646
16471647
16481648
16491649
16501650
1651
1651
16521652
16531653
16541654
16551655
16561656
1657
1657
16581658
16591659
16601660
16611661
16621662
1663
1663
16641664
16651665
16661666
16671667
16681668
1669
1669
16701670
16711671
16721672
16731673
16741674
1675
1675
16761676
16771677
16781678
16791679
16801680
1681
1681
16821682
16831683
16841684
16851685
16861686
1687
1687
16881688
16891689
16901690
16911691
16921692
1693
1693
16941694
16951695
16961696
16971697
16981698
1699
1699
17001700
17011701
17021702
17031703
17041704
1705
1705
17061706
17071707
17081708
17091709
17101710
1711
1711
17121712
17131713
17141714
17151715
17161716
1717
1717
17181718
17191719
17201720
17211721
17221722
1723
1723
17241724
17251725
17261726
17271727
17281728
1729
1729
17301730
17311731
17321732
17331733
17341734
1735
1735
17361736
17371737
17381738
17391739
17401740
1741
1741
17421742
17431743
17441744
17451745
17461746
1747
1747
17481748
17491749
17501750
17511751
17521752
1753
1753
17541754
17551755
17561756
17571757
17581758
1759
1759
17601760
17611761
17621762
17631763
17641764
1765
1765
17661766
17671767
17681768
17691769
17701770
1771
1771
17721772
17731773
17741774
17751775
17761776
1777
1777
17781778
17791779
17801780
17811781
17821782
1783
1783
17841784
17851785
17861786
17871787
17881788
1789
1789
17901790
17911791
17921792
17931793
17941794
1795
1795
17961796
17971797
17981798
17991799
18001800
1801
1801
18021802
18031803
18041804
18051805
18061806
1807
1807
18081808
18091809
18101810
18111811
18121812
1813
1813
18141814
18151815
18161816
18171817
18181818
1819
1819
18201820
18211821
18221822
18231823
18241824
1825
1825
18261826
18271827
18281828
18291829
18301830
1831
1831
18321832
18331833
18341834
18351835
18361836
1837
1837
18381838
18391839
18401840
18411841
18421842
1843
1843
18441844
18451845
18461846
18471847
18481848
1849
1849
18501850
18511851
18521852
18531853
18541854
1855
1855
18561856
18571857
18581858
18591859
18601860
1861
1861
18621862
18631863
18641864
18651865
18661866
1867
1867
18681868
18691869
18701870
18711871
18721872
1873
1873
18741874
18751875
18761876
18771877
18781878
1879
1879
18801880
18811881
18821882
18831883
18841884
1885
1885
18861886
18871887
18881888
18891889
18901890
1891
1891
18921892
18931893
18941894
18951895
18961896
1897
1897
18981898
18991899
19001900
19011901
19021902
1903
1903
19041904
19051905
19061906
......
24202420
24212421
24222422
2423
2423
24242424
24252425
2426
2426
24272427
24282428
2429
2429
24302430
24312431
24322432
24332433
24342434
2435
2435
24362436
24372437
2438
2438
24392439
24402440
2441
2441
24422442
24432443
24442444
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: el <el@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr ""
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr ""
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr ""
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr ""
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr ""
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr ""
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr ""
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr ""
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr ""
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr ""
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr ""
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr ""
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr ""
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr ""
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr ""
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr ""
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr ""
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr ""
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr ""
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr ""
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr ""
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr ""
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr ""
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr ""
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr ""
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr ""
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr ""
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr ""
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, no-wrap
msgid "Intel HD5000 Layout"
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/package/po/zh_CN.po
77
88
99
10
10
1111
1212
1313
......
16001600
16011601
16021602
1603
1603
16041604
16051605
16061606
16071607
16081608
1609
1609
16101610
16111611
16121612
16131613
16141614
1615
1615
16161616
16171617
16181618
16191619
16201620
1621
1621
16221622
16231623
16241624
16251625
16261626
1627
1627
16281628
16291629
16301630
16311631
16321632
1633
1633
16341634
16351635
16361636
16371637
16381638
1639
1639
16401640
16411641
16421642
16431643
16441644
1645
1645
16461646
16471647
16481648
16491649
16501650
1651
1651
16521652
16531653
16541654
16551655
16561656
1657
1657
16581658
16591659
16601660
16611661
16621662
1663
1663
16641664
16651665
16661666
16671667
16681668
1669
1669
16701670
16711671
16721672
16731673
16741674
1675
1675
16761676
16771677
16781678
16791679
16801680
1681
1681
16821682
16831683
16841684
16851685
16861686
1687
1687
16881688
16891689
16901690
16911691
16921692
1693
1693
16941694
16951695
16961696
16971697
16981698
1699
1699
17001700
17011701
17021702
17031703
17041704
1705
1705
17061706
17071707
17081708
17091709
17101710
1711
1711
17121712
17131713
17141714
17151715
17161716
1717
1717
17181718
17191719
17201720
17211721
17221722
1723
1723
17241724
17251725
17261726
17271727
17281728
1729
1729
17301730
17311731
17321732
17331733
17341734
1735
1735
17361736
17371737
17381738
17391739
17401740
1741
1741
17421742
17431743
17441744
17451745
17461746
1747
1747
17481748
17491749
17501750
17511751
17521752
1753
1753
17541754
17551755
17561756
17571757
17581758
1759
1759
17601760
17611761
17621762
17631763
17641764
1765
1765
17661766
17671767
17681768
17691769
17701770
1771
1771
17721772
17731773
17741774
17751775
17761776
1777
1777
17781778
17791779
17801780
17811781
17821782
1783
1783
17841784
17851785
17861786
17871787
17881788
1789
1789
17901790
17911791
17921792
17931793
17941794
1795
1795
17961796
17971797
17981798
17991799
18001800
1801
1801
18021802
18031803
18041804
18051805
18061806
1807
1807
18081808
18091809
18101810
18111811
18121812
1813
1813
18141814
18151815
18161816
18171817
18181818
1819
1819
18201820
18211821
18221822
18231823
18241824
1825
1825
18261826
18271827
18281828
18291829
18301830
1831
1831
18321832
18331833
18341834
18351835
18361836
1837
1837
18381838
18391839
18401840
18411841
18421842
1843
1843
18441844
18451845
18461846
18471847
18481848
1849
1849
18501850
18511851
18521852
18531853
18541854
1855
1855
18561856
18571857
18581858
18591859
18601860
1861
1861
18621862
18631863
18641864
18651865
18661866
1867
1867
18681868
18691869
18701870
18711871
18721872
1873
1873
18741874
18751875
18761876
18771877
18781878
1879
1879
18801880
18811881
18821882
18831883
18841884
1885
1885
18861886
18871887
18881888
18891889
18901890
1891
1891
18921892
18931893
18941894
18951895
18961896
1897
1897
18981898
18991899
19001900
19011901
19021902
1903
1903
19041904
19051905
19061906
19071907
19081908
1909
1909
19101910
19111911
19121912
19131913
19141914
1915
1915
19161916
19171917
19181918
19191919
19201920
1921
1921
19221922
19231923
19241924
19251925
19261926
1927
1927
19281928
19291929
19301930
19311931
19321932
1933
1933
19341934
19351935
19361936
......
24512451
24522452
24532453
2454
2454
24552455
24562456
2457
2457
24582458
24592459
2460
2460
24612461
24622462
24632463
24642464
24652465
2466
2466
24672467
2468
2469
2470
2471
2468
2469
2470
24722471
2473
2472
24742473
24752474
24762475
msgstr ""
"Project-Id-Version: Chameleon 2.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-07-29 03:34+0200\n"
"POT-Creation-Date: 2013-08-28 15:43+0200\n"
"PO-Revision-Date: 2013-07-22 03:08-0000\n"
"Last-Translator: crazybirdy <crazybirdy@ms96.url.com.tw>\n"
"Language-Team: zh_CN <zh_CN@li.org>\n"
"7BD (0xBD, 0x07, 0x00, 0x00)."
msgstr ""
#. type: "HD4K-igx00_title"
#. type: "IntelCaprix00_title"
#: Resources/templates/Localizable.strings:442
#, no-wrap
msgid "01660000"
msgstr "01660000"
#. type: "HD4K-igx00_description"
#. type: "IntelCaprix00_description"
#: Resources/templates/Localizable.strings:443
#, no-wrap
msgid "Set 01660000 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx01_title"
#. type: "IntelCaprix01_title"
#: Resources/templates/Localizable.strings:445
#, no-wrap
msgid "01660001"
msgstr "01660001"
#. type: "HD4K-igx01_description"
#. type: "IntelCaprix01_description"
#: Resources/templates/Localizable.strings:446
#, no-wrap
msgid "Set 01660001 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx02_title"
#. type: "IntelCaprix02_title"
#: Resources/templates/Localizable.strings:448
#, no-wrap
msgid "01660002"
msgstr "01660002"
#. type: "HD4K-igx02_description"
#. type: "IntelCaprix02_description"
#: Resources/templates/Localizable.strings:449
#, no-wrap
msgid "Set 01660002 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx03_title"
#. type: "IntelCaprix03_title"
#: Resources/templates/Localizable.strings:451
#, no-wrap
msgid "01660003"
msgstr "01660003"
#. type: "HD4K-igx03_description"
#. type: "IntelCaprix03_description"
#: Resources/templates/Localizable.strings:452
#, no-wrap
msgid "Set 01660003 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx04_title"
#. type: "IntelCaprix04_title"
#: Resources/templates/Localizable.strings:454
#, no-wrap
msgid "01660004"
msgstr "01660004"
#. type: "HD4K-igx04_description"
#. type: "IntelCaprix04_description"
#: Resources/templates/Localizable.strings:455
#, no-wrap
msgid "Set 01660004 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx05_title"
#. type: "IntelCaprix05_title"
#: Resources/templates/Localizable.strings:457
#, no-wrap
msgid "01620005"
msgstr "01620005"
#. type: "HD4K-igx05_description"
#. type: "IntelCaprix05_description"
#: Resources/templates/Localizable.strings:458
#, no-wrap
msgid "Set 01620005 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx06_title"
#. type: "IntelCaprix06_title"
#: Resources/templates/Localizable.strings:460
#, no-wrap
msgid "01620006"
msgstr "01620006"
#. type: "HD4K-igx06_description"
#. type: "IntelCaprix06_description"
#: Resources/templates/Localizable.strings:461
#, no-wrap
msgid "Set 01620006 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx07_title"
#. type: "IntelCaprix07_title"
#: Resources/templates/Localizable.strings:463
#, no-wrap
msgid "01620007"
msgstr "01620007"
#. type: "HD4K-igx07_description"
#. type: "IntelCaprix07_description"
#: Resources/templates/Localizable.strings:464
#, no-wrap
msgid "Set 01620007 for Intel HD4000 (Desktop) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx08_title"
#. type: "IntelCaprix08_title"
#: Resources/templates/Localizable.strings:466
#, no-wrap
msgid "01660008"
msgstr "01660008"
#. type: "HD4K-igx08_description"
#. type: "IntelCaprix08_description"
#: Resources/templates/Localizable.strings:467
#, no-wrap
msgid "Set 01660008 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx09_title"
#. type: "IntelCaprix09_title"
#: Resources/templates/Localizable.strings:469
#, no-wrap
msgid "01660009"
msgstr "01660009"
#. type: "HD4K-igx09_description"
#. type: "IntelCaprix09_description"
#: Resources/templates/Localizable.strings:470
#, no-wrap
msgid "Set 01660009 for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx10_title"
#. type: "IntelCaprix10_title"
#: Resources/templates/Localizable.strings:472
#, no-wrap
msgid "0166000a"
msgstr "0166000a"
#. type: "HD4K-igx10_description"
#. type: "IntelCaprix10_description"
#: Resources/templates/Localizable.strings:473
#, no-wrap
msgid "Set 0166000a for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD4K-igx11_title"
#. type: "IntelCaprix11_title"
#: Resources/templates/Localizable.strings:475
#, no-wrap
msgid "0166000b"
msgstr "0166000b"
#. type: "HD4K-igx11_description"
#. type: "IntelCaprix11_description"
#: Resources/templates/Localizable.strings:476
#, no-wrap
msgid "Set 0166000b for Intel HD4000 (Mobile) AAPL,ig-platform-id ."
msgstr ""
#. type: "HD5K-igx00_title"
#. type: "IntelAzulx00_title"
#: Resources/templates/Localizable.strings:480
#, no-wrap
msgid "00000604"
msgstr "00000604"
#. type: "HD5K-igx00_description"
#. type: "IntelAzulx00_description"
#: Resources/templates/Localizable.strings:481
#, no-wrap
msgid "Set 00000604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx01_title"
#. type: "IntelAzulx01_title"
#: Resources/templates/Localizable.strings:483
#, no-wrap
msgid "0000060c"
msgstr "0000060c"
#. type: "HD5K-igx01_description"
#. type: "IntelAzulx01_description"
#: Resources/templates/Localizable.strings:484
#, no-wrap
msgid "Set 0000060c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx02_title"
#. type: "IntelAzulx02_title"
#: Resources/templates/Localizable.strings:486
#, no-wrap
msgid "00001604"
msgstr "00001604"
#. type: "HD5K-igx02_description"
#. type: "IntelAzulx02_description"
#: Resources/templates/Localizable.strings:487
#, no-wrap
msgid "Set 00001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx03_title"
#. type: "IntelAzulx03_title"
#: Resources/templates/Localizable.strings:489
#, no-wrap
msgid "0000160a"
msgstr "0000160a"
#. type: "HD5K-igx03_description"
#. type: "IntelAzulx03_description"
#: Resources/templates/Localizable.strings:490
#, no-wrap
msgid "Set 0000160a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx04_title"
#. type: "IntelAzulx04_title"
#: Resources/templates/Localizable.strings:492
#, no-wrap
msgid "0000160c"
msgstr "0000160c"
#. type: "HD5K-igx04_description"
#. type: "IntelAzulx04_description"
#: Resources/templates/Localizable.strings:493
#, no-wrap
msgid "Set 0000160c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx05_title"
#. type: "IntelAzulx05_title"
#: Resources/templates/Localizable.strings:495
#, no-wrap
msgid "00002604"
msgstr "00002604"
#. type: "HD5K-igx05_description"
#. type: "IntelAzulx05_description"
#: Resources/templates/Localizable.strings:496
#, no-wrap
msgid "Set 00002604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx06_title"
#. type: "IntelAzulx06_title"
#: Resources/templates/Localizable.strings:498
#, no-wrap
msgid "0000260a"
msgstr "0000260a"
#. type: "HD5K-igx06_description"
#. type: "IntelAzulx06_description"
#: Resources/templates/Localizable.strings:499
#, no-wrap
msgid "Set 0000260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx07_title"
#. type: "IntelAzulx07_title"
#: Resources/templates/Localizable.strings:501
#, no-wrap
msgid "0000260c"
msgstr "0000260c"
#. type: "HD5K-igx07_description"
#. type: "IntelAzulx07_description"
#: Resources/templates/Localizable.strings:502
#, no-wrap
msgid "Set 0600260c for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx08_title"
#. type: "IntelAzulx08_title"
#: Resources/templates/Localizable.strings:504
#, no-wrap
msgid "0000260d"
msgstr "0000260d"
#. type: "HD5K-igx08_description"
#. type: "IntelAzulx08_description"
#: Resources/templates/Localizable.strings:505
#, no-wrap
msgid "Set 0000260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx09_title"
#. type: "IntelAzulx09_title"
#: Resources/templates/Localizable.strings:507
#, no-wrap
msgid "02001604"
msgstr "02001604"
#. type: "HD5K-igx09_description"
#. type: "IntelAzulx09_description"
#: Resources/templates/Localizable.strings:508
#, no-wrap
msgid "Set 02001604 for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx10_title"
#. type: "IntelAzulx10_title"
#: Resources/templates/Localizable.strings:510
#, no-wrap
msgid "0300220d"
msgstr "0300220d"
#. type: "HD5K-igx10_description"
#. type: "IntelAzulx10_description"
#: Resources/templates/Localizable.strings:511
#, no-wrap
msgid "Set 0300220d for Intel HD5000 (Desktop) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx11_title"
#. type: "IntelAzulx11_title"
#: Resources/templates/Localizable.strings:513
#, no-wrap
msgid "0500260a"
msgstr "0500260a"
#. type: "HD5K-igx11_description"
#. type: "IntelAzulx11_description"
#: Resources/templates/Localizable.strings:514
#, no-wrap
msgid "Set 0500260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx12_title"
#. type: "IntelAzulx12_title"
#: Resources/templates/Localizable.strings:516
#, no-wrap
msgid "0600260a"
msgstr "0600260a"
#. type: "HD5K-igx12_description"
#. type: "IntelAzulx12_description"
#: Resources/templates/Localizable.strings:517
#, no-wrap
msgid "Set 0600260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx13_title"
#. type: "IntelAzulx13_title"
#: Resources/templates/Localizable.strings:519
#, no-wrap
msgid "0700260d"
msgstr "0700260d"
#. type: "HD5K-igx13_description"
#. type: "IntelAzulx13_description"
#: Resources/templates/Localizable.strings:520
#, no-wrap
msgid "Set 0700260d for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx14_title"
#. type: "IntelAzulx14_title"
#: Resources/templates/Localizable.strings:522
#, no-wrap
msgid "0800260a"
msgstr "0800260a"
#. type: "HD5K-igx14_description"
#. type: "IntelAzulx14_description"
#: Resources/templates/Localizable.strings:523
#, no-wrap
msgid "Set 0800260a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgstr ""
#. type: "HD5K-igx15_title"
#. type: "IntelAzulx15_title"
#: Resources/templates/Localizable.strings:525
#, no-wrap
msgid "08002e0a"
msgstr "08002e0a"
#. type: "HD5K-igx15_description"
#. type: "IntelAzulx15_description"
#: Resources/templates/Localizable.strings:526
#, no-wrap
msgid "Set 08002e0a for Intel HD5000 (Mobile) AAPL,ig-platform-id."
msgid "Set one HDAU Layout ID to use for your HDMi controller."
msgstr ""
#. type: "HD4000_title"
#. type: "IntelCapri_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
msgid "Intel HD4000 Layout"
msgid "Intel Capri AAPL,ig-platform-id"
msgstr ""
#. type: "HD4000_description"
#. type: "IntelCapri_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD4000."
msgstr ""
#. type: "HD5000_title"
#. type: "IntelAzul_title"
#: Resources/templates/Localizable.strings:699
#, fuzzy, no-wrap
#| msgid "HDEF Layout"
msgid "Intel HD5000 Layout"
msgstr "HDEF Layout"
#, no-wrap
msgid "Intel Azul AAPL,ig-platform-id"
msgstr ""
#. type: "HD5000_description"
#. type: "IntelAzul_description"
#: Resources/templates/Localizable.strings:700
#, no-wrap
msgid "Set one AAPL,ig-platform-id to use for your Intel HD5000."
trunk/Make.rules
122122
123123
124124
125
126
127
128
129
125
126
127
128
129
130130
131131
132132
......
149149
150150
151151
152
152
153153
154154
155155
target=`echo $@ | sed s/-recursive//`; \
for subdir in $$rev; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
local_target="$$target-local"; \
else \
local_target="$$target"; \
fi; \
if test "$$subdir" = "."; then \
local_target="$$target-local"; \
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $$local_target) \
|| eval $$failcom; \
done
fi
@rm -rf $(OBJROOT) $(SYMROOT) $(DSTROOT) \
$(SRCROOT)/i386/modules/module_includes
distclean: distclean-recursive clean-local clean-dep
@find . $(FIND_IGNORE) \
\( -name '*.orig' -o -name '*.rej' -o -name '*~' \

Archive Download the corresponding diff file

Revision: 2259