Chameleon

Chameleon Commit Details

Date:2016-05-15 12:46:06 (7 years 11 months ago)
Author:ErmaC
Commit:2813
Parents: 2812
Message:gettext path from clover build by Micky1979
Changes:
M/branches/ErmaC/Enoch/package/po/en.po
M/branches/ErmaC/Enoch/package/po/pt.po
M/branches/ErmaC/Enoch/package/Distribution
M/branches/ErmaC/Enoch/package/po/pt-BR.po
M/branches/ErmaC/Enoch/package/po/ru.po
M/branches/ErmaC/Enoch/package/po/fr.po
M/branches/ErmaC/Enoch/package/po/ko.po
M/branches/ErmaC/Enoch/package/po/nl.po
M/branches/ErmaC/Enoch/package/buildpkg.sh
M/branches/ErmaC/Enoch/package/po/ro.po

File differences

branches/ErmaC/Enoch/package/Distribution
66
77
88
9
9
1010
1111
12
12
1313
14
14
1515
1616
1717
<domains enable_anywhere="true"/>
<welcome file='Welcome.html'/>
<!-- license file="License.rtf" sla="EA0401" -->
<license file="License.rtf" sla="EA0401"/>
<readme file='Description.html'/>
<conclusion file="Conclusion.html"/>
<background file='background' mime-type='image/png' alignment='topleft' scaling='no'/>
<background file='background' alignment='topleft' scaling='no'/>
<title>Enoch Bootloder revision %CHAMELEONREVISION%</title>
<title>Chameleon_Package_Title</title>
<script>
branches/ErmaC/Enoch/package/buildpkg.sh
1414
1515
1616
17
18
19
20
21
1722
1823
1924
......
96101
97102
98103
99
100
101
102
103104
104105
105106
......
108109
109110
110111
111
112
113112
114113
115114
......
270269
271270
272271
273
274
275272
276273
277274
......
281278
282279
283280
284
285
286281
287282
288
289
290283
291284
292285
293286
294287
295
296
297
298
299288
300289
290
291
292
293
301294
302
295
303296
304
297
305298
306
307
308
309
310
311
312
313
314
299
315300
316
301
317302
318303
319304
......
352337
353338
354339
355
356
357340
358
359
360341
361342
362343
......
366347
367348
368349
369
370
371350
372351
373352
......
375354
376355
377356
378
379
380357
381358
382
383359
384360
385361
386
387
388
389
390362
391363
392364
393365
394366
395367
396
397
398
399
400
401
402
403
404
405
406
368
407369
408370
409371
......
416378
417379
418380
419
381
420382
421383
422384
......
435397
436398
437399
438
439
440400
441401
442402
......
445405
446406
447407
448
449408
450409
451410
......
11741133
11751134
11761135
1177
1136
11781137
11791138
11801139
......
11931152
11941153
11951154
1196
1155
11971156
11981157
11991158
......
12451204
12461205
12471206
1248
1207
12491208
12501209
12511210
......
13321291
13331292
13341293
1335
1336
13371294
13381295
13391296
1340
1341
13421297
13431298
13441299
......
14001355
14011356
14021357
1403
14041358
14051359
14061360
......
14281382
14291383
14301384
1431
1385
14321386
14331387
14341388
......
14381392
14391393
14401394
1441
1395
1396
14421397
14431398
14441399
# Add by FurtiF fix patch of brew gettext
export PATH=${PATH}:/usr/local/opt/gettext/bin
# Micky1979, I build Clover too, gettex should be there
if [[ -f "${HOME}"/src/opt/local/bin/gettext ]];then
export PATH=${PATH}:"${HOME}"/src/opt/local/bin
fi
if [[ $# -lt 3 ]];then
echo "Too few arguments. Aborting..." >&2 && exit 1
fi
declare -a pkgrefs
declare -a choice_key
declare -a choice_options
declare -a choice_selected
declare -a choice_force_selected
declare -a choice_title
declare -a choive_description
declare -a choice_pkgrefs
declare -a choice_parent_group_index
declare -a choice_group_items
# Init Main Group
choice_key[0]=""
choice_options[0]=""
choice_title[0]=""
choice_description[0]=""
choices_pkgrefs[0]=""
choice_group_items[0]=""
choice_group_exclusive[0]=""
# Add a new choice
addChoice () {
# Optional arguments:
# --title=<title> : Force the title
# --description=<description> : Force the description
# --group=<group> : Group Choice Id
# --start-selected=<javascript code> : Specifies whether this choice is initially selected or unselected
# --start-enabled=<javascript code> : Specifies the initial enabled state of this choice
# $1 Choice Id
local option
local title=""
local description=""
local groupChoice=""
local choiceOptions=""
local choiceSelected=""
local choiceForceSelected=""
local pkgrefs=""
# Check the arguments.
for option in "${@}";do
case "$option" in
--title=*)
shift; title="${option#*=}" ;;
--description=*)
shift; description="${option#*=}" ;;
--group=*)
shift; groupChoice=${option#*=} ;;
--selected=*)
shift; choiceOptions="$choiceOptions selected=\"${option#*=}\"" ;;
--enabled=*)
shift; choiceOptions="$choiceOptions enabled=\"${option#*=}\"" ;;
--start-selected=*)
shift; choiceOptions="$choiceOptions start_selected=\"${option#*=}\"" ;;
shift; choiceOptions="$choiceOptions start_selected=\"${option#*=}\"" ;;
--start-enabled=*)
shift; choiceOptions="$choiceOptions start_enabled=\"${option#*=}\"" ;;
shift; choiceOptions="$choiceOptions start_enabled=\"${option#*=}\"" ;;
--start-visible=*)
shift; choiceOptions="$choiceOptions start_visible=\"${option#*=}\"" ;;
--enabled=*)
shift; choiceOptions="$choiceOptions enabled=\"${option#*=}\"" ;;
--selected=*)
shift; choiceSelected="${option#*=}" ;;
--force-selected=*)
shift; choiceForceSelected="${option#*=}" ;;
--visible=*)
shift; choiceOptions="$choiceOptions visible=\"${option#*=}\"" ;;
shift; choiceOptions="$choiceOptions start_visible=\"${option#*=}\"" ;;
--pkg-refs=*)
shift; pkgrefs=${option#*=} ;;
shift; pkgrefs=${option#*=} ;;
-*)
echo "Unrecognized addChoice option '$option'" >&2
exit 1
# Record new node
choice_key[$idx]="$choiceId"
choice_title[$idx]="${title:-${choiceId}_title}"
choice_description[$idx]="${description:-${choiceId}_description}"
choice_options[$idx]=$(trim "${choiceOptions}") # Removing leading and trailing whitespace(s)
choice_selected[$idx]=$(trim "${choiceSelected}") # Removing leading and trailing whitespace(s)
choice_force_selected[$idx]=$(trim "${choiceForceSelected}") # Removing leading and trailing whitespace(s)
choice_parent_group_index[$idx]=$idx_group
choice_pkgrefs[$idx]="$pkgrefs"
# Add a group choice
addGroupChoices() {
# Optional arguments:
# --title=<title> : Force the title
# --description=<description> : Force the description
# --parent=<parent> : parent group choice id
# --exclusive_zero_or_one_choice : only zero or one choice can be selected in the group
# --exclusive_one_choice : only one choice can be selected in the group
# $1 Choice Id
local option
local title=""
local description=""
local groupChoice=""
local exclusive_function=""
local choiceOptions=
for option in "${@}";do
case "$option" in
--title=*)
shift; title="${option#*=}" ;;
--description=*)
shift; description="${option#*=}" ;;
--exclusive_zero_or_one_choice)
shift; exclusive_function="exclusive_zero_or_one_choice" ;;
--exclusive_one_choice)
shift; exclusive_function="exclusive_one_choice" ;;
--parent=*)
shift; groupChoice=${option#*=} ;;
--start-selected=*)
shift; choiceOptions+=("--start-selected=${option#*=}") ;;
--start-enabled=*)
shift; choiceOptions+=("--start-enabled=${option#*=}") ;;
--start-visible=*)
shift; choiceOptions+=("--start-visible=${option#*=}") ;;
--enabled=*)
shift; choiceOptions+=("--enabled=${option#*=}") ;;
--selected=*)
shift; choiceOptions+=("--selected=${option#*=}") ;;
-*)
-*)
echo "Unrecognized addGroupChoices option '$option'" >&2
exit 1
;;
exit 1
fi
addChoice --group="$groupChoice" --title="$title" --description="$description" ${choiceOptions[*]} "${1}"
addChoice --group="$groupChoice" "${1}"
local idx=$? # index of the new created choice
choice_group_exclusive[$idx]="$exclusive_function"
done
if [[ -n "$result" ]];then
echo "!(${result%$separator})"
else
echo "choices['$myChoice'].selected"
fi
}
# $2..$n Others choice(s) (ie: "test2" "test3"). Current can or can't be in the others choices
local myChoice="${1}"
local result;
local exclusive_one_choice_code="$(exclusive_one_choice ${@})"
echo "(my.choice.selected &amp;&amp; $(exclusive_one_choice ${@}))"
}
--subst="YAML_FILE=${yamlFile}" CleanOptions
generate_options_yaml_file "${PKG_BUILD_DIR}/${choiceId}/Scripts/$yamlFile"
cp -f ${PKGROOT}/Scripts/Main/${choiceId}postinstall ${PKG_BUILD_DIR}/${choiceId}/Scripts/postinstall
ditto --arch i386 `which SetFile` ${PKG_BUILD_DIR}/${choiceId}/Scripts/Resources/SetFile
# ditto --arch i386 `which SetFile` ${PKG_BUILD_DIR}/${choiceId}/Scripts/Resources/SetFile
packageRefId=$(getPackageRefId "${packagesidentity}" "${choiceId}")
buildpackage "$packageRefId" "${choiceId}" "${PKG_BUILD_DIR}/${choiceId}" "/"
--subst="YAML_FILE=${yamlFile}" CleanOptions
generate_options_yaml_file "${PKG_BUILD_DIR}/${choiceId}/Scripts/$yamlFile"
cp -f ${PKGROOT}/Scripts/Main/ESPpostinstall ${PKG_BUILD_DIR}/${choiceId}/Scripts/postinstall
ditto --arch i386 `which SetFile` ${PKG_BUILD_DIR}/${choiceId}/Scripts/Resources/SetFile
# ditto --arch i386 `which SetFile` ${PKG_BUILD_DIR}/${choiceId}/Scripts/Resources/SetFile
packageRefId=$(getPackageRefId "${packagesidentity}" "${choiceId}")
buildpackage "$packageRefId" "${choiceId}" "${PKG_BUILD_DIR}/${choiceId}" "/"
echo -e "\t[BUILD] ${packageName}"
find "${packagePath}" \( -name '.DS_Store' -o -name '.svn' \) -print0 | xargs -0 rm -rf
find "${packagePath}" -name '.DS_Store' -delete
local filecount=$( find "${packagePath}/Root" | wc -l )
if [ "${packageSize}" ]; then
local installedsize="${packageSize}"
for (( idx=1; idx < ${#choice_key[*]} ; idx++)); do
local choiceId=${choice_key[$idx]}
local choiceTitle=${choice_title[$idx]}
local choiceDescription=${choice_description[$idx]}
local choiceOptions=${choice_options[$idx]}
local choiceParentGroupIndex=${choice_parent_group_index[$idx]}
set +u; local group_exclusive=${choice_group_exclusive[$choiceParentGroupIndex]}; set -u
local selected_option="${choice_selected[$idx]}"
local exclusive_option=""
# Create the node and standard attributes
local choiceNode="\t<choice\n\t\tid=\"${choiceId}\"\n\t\ttitle=\"${choiceId}_title\"\n\t\tdescription=\"${choiceId}_description\""
# Create the Distribution file
ditto --noextattr --noqtn "${PKGROOT}/Distribution" "${PKG_BUILD_DIR}/${packagename}/Distribution"
makeSubstitutions "${PKG_BUILD_DIR}/${packagename}/Distribution"
local start_indent_level=2
echo -e "\n\t<choices-outline>" >> "${PKG_BUILD_DIR}/${packagename}/Distribution"
bin/po4a/po4a \
--package-name 'Chameleon' \
--package-version "${CHAMELEON_VERSION}-r${CHAMELEON_REVISION}" \
--msgmerge-opt '--lang=$lang --previous --width=79' \
--msgmerge-opt '--lang=$lang' \
--variable PODIR="po" \
--variable TEMPLATES_DIR="Resources/templates" \
--variable OUTPUT_DIR="${PKG_BUILD_DIR}/${packagename}/Resources" \
ditto --noextattr --noqtn "${PKGROOT}/Resources/common" "${PKG_BUILD_DIR}/${packagename}/Resources/en.lproj"
# CleanUp the directory
find "${PKG_BUILD_DIR}/${packagename}" \( -type d -name '.svn' \) -o -name '.DS_Store' -depth -exec rm -rf {} \;
find "${PKG_BUILD_DIR}/${packagename}" -name .svn -print0 | xargs -0 rm -rf
find "${PKG_BUILD_DIR}/${packagename}" -name '*.DS_Store' -type f -delete
find "${PKG_BUILD_DIR}/${packagename}" -type d -depth -empty -exec rmdir {} \; # Remove empty directories
# Make substitutions for version, revision, stage, developers, credits, etc..
branches/ErmaC/Enoch/package/po/en.po
26472647
26482648
26492649
2650
26512650
26522651
26532652
26542653
26552654
26562655
2657
26582656
26592657
26602658
......
33333331
33343332
33353333
3336
33373334
33383335
33393336
#. type: "IntelBroadwellx19_title"
#: Resources/templates/Localizable.strings:684
#, no-wrap
#| msgid "00002216"
msgid "07002216"
msgstr "07002216"
#. type: "IntelBroadwellx19_description"
#: Resources/templates/Localizable.strings:685
#, no-wrap
#| msgid "Set 00002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 07002216 for Intel Broadwell AAPL,ig-platform-id."
msgstr "Set 07002216 for Intel Broadwell AAPL,ig-platform-id."
#. type: "CrsActiveConfig_description"
#: Resources/templates/Localizable.strings:884
#, no-wrap
#| msgid "System Integrity Protection."
msgid "System Integrity Protection (SIP)."
msgstr "System Integrity Protection (SIP)."
branches/ErmaC/Enoch/package/po/fr.po
12991299
13001300
13011301
1302
1303
1304
1302
13051303
13061304
13071305
......
13131311
13141312
13151313
1316
1317
1318
1314
13191315
13201316
13211317
......
26702666
26712667
26722668
2673
26742669
26752670
26762671
26772672
26782673
26792674
2680
26812675
26822676
26832677
26842678
26852679
26862680
2687
26882681
26892682
26902683
26912684
26922685
26932686
2694
26952687
26962688
26972689
26982690
26992691
27002692
2701
27022693
27032694
27042695
27052696
27062697
27072698
2708
27092699
27102700
27112701
27122702
27132703
27142704
2715
27162705
27172706
27182707
27192708
27202709
27212710
2722
27232711
27242712
27252713
27262714
27272715
27282716
2729
27302717
27312718
27322719
27332720
27342721
27352722
2736
27372723
27382724
27392725
27402726
27412727
27422728
2743
27442729
27452730
27462731
27472732
27482733
27492734
2750
27512735
27522736
27532737
27542738
27552739
27562740
2757
27582741
27592742
27602743
27612744
27622745
27632746
2764
27652747
27662748
27672749
27682750
27692751
27702752
2771
27722753
27732754
27742755
27752756
27762757
27772758
2778
27792759
27802760
27812761
27822762
27832763
27842764
2785
27862765
27872766
27882767
27892768
27902769
27912770
2792
27932771
27942772
27952773
27962774
27972775
27982776
2799
28002777
28012778
28022779
28032780
28042781
28052782
2806
28072783
28082784
28092785
28102786
28112787
28122788
2813
28142789
28152790
28162791
28172792
28182793
28192794
2820
28212795
28222796
28232797
28242798
28252799
28262800
2827
28282801
28292802
28302803
28312804
28322805
28332806
2834
28352807
28362808
28372809
28382810
28392811
28402812
2841
28422813
28432814
28442815
28452816
28462817
28472818
2848
28492819
28502820
28512821
......
34883458
34893459
34903460
3491
34923461
34933462
34943463
34953464
34963465
34973466
3498
34993467
3500
3501
3502
3468
35033469
35043470
35053471
......
35423508
35433509
35443510
3545
35463511
35473512
35483513
35493514
35503515
35513516
3552
35533517
35543518
35553519
35563520
35573521
35583522
3559
35603523
35613524
35623525
......
35763539
35773540
35783541
3579
3580
3581
3542
35823543
35833544
35843545
35853546
3586
35873547
35883548
35893549
35903550
35913551
35923552
3593
35943553
35953554
35963555
35973556
35983557
35993558
3600
36013559
36023560
36033561
......
36103568
36113569
36123570
3613
36143571
36153572
36163573
......
36233580
36243581
36253582
3626
36273583
36283584
36293585
......
36313587
36323588
36333589
3634
3635
3636
3590
36373591
36383592
36393593
......
36453599
36463600
36473601
3648
3649
3650
3602
36513603
36523604
36533605
......
36593611
36603612
36613613
3662
3663
3664
3614
36653615
36663616
36673617
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
"Kext signature: Introduit en 10.9, renforcée en 10.10 (signature kext requis "
"pour tous les kexts), devenu maintenant partie de déracinés (SIP)."
msgstr "Kext signature: Introduit en 10.9, renforcée en 10.10 (signature kext requis pour tous les kexts), devenu maintenant partie de déracinés (SIP)."
#. type: "Crs2_title"
#: Resources/templates/Localizable.strings:301
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
"La protection de système de fichiers: fichiers système importants sont "
"protégés et ne peuvent être modifiés."
msgstr "La protection de système de fichiers: fichiers système importants sont protégés et ne peuvent être modifiés."
#. type: "Crs4_title"
#: Resources/templates/Localizable.strings:304
#. type: "IntelBroadwellx19_title"
#: Resources/templates/Localizable.strings:684
#, no-wrap
#| msgid "00002216"
msgid "07002216"
msgstr "07002216"
#. type: "IntelBroadwellx19_description"
#: Resources/templates/Localizable.strings:685
#, no-wrap
#| msgid "Set 00002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 07002216 for Intel Broadwell AAPL,ig-platform-id."
msgstr "Règle 07002216 pour Intel Broadwell AAPL,ig-platform-id."
#. type: "IntelSkylakex00_title"
#: Resources/templates/Localizable.strings:689
#, no-wrap
#| msgid "00000e16"
msgid "0000e019"
msgstr "0000e019"
#. type: "IntelSkylakex00_description"
#: Resources/templates/Localizable.strings:690
#, no-wrap
#| msgid "Set 00000e16 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 0000e019 for Intel Skylake AAPL,ig-platform-id."
msgstr "Règle 0000e019 pour Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex01_title"
#: Resources/templates/Localizable.strings:692
#, no-wrap
#| msgid "00001616"
msgid "00001619"
msgstr "00001619"
#. type: "IntelSkylakex01_description"
#: Resources/templates/Localizable.strings:693
#, no-wrap
#| msgid "Set 00001616 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 00001619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Règle 00001619 pour Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex02_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
#| msgid "00002616"
msgid "00002619"
msgstr "00002619"
#. type: "IntelSkylakex02_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
#| msgid "Set 00002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 00002619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Règle 00002619 pour Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex03_title"
#: Resources/templates/Localizable.strings:698
#, no-wrap
#| msgid "00001616"
msgid "00001b19"
msgstr "00001b19"
#. type: "IntelSkylakex03_description"
#: Resources/templates/Localizable.strings:699
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 00001b19 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Règle 00001b19 pour Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex04_title"
#: Resources/templates/Localizable.strings:701
#, no-wrap
#| msgid "00001616"
msgid "00001219"
msgstr "00001219"
#. type: "IntelSkylakex04_description"
#: Resources/templates/Localizable.strings:702
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 00001219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Règle 00001219 pour Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex05_title"
#: Resources/templates/Localizable.strings:704
#, no-wrap
#| msgid "01000e16"
msgid "01000219"
msgstr "01000219"
#. type: "IntelSkylakex05_description"
#: Resources/templates/Localizable.strings:705
#, no-wrap
#| msgid "Set 00002616 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 01000219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Règle 01000219 pour Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex06_title"
#: Resources/templates/Localizable.strings:707
#, no-wrap
#| msgid "01001e16"
msgid "01001719"
msgstr "01001719"
#. type: "IntelSkylakex06_description"
#: Resources/templates/Localizable.strings:708
#, no-wrap
#| msgid "Set 01000e16 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 01001719 for Intel Skylake AAPL,ig-platform-id."
msgstr "Règle 01001719 pour Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex07_title"
#: Resources/templates/Localizable.strings:710
#, no-wrap
#| msgid "01001e16"
msgid "01001219"
msgstr "01001219"
#. type: "IntelSkylakex07_description"
#: Resources/templates/Localizable.strings:711
#, no-wrap
#| msgid "Set 03001216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 01001219 for Intel Skylake AAPL,ig-platform-id."
msgstr "Règle 01001219 pour Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex08_title"
#: Resources/templates/Localizable.strings:713
#, no-wrap
#| msgid "01000e16"
msgid "01003219"
msgstr "01003219"
#. type: "IntelSkylakex08_description"
#: Resources/templates/Localizable.strings:714
#, no-wrap
#| msgid "Set 01001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 01003219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Règle 01003219 pour Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex09_title"
#: Resources/templates/Localizable.strings:716
#, no-wrap
#| msgid "02001616"
msgid "02001619"
msgstr "02001619"
#. type: "IntelSkylakex09_description"
#: Resources/templates/Localizable.strings:717
#, no-wrap
#| msgid "Set 02001616 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 02001619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Règle 02001619 pour Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex10_title"
#: Resources/templates/Localizable.strings:719
#, no-wrap
#| msgid "02002616"
msgid "02002619"
msgstr "02002619"
#. type: "IntelSkylakex10_description"
#: Resources/templates/Localizable.strings:720
#, no-wrap
#| msgid "Set 02002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 02002619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Règle 02002619 pour Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex11_title"
#: Resources/templates/Localizable.strings:722
#, no-wrap
#| msgid "00001e16"
msgid "03001e19"
msgstr "03001e19"
#. type: "IntelSkylakex11_description"
#: Resources/templates/Localizable.strings:723
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 03001e19 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Règle 03001e19 pour Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkl_title"
#: Resources/templates/Localizable.strings:923
#, no-wrap
#| msgid "Intel Azul AAPL,ig-platform-id"
msgid "Intel Skl AAPL,ig-platform-id"
msgstr "Intel Skl AAPL,ig-platform-id"
#. type: "IntelSkl_description"
#: Resources/templates/Localizable.strings:924
#, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel Haswell."
msgid "Set one AAPL,ig-platform-id to use for your Intel Skylake."
msgstr ""
"Définir une AAPL, ig-platform-id à utiliser pour votre contrôleur Intel "
"Skylake."
msgstr "Définir une AAPL, ig-platform-id à utiliser pour votre contrôleur Intel Skylake."
#. type: "HDEFPinConfiguration_title"
#: Resources/templates/Localizable.strings:927
#. type: "Patches_title"
#: Resources/templates/Localizable.strings:945
#, no-wrap
#| msgid "Kext Patcher"
msgid "Patches"
msgstr "Correctifs"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgstr "Options concernant les correctifs."
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#, no-wrap
#| msgid "Kernel Patcher"
msgid "kernel Patcher"
msgstr "kernel Patcher"
#: Resources/templates/Localizable.strings:953
#, no-wrap
msgid "Re-enable /Extra/Extensions kexts on newer OSes."
msgstr ""
"Re-activer /Extra/ Extensions kexts sur les systèmes d’exploitation plus "
"récents."
msgstr "Re-activer /Extra/ Extensions kexts sur les systèmes d’exploitation plus récents."
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelPm"
msgstr "KernelPm"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#, no-wrap
#| msgid "Power Management"
msgid "Kernel Power Management patch."
msgstr "Kernel Power Management patch."
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicError"
msgstr "KernelLapicError"
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicVersion"
msgstr "KernelLapicVersion"
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#, no-wrap
#| msgid "Kernel Flags"
msgid "KernelHaswell"
msgstr "KernelHaswell"
#: Resources/templates/Localizable.strings:969
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
"Patch pour Haswell \\\"E\\\" et support \\\"ULT\\\" sur les systèmes d’exploitation "
"plus anciens."
msgstr "Patch pour Haswell \\\"E\\\" et support \\\"ULT\\\" sur les systèmes d’exploitation plus anciens."
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
"Patch l’adresse cpuid_family pour enlever le _cpuid_set_info _panic et "
"_tsc_init _panic. Pour les CPU non pris en charge"
msgstr "Patch l’adresse cpuid_family pour enlever le _cpuid_set_info _panic et _tsc_init _panic. Pour les CPU non pris en charge"
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
"Patch pour permettre à plus d’instructions SSE3 sur les anciennes CPU pour "
"exécuter les systèmes d’exploitation plus récents."
msgstr "Patch pour permettre à plus d’instructions SSE3 sur les anciennes CPU pour exécuter les systèmes d’exploitation plus récents."
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
branches/ErmaC/Enoch/package/po/nl.po
12901290
12911291
12921292
1293
1294
1295
1296
1293
12971294
12981295
12991296
......
13051302
13061303
13071304
1308
1309
1310
1305
13111306
13121307
13131308
......
26622657
26632658
26642659
2665
26662660
26672661
26682662
26692663
26702664
26712665
2672
26732666
26742667
26752668
26762669
26772670
26782671
2679
26802672
26812673
26822674
26832675
26842676
26852677
2686
26872678
26882679
26892680
26902681
26912682
26922683
2693
26942684
26952685
26962686
26972687
26982688
26992689
2700
27012690
27022691
27032692
27042693
27052694
27062695
2707
27082696
27092697
27102698
27112699
27122700
27132701
2714
27152702
27162703
27172704
27182705
27192706
27202707
2721
27222708
27232709
27242710
27252711
27262712
27272713
2728
27292714
27302715
27312716
27322717
27332718
27342719
2735
27362720
27372721
27382722
27392723
27402724
27412725
2742
27432726
27442727
27452728
27462729
27472730
27482731
2749
27502732
27512733
27522734
27532735
27542736
27552737
2756
27572738
27582739
27592740
27602741
27612742
27622743
2763
27642744
27652745
27662746
27672747
27682748
27692749
2770
27712750
27722751
27732752
27742753
27752754
27762755
2777
27782756
27792757
27802758
27812759
27822760
27832761
2784
27852762
27862763
27872764
27882765
27892766
27902767
2791
27922768
27932769
27942770
27952771
27962772
27972773
2798
27992774
28002775
28012776
28022777
28032778
28042779
2805
28062780
28072781
28082782
28092783
28102784
28112785
2812
28132786
28142787
28152788
28162789
28172790
28182791
2819
28202792
28212793
28222794
28232795
28242796
28252797
2826
28272798
28282799
28292800
28302801
28312802
28322803
2833
28342804
28352805
28362806
28372807
28382808
28392809
2840
28412810
28422811
28432812
......
34803449
34813450
34823451
3483
34843452
34853453
34863454
34873455
34883456
34893457
3490
34913458
34923459
34933460
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
"Kext ondertekening: geïntroduceerd in 10.9, uitgebreid in 10.10 (kext "
"ondertekening is voor alle kexts vereist), is nu onderdeel van rootless "
"(SIP)"
msgstr "Kext ondertekening: geïntroduceerd in 10.9, uitgebreid in 10.10 (kext ondertekening is voor alle kexts vereist), is nu onderdeel van rootless (SIP)"
#. type: "Crs2_title"
#: Resources/templates/Localizable.strings:301
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
"Bestandssysteem beveiliging: belangrijke systeembestanden zijn beveiligd en "
"kunnen niet gewijzigd worden."
msgstr "Bestandssysteem beveiliging: belangrijke systeembestanden zijn beveiligd en kunnen niet gewijzigd worden."
#. type: "Crs4_title"
#: Resources/templates/Localizable.strings:304
#. type: "IntelBroadwellx19_title"
#: Resources/templates/Localizable.strings:684
#, no-wrap
#| msgid "00002216"
msgid "07002216"
msgstr "07002216"
#. type: "IntelBroadwellx19_description"
#: Resources/templates/Localizable.strings:685
#, no-wrap
#| msgid "Set 00002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 07002216 for Intel Broadwell AAPL,ig-platform-id."
msgstr "Zet 07002216 voor Intel Broadwell AAPL,ig-platform-id."
#. type: "IntelSkylakex00_title"
#: Resources/templates/Localizable.strings:689
#, no-wrap
#| msgid "00000e16"
msgid "0000e019"
msgstr "0000e019"
#. type: "IntelSkylakex00_description"
#: Resources/templates/Localizable.strings:690
#, no-wrap
#| msgid "Set 00000e16 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 0000e019 for Intel Skylake AAPL,ig-platform-id."
msgstr "Zet 0000e019 voor Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex01_title"
#: Resources/templates/Localizable.strings:692
#, no-wrap
#| msgid "00001616"
msgid "00001619"
msgstr "00001619"
#. type: "IntelSkylakex01_description"
#: Resources/templates/Localizable.strings:693
#, no-wrap
#| msgid "Set 00001616 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 00001619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Zet 00001619 voor Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex02_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
#| msgid "00002616"
msgid "00002619"
msgstr "00002619"
#. type: "IntelSkylakex02_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
#| msgid "Set 00002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 00002619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Zet 00002619 voor Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex03_title"
#: Resources/templates/Localizable.strings:698
#, no-wrap
#| msgid "00001616"
msgid "00001b19"
msgstr "00001b19"
#. type: "IntelSkylakex03_description"
#: Resources/templates/Localizable.strings:699
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 00001b19 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Zet 00001b19 voor Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex04_title"
#: Resources/templates/Localizable.strings:701
#, no-wrap
#| msgid "00001616"
msgid "00001219"
msgstr "00001219"
#. type: "IntelSkylakex04_description"
#: Resources/templates/Localizable.strings:702
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 00001219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Zet 00001219 voor Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex05_title"
#: Resources/templates/Localizable.strings:704
#, no-wrap
#| msgid "01000e16"
msgid "01000219"
msgstr "01000219"
#. type: "IntelSkylakex05_description"
#: Resources/templates/Localizable.strings:705
#, no-wrap
#| msgid "Set 00002616 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 01000219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Zet 01000219 voor Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex06_title"
#: Resources/templates/Localizable.strings:707
#, no-wrap
#| msgid "01001e16"
msgid "01001719"
msgstr "01001719"
#. type: "IntelSkylakex06_description"
#: Resources/templates/Localizable.strings:708
#, no-wrap
#| msgid "Set 01000e16 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 01001719 for Intel Skylake AAPL,ig-platform-id."
msgstr "Zet 01001719 voor Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex07_title"
#: Resources/templates/Localizable.strings:710
#, no-wrap
#| msgid "01001e16"
msgid "01001219"
msgstr "01001219"
#. type: "IntelSkylakex07_description"
#: Resources/templates/Localizable.strings:711
#, no-wrap
#| msgid "Set 03001216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 01001219 for Intel Skylake AAPL,ig-platform-id."
msgstr "Zet 01001219 voor Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex08_title"
#: Resources/templates/Localizable.strings:713
#, no-wrap
#| msgid "01000e16"
msgid "01003219"
msgstr "01003219"
#. type: "IntelSkylakex08_description"
#: Resources/templates/Localizable.strings:714
#, no-wrap
#| msgid "Set 01001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 01003219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Zet 01003219 voor Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex09_title"
#: Resources/templates/Localizable.strings:716
#, no-wrap
#| msgid "02001616"
msgid "02001619"
msgstr "02001619"
#. type: "IntelSkylakex09_description"
#: Resources/templates/Localizable.strings:717
#, no-wrap
#| msgid "Set 02001616 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 02001619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Zet 02001619 voor Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex10_title"
#: Resources/templates/Localizable.strings:719
#, no-wrap
#| msgid "02002616"
msgid "02002619"
msgstr "02002619"
#. type: "IntelSkylakex10_description"
#: Resources/templates/Localizable.strings:720
#, no-wrap
#| msgid "Set 02002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 02002619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Zet 02002619 voor Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex11_title"
#: Resources/templates/Localizable.strings:722
#, no-wrap
#| msgid "00001e16"
msgid "03001e19"
msgstr "03001e19"
#. type: "IntelSkylakex11_description"
#: Resources/templates/Localizable.strings:723
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 03001e19 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Zet 03001e19 voor Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkl_title"
#: Resources/templates/Localizable.strings:923
#, no-wrap
#| msgid "Intel Azul AAPL,ig-platform-id"
msgid "Intel Skl AAPL,ig-platform-id"
msgstr "Intel Skl AAPL,ig-platform-id"
#. type: "IntelSkl_description"
#: Resources/templates/Localizable.strings:924
#, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel Haswell."
msgid "Set one AAPL,ig-platform-id to use for your Intel Skylake."
msgstr "Zet een AAPL,ig-platform-id voor het gebruik van je Intel Skylake."
branches/ErmaC/Enoch/package/po/ko.po
280280
281281
282282
283
284283
285284
286285
......
351350
352351
353352
354
355353
356354
357355
358356
359357
360358
361
362359
363
364
365
360
366361
367362
368363
......
373368
374369
375370
376
377371
378
379
380
372
381373
382374
383375
......
678670
679671
680672
681
682673
683674
684675
#. type: "Stages_title"
#: Resources/templates/Localizable.strings:28
#, no-wrap
#| msgid "Chameleon Bootloader Package"
msgid "Bootloader Stages"
msgstr "부트로더 단계"
#. type: "Standard_title"
#: Resources/templates/Localizable.strings:47
#, no-wrap
#| msgid "&nbsp;has been written to the root of your chosen partition."
msgid "Install Chameleon in the chosen partition."
msgstr "선택된 파티션에 카멜레온을 설치합니다."
#. type: "Standard_description"
#: Resources/templates/Localizable.strings:48
#, no-wrap
#| msgid "Install Chameleon's files to the root of the selected partition using either boot0 or boot0md depending on your system without destroying any existing Windows installation if you have one."
msgid "Install Chameleon's files to the root of the selected partition using either boot0, boot0md or boot0hfs depending on your system without destroying any existing Windows installation if you have one."
msgstr ""
"선택된 파티션의 루트 디렉토리에 카멜레온에 필요한 파일들을 사용자의 시스템에 따라 boot0, boot0md 또는 boot0hfs 를 "
"이용하여 설치합니다. 윈도우즈가 설치되있더라도 영향을 주지 않습니다."
msgstr "선택된 파티션의 루트 디렉토리에 카멜레온에 필요한 파일들을 사용자의 시스템에 따라 boot0, boot0md 또는 boot0hfs 를 이용하여 설치합니다. 윈도우즈가 설치되있더라도 영향을 주지 않습니다."
#. type: "EFI_title"
#: Resources/templates/Localizable.strings:50
#. type: "EFI_description"
#: Resources/templates/Localizable.strings:51
#, no-wrap
#| msgid "Install Chameleon's files in the ESP (EFI System Partition) of the target volume using either boot0 or boot0md depending on your system."
msgid "Install Chameleon's files in the ESP (EFI System Partition) of the target volume using either boot0, boot0md or boot0hfs depending on your system."
msgstr ""
"평상 시 숨겨져있는 EFI (EFI System Partition) 시스템 파티션에 카멜레온에 필요한 파일들을 사용자의 시스템에 따라 "
"boot0, boot0md 또는 boot0hfs 를 이용하여 설치합니다."
msgstr "평상 시 숨겨져있는 EFI (EFI System Partition) 시스템 파티션에 카멜레온에 필요한 파일들을 사용자의 시스템에 따라 boot0, boot0md 또는 boot0hfs 를 이용하여 설치합니다."
#. type: "Module_title"
#: Resources/templates/Localizable.strings:56
#. type: "EnableHiDPI_title"
#: Resources/templates/Localizable.strings:140
#, no-wrap
#| msgid "EnableHDMIAudio=Yes"
msgid "EnableHiDPI=Yes"
msgstr "EnableHiDPI=Yes"
branches/ErmaC/Enoch/package/po/ro.po
35273527
35283528
35293529
3530
35313530
35323531
35333532
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgstr "O selectie de optiuni pentru a petici kernel-ul."
branches/ErmaC/Enoch/package/po/pt.po
12951295
12961296
12971297
1298
1299
1300
1301
1298
13021299
13031300
13041301
......
13101307
13111308
13121309
1313
1314
1315
1310
13161311
13171312
13181313
......
26672662
26682663
26692664
2670
26712665
26722666
26732667
26742668
26752669
26762670
2677
26782671
26792672
26802673
26812674
26822675
26832676
2684
26852677
26862678
26872679
26882680
26892681
26902682
2691
26922683
26932684
26942685
26952686
26962687
26972688
2698
26992689
27002690
27012691
27022692
27032693
27042694
2705
27062695
27072696
27082697
27092698
27102699
27112700
2712
27132701
27142702
27152703
27162704
27172705
27182706
2719
27202707
27212708
27222709
27232710
27242711
27252712
2726
27272713
27282714
27292715
27302716
27312717
27322718
2733
27342719
27352720
27362721
27372722
27382723
27392724
2740
27412725
27422726
27432727
27442728
27452729
27462730
2747
27482731
27492732
27502733
27512734
27522735
27532736
2754
27552737
27562738
27572739
27582740
27592741
27602742
2761
27622743
27632744
27642745
27652746
27662747
27672748
2768
27692749
27702750
27712751
27722752
27732753
27742754
2775
27762755
27772756
27782757
27792758
27802759
27812760
2782
27832761
27842762
27852763
27862764
27872765
27882766
2789
27902767
27912768
27922769
27932770
27942771
27952772
2796
27972773
27982774
27992775
28002776
28012777
28022778
2803
28042779
28052780
28062781
28072782
28082783
28092784
2810
28112785
28122786
28132787
28142788
28152789
28162790
2817
28182791
28192792
28202793
28212794
28222795
28232796
2824
28252797
28262798
28272799
28282800
28292801
28302802
2831
28322803
28332804
28342805
28352806
28362807
28372808
2838
28392809
28402810
28412811
28422812
28432813
28442814
2845
28462815
28472816
28482817
......
34853454
34863455
34873456
3488
34893457
34903458
34913459
34923460
34933461
34943462
3495
34963463
34973464
34983465
......
35353502
35363503
35373504
3538
35393505
35403506
35413507
35423508
35433509
35443510
3545
35463511
35473512
35483513
35493514
35503515
35513516
3552
35533517
35543518
35553519
......
35743538
35753539
35763540
3577
35783541
35793542
35803543
35813544
35823545
35833546
3584
35853547
35863548
35873549
35883550
35893551
35903552
3591
35923553
35933554
35943555
......
36013562
36023563
36033564
3604
36053565
36063566
36073567
......
36143574
36153575
36163576
3617
36183577
36193578
36203579
......
36223581
36233582
36243583
3625
3626
3627
3584
36283585
36293586
36303587
......
36363593
36373594
36383595
3639
3640
3641
3596
36423597
36433598
36443599
......
36503605
36513606
36523607
3653
3654
3655
3608
36563609
36573610
36583611
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
"Kext assinatura: Introduzido em 10,9, reforçada em 10,10 (assinatura kext "
"necessária para todas as kexts), agora se tornou parte de desenraizada "
"(SIP)."
msgstr "Kext assinatura: Introduzido em 10,9, reforçada em 10,10 (assinatura kext necessária para todas as kexts), agora se tornou parte de desenraizada (SIP)."
#. type: "Crs2_title"
#: Resources/templates/Localizable.strings:301
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
"Proteção do sistema de arquivos: arquivos de sistema importantes são "
"protegidos e não pode ser modificado."
msgstr "Proteção do sistema de arquivos: arquivos de sistema importantes são protegidos e não pode ser modificado."
#. type: "Crs4_title"
#: Resources/templates/Localizable.strings:304
#. type: "IntelBroadwellx19_title"
#: Resources/templates/Localizable.strings:684
#, no-wrap
#| msgid "00002216"
msgid "07002216"
msgstr "07002216"
#. type: "IntelBroadwellx19_description"
#: Resources/templates/Localizable.strings:685
#, no-wrap
#| msgid "Set 00002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 07002216 for Intel Broadwell AAPL,ig-platform-id."
msgstr "Injeta 07002216 para Intel Broadwell AAPL,ig-platform-id."
#. type: "IntelSkylakex00_title"
#: Resources/templates/Localizable.strings:689
#, no-wrap
#| msgid "00000e16"
msgid "0000e019"
msgstr "0000e019"
#. type: "IntelSkylakex00_description"
#: Resources/templates/Localizable.strings:690
#, no-wrap
#| msgid "Set 00000e16 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 0000e019 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 0000e019 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex01_title"
#: Resources/templates/Localizable.strings:692
#, no-wrap
#| msgid "00001616"
msgid "00001619"
msgstr "00001619"
#. type: "IntelSkylakex01_description"
#: Resources/templates/Localizable.strings:693
#, no-wrap
#| msgid "Set 00001616 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 00001619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 00001619 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex02_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
#| msgid "00002616"
msgid "00002619"
msgstr "00002619"
#. type: "IntelSkylakex02_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
#| msgid "Set 00002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 00002619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 00002619 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex03_title"
#: Resources/templates/Localizable.strings:698
#, no-wrap
#| msgid "00001616"
msgid "00001b19"
msgstr "00001b19"
#. type: "IntelSkylakex03_description"
#: Resources/templates/Localizable.strings:699
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 00001b19 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 00001b19 para Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex04_title"
#: Resources/templates/Localizable.strings:701
#, no-wrap
#| msgid "00001616"
msgid "00001219"
msgstr "00001219"
#. type: "IntelSkylakex04_description"
#: Resources/templates/Localizable.strings:702
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 00001219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 00001219 para Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex05_title"
#: Resources/templates/Localizable.strings:704
#, no-wrap
#| msgid "01000e16"
msgid "01000219"
msgstr "01000219"
#. type: "IntelSkylakex05_description"
#: Resources/templates/Localizable.strings:705
#, no-wrap
#| msgid "Set 00002616 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 01000219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01000219 para Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex06_title"
#: Resources/templates/Localizable.strings:707
#, no-wrap
#| msgid "01001e16"
msgid "01001719"
msgstr "01001719"
#. type: "IntelSkylakex06_description"
#: Resources/templates/Localizable.strings:708
#, no-wrap
#| msgid "Set 01000e16 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 01001719 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 01001719 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex07_title"
#: Resources/templates/Localizable.strings:710
#, no-wrap
#| msgid "01001e16"
msgid "01001219"
msgstr "01001219"
#. type: "IntelSkylakex07_description"
#: Resources/templates/Localizable.strings:711
#, no-wrap
#| msgid "Set 03001216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 01001219 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 01001219 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex08_title"
#: Resources/templates/Localizable.strings:713
#, no-wrap
#| msgid "01000e16"
msgid "01003219"
msgstr "01003219"
#. type: "IntelSkylakex08_description"
#: Resources/templates/Localizable.strings:714
#, no-wrap
#| msgid "Set 01001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 01003219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01003219 para Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex09_title"
#: Resources/templates/Localizable.strings:716
#, no-wrap
#| msgid "02001616"
msgid "02001619"
msgstr "02001619"
#. type: "IntelSkylakex09_description"
#: Resources/templates/Localizable.strings:717
#, no-wrap
#| msgid "Set 02001616 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 02001619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 02001619 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex10_title"
#: Resources/templates/Localizable.strings:719
#, no-wrap
#| msgid "02002616"
msgid "02002619"
msgstr "02002619"
#. type: "IntelSkylakex10_description"
#: Resources/templates/Localizable.strings:720
#, no-wrap
#| msgid "Set 02002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 02002619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 02002619 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex11_title"
#: Resources/templates/Localizable.strings:722
#, no-wrap
#| msgid "00001e16"
msgid "03001e19"
msgstr "03001e19"
#. type: "IntelSkylakex11_description"
#: Resources/templates/Localizable.strings:723
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 03001e19 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 03001e19 para Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkl_title"
#: Resources/templates/Localizable.strings:923
#, no-wrap
#| msgid "Intel Azul AAPL,ig-platform-id"
msgid "Intel Skl AAPL,ig-platform-id"
msgstr "Intel Skl AAPL,ig-platform-id"
#. type: "IntelSkl_description"
#: Resources/templates/Localizable.strings:924
#, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel Haswell."
msgid "Set one AAPL,ig-platform-id to use for your Intel Skylake."
msgstr "Injeta um AAPL,ig-platform-id para usar na sua Intel Skylake."
#. type: "Patches_title"
#: Resources/templates/Localizable.strings:945
#, no-wrap
#| msgid "Kext Patcher"
msgid "Patches"
msgstr "Patches"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgstr "Selecione um patch para o kernel."
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#, no-wrap
#| msgid "Kernel Patcher"
msgid "kernel Patcher"
msgstr "kernel Patcher"
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelPm"
msgstr "KernelPm"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#, no-wrap
#| msgid "Power Management"
msgid "Kernel Power Management patch."
msgstr "Kernel Power Management patch."
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicError"
msgstr "KernelLapicError"
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicVersion"
msgstr "KernelLapicVersion"
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#, no-wrap
#| msgid "Kernel Flags"
msgid "KernelHaswell"
msgstr "KernelHaswell"
#: Resources/templates/Localizable.strings:969
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
"Patch para Haswell \\\"E\\\" e support \\\"ULT\\ em sistemas operacionais mais "
"antigos."
msgstr "Patch para Haswell \\\"E\\\" e support \\\"ULT\\ em sistemas operacionais mais antigos."
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
"Corrigir o endereço cpuid_family para remover o _cpuid_set_info _panic e "
"_tsc_init _panic. Para CPUs sem suporte"
msgstr "Corrigir o endereço cpuid_family para remover o _cpuid_set_info _panic e _tsc_init _panic. Para CPUs sem suporte"
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
"Patch para permitir mais instruções SSE3 em CPUs mais velhos para executar "
"sistemas operacionais mais recentes."
msgstr "Patch para permitir mais instruções SSE3 em CPUs mais velhos para executar sistemas operacionais mais recentes."
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
branches/ErmaC/Enoch/package/po/pt-BR.po
12951295
12961296
12971297
1298
1299
1300
1301
1298
13021299
13031300
13041301
......
13101307
13111308
13121309
1313
1314
1315
1310
13161311
13171312
13181313
......
26672662
26682663
26692664
2670
26712665
26722666
26732667
26742668
26752669
26762670
2677
26782671
26792672
26802673
26812674
26822675
26832676
2684
26852677
26862678
26872679
26882680
26892681
26902682
2691
26922683
26932684
26942685
26952686
26962687
26972688
2698
26992689
27002690
27012691
27022692
27032693
27042694
2705
27062695
27072696
27082697
27092698
27102699
27112700
2712
27132701
27142702
27152703
27162704
27172705
27182706
2719
27202707
27212708
27222709
27232710
27242711
27252712
2726
27272713
27282714
27292715
27302716
27312717
27322718
2733
27342719
27352720
27362721
27372722
27382723
27392724
2740
27412725
27422726
27432727
27442728
27452729
27462730
2747
27482731
27492732
27502733
27512734
27522735
27532736
2754
27552737
27562738
27572739
27582740
27592741
27602742
2761
27622743
27632744
27642745
27652746
27662747
27672748
2768
27692749
27702750
27712751
27722752
27732753
27742754
2775
27762755
27772756
27782757
27792758
27802759
27812760
2782
27832761
27842762
27852763
27862764
27872765
27882766
2789
27902767
27912768
27922769
27932770
27942771
27952772
2796
27972773
27982774
27992775
28002776
28012777
28022778
2803
28042779
28052780
28062781
28072782
28082783
28092784
2810
28112785
28122786
28132787
28142788
28152789
28162790
2817
28182791
28192792
28202793
28212794
28222795
28232796
2824
28252797
28262798
28272799
28282800
28292801
28302802
2831
28322803
28332804
28342805
28352806
28362807
28372808
2838
28392809
28402810
28412811
28422812
28432813
28442814
2845
28462815
28472816
28482817
......
32063175
32073176
32083177
3209
3210
3211
3212
3213
3178
32143179
32153180
32163181
......
34893454
34903455
34913456
3492
34933457
34943458
34953459
34963460
34973461
34983462
3499
35003463
35013464
35023465
......
35393502
35403503
35413504
3542
35433505
35443506
35453507
35463508
35473509
35483510
3549
35503511
35513512
35523513
35533514
35543515
35553516
3556
35573517
35583518
35593519
......
35783538
35793539
35803540
3581
35823541
35833542
35843543
35853544
35863545
35873546
3588
35893547
35903548
35913549
35923550
35933551
35943552
3595
35963553
35973554
35983555
......
36053562
36063563
36073564
3608
36093565
36103566
36113567
......
36183574
36193575
36203576
3621
36223577
36233578
36243579
......
36263581
36273582
36283583
3629
3630
3631
3584
36323585
36333586
36343587
......
36403593
36413594
36423595
3643
3644
3645
3596
36463597
36473598
36483599
......
36543605
36553606
36563607
3657
3658
3659
3608
36603609
36613610
36623611
#: Resources/templates/Localizable.strings:299
#, no-wrap
msgid "Kext signing: Introduced in 10.9, enhanced in 10.10 (kext signing required for all kexts), now become part of rootless(SIP)."
msgstr ""
"Kext assinatura: Introduzido em 10,9, reforçada em 10,10 (assinatura kext "
"necessária para todas as kexts), agora se tornou parte de desenraizada "
"(SIP)."
msgstr "Kext assinatura: Introduzido em 10,9, reforçada em 10,10 (assinatura kext necessária para todas as kexts), agora se tornou parte de desenraizada (SIP)."
#. type: "Crs2_title"
#: Resources/templates/Localizable.strings:301
#: Resources/templates/Localizable.strings:302
#, no-wrap
msgid "Filesystem protection: Important system files are protected and cannot be modified."
msgstr ""
"Proteção do sistema de arquivos: arquivos de sistema importantes são "
"protegidos e não pode ser modificado."
msgstr "Proteção do sistema de arquivos: arquivos de sistema importantes são protegidos e não pode ser modificado."
#. type: "Crs4_title"
#: Resources/templates/Localizable.strings:304
#. type: "IntelBroadwellx19_title"
#: Resources/templates/Localizable.strings:684
#, no-wrap
#| msgid "00002216"
msgid "07002216"
msgstr "07002216"
#. type: "IntelBroadwellx19_description"
#: Resources/templates/Localizable.strings:685
#, no-wrap
#| msgid "Set 00002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 07002216 for Intel Broadwell AAPL,ig-platform-id."
msgstr "Injeta 07002216 para Intel Broadwell AAPL,ig-platform-id."
#. type: "IntelSkylakex00_title"
#: Resources/templates/Localizable.strings:689
#, no-wrap
#| msgid "00000e16"
msgid "0000e019"
msgstr "0000e019"
#. type: "IntelSkylakex00_description"
#: Resources/templates/Localizable.strings:690
#, no-wrap
#| msgid "Set 00000e16 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 0000e019 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 0000e019 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex01_title"
#: Resources/templates/Localizable.strings:692
#, no-wrap
#| msgid "00001616"
msgid "00001619"
msgstr "00001619"
#. type: "IntelSkylakex01_description"
#: Resources/templates/Localizable.strings:693
#, no-wrap
#| msgid "Set 00001616 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 00001619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 00001619 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex02_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
#| msgid "00002616"
msgid "00002619"
msgstr "00002619"
#. type: "IntelSkylakex02_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
#| msgid "Set 00002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 00002619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 00002619 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex03_title"
#: Resources/templates/Localizable.strings:698
#, no-wrap
#| msgid "00001616"
msgid "00001b19"
msgstr "00001b19"
#. type: "IntelSkylakex03_description"
#: Resources/templates/Localizable.strings:699
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 00001b19 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 00001b19 para Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex04_title"
#: Resources/templates/Localizable.strings:701
#, no-wrap
#| msgid "00001616"
msgid "00001219"
msgstr "00001219"
#. type: "IntelSkylakex04_description"
#: Resources/templates/Localizable.strings:702
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 00001219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 00001219 para Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex05_title"
#: Resources/templates/Localizable.strings:704
#, no-wrap
#| msgid "01000e16"
msgid "01000219"
msgstr "01000219"
#. type: "IntelSkylakex05_description"
#: Resources/templates/Localizable.strings:705
#, no-wrap
#| msgid "Set 00002616 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 01000219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01000219 para Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex06_title"
#: Resources/templates/Localizable.strings:707
#, no-wrap
#| msgid "01001e16"
msgid "01001719"
msgstr "01001719"
#. type: "IntelSkylakex06_description"
#: Resources/templates/Localizable.strings:708
#, no-wrap
#| msgid "Set 01000e16 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 01001719 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 01001719 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex07_title"
#: Resources/templates/Localizable.strings:710
#, no-wrap
#| msgid "01001e16"
msgid "01001219"
msgstr "01001219"
#. type: "IntelSkylakex07_description"
#: Resources/templates/Localizable.strings:711
#, no-wrap
#| msgid "Set 03001216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 01001219 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 01001219 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex08_title"
#: Resources/templates/Localizable.strings:713
#, no-wrap
#| msgid "01000e16"
msgid "01003219"
msgstr "01003219"
#. type: "IntelSkylakex08_description"
#: Resources/templates/Localizable.strings:714
#, no-wrap
#| msgid "Set 01001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 01003219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 01003219 para Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex09_title"
#: Resources/templates/Localizable.strings:716
#, no-wrap
#| msgid "02001616"
msgid "02001619"
msgstr "02001619"
#. type: "IntelSkylakex09_description"
#: Resources/templates/Localizable.strings:717
#, no-wrap
#| msgid "Set 02001616 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 02001619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 02001619 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex10_title"
#: Resources/templates/Localizable.strings:719
#, no-wrap
#| msgid "02002616"
msgid "02002619"
msgstr "02002619"
#. type: "IntelSkylakex10_description"
#: Resources/templates/Localizable.strings:720
#, no-wrap
#| msgid "Set 02002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 02002619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Injeta 02002619 para Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex11_title"
#: Resources/templates/Localizable.strings:722
#, no-wrap
#| msgid "00001e16"
msgid "03001e19"
msgstr "03001e19"
#. type: "IntelSkylakex11_description"
#: Resources/templates/Localizable.strings:723
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 03001e19 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Injeta 03001e19 para Intel Skylake (Mobile) AAPL,ig-platform-id."
#: Resources/templates/Localizable.strings:823
#, no-wrap
msgid "Rootless is a new feature introduced in OS X 10.11 (El Capitan), and it disallows modifying system files. To by-passing this restriction, this strict feature can be disabled by adding a 'rootless=0' boot arg. ('rootless=1' enable it)"
msgstr ""
"Rootless é um novo recurso introduzido no OS X 10.11 (El Capitan), e ele não "
"permite modificações nos arquivos do sistema. Para contornar esta "
"restrição, esse recurso pode ser desativado adicionando um 'rootless = 0' "
"boot arg. ('rootless = 1' habilitá-lo)"
msgstr "Rootless é um novo recurso introduzido no OS X 10.11 (El Capitan), e ele não permite modificações nos arquivos do sistema. Para contornar esta restrição, esse recurso pode ser desativado adicionando um 'rootless = 0' boot arg. ('rootless = 1' habilitá-lo)"
#. type: "Dart0_title"
#: Resources/templates/Localizable.strings:825
#. type: "IntelSkl_title"
#: Resources/templates/Localizable.strings:923
#, no-wrap
#| msgid "Intel Azul AAPL,ig-platform-id"
msgid "Intel Skl AAPL,ig-platform-id"
msgstr "Intel Skl AAPL,ig-platform-id"
#. type: "IntelSkl_description"
#: Resources/templates/Localizable.strings:924
#, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel Haswell."
msgid "Set one AAPL,ig-platform-id to use for your Intel Skylake."
msgstr "Injeta um AAPL,ig-platform-id para usar na sua Intel Skylake."
#. type: "Patches_title"
#: Resources/templates/Localizable.strings:945
#, no-wrap
#| msgid "Kext Patcher"
msgid "Patches"
msgstr "Patches"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgstr "Selecione um patch para o kernel."
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#, no-wrap
#| msgid "Kernel Patcher"
msgid "kernel Patcher"
msgstr "kernel Patcher"
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelPm"
msgstr "KernelPm"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#, no-wrap
#| msgid "Power Management"
msgid "Kernel Power Management patch."
msgstr "Kernel Power Management patch."
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicError"
msgstr "KernelLapicError"
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicVersion"
msgstr "KernelLapicVersion"
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#, no-wrap
#| msgid "Kernel Flags"
msgid "KernelHaswell"
msgstr "KernelHaswell"
#: Resources/templates/Localizable.strings:969
#, no-wrap
msgid "Patch for Haswell \\\"E\\\" and \\\"ULT\\\" support on older OSes."
msgstr ""
"Patch para Haswell \\\"E\\\" e support \\\"ULT\\ em sistemas operacionais mais "
"antigos."
msgstr "Patch para Haswell \\\"E\\\" e support \\\"ULT\\ em sistemas operacionais mais antigos."
#. type: "KernelcpuFamily_title"
#: Resources/templates/Localizable.strings:972
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
"Corrigir o endereço cpuid_family para remover o _cpuid_set_info _panic e "
"_tsc_init _panic. Para CPUs sem suporte"
msgstr "Corrigir o endereço cpuid_family para remover o _cpuid_set_info _panic e _tsc_init _panic. Para CPUs sem suporte"
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
"Patch para permitir mais instruções SSE3 em CPUs mais velhos para executar "
"sistemas operacionais mais recentes."
msgstr "Patch para permitir mais instruções SSE3 em CPUs mais velhos para executar sistemas operacionais mais recentes."
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982
branches/ErmaC/Enoch/package/po/ru.po
293293
294294
295295
296
297296
298297
299298
......
307306
308307
309308
310
311
312
313
314
315
309
310
311
316312
317313
318314
......
361357
362358
363359
364
365
360
366361
367362
368363
369364
370365
371
372366
373367
374368
375369
376370
377371
378
379372
380
381
382
383
373
384374
385375
386376
......
391381
392382
393383
394
395384
396
397
398
385
399386
400387
401388
......
674661
675662
676663
677
678664
679665
680666
......
687673
688674
689675
690
691676
692677
693678
......
695680
696681
697682
698
699
700
683
701684
702685
703686
......
757740
758741
759742
760
761
762
743
763744
764745
765746
......
24362417
24372418
24382419
2439
24402420
24412421
24422422
24432423
24442424
24452425
2446
24472426
24482427
24492428
......
24562435
24572436
24582437
2459
24602438
24612439
24622440
......
25292507
25302508
25312509
2532
25332510
2534
2535
2511
25362512
25372513
25382514
25392515
2540
25412516
25422517
25432518
25442519
25452520
25462521
2547
25482522
25492523
25502524
......
25572531
25582532
25592533
2560
25612534
2562
2563
2535
25642536
25652537
25662538
25672539
2568
25692540
25702541
25712542
25722543
25732544
25742545
2575
25762546
2577
2578
2547
25792548
25802549
25812550
25822551
2583
25842552
25852553
25862554
25872555
25882556
25892557
2590
25912558
2592
2593
2559
25942560
25952561
25962562
......
26072573
26082574
26092575
2610
26112576
26122577
26132578
26142579
26152580
26162581
2617
26182582
26192583
26202584
26212585
26222586
26232587
2624
26252588
26262589
26272590
26282591
26292592
26302593
2631
26322594
26332595
26342596
26352597
26362598
26372599
2638
26392600
26402601
26412602
26422603
26432604
26442605
2645
26462606
26472607
26482608
26492609
26502610
26512611
2652
26532612
26542613
26552614
26562615
26572616
26582617
2659
26602618
26612619
26622620
26632621
26642622
26652623
2666
26672624
26682625
26692626
26702627
26712628
26722629
2673
26742630
2675
2676
2631
26772632
26782633
26792634
26802635
2681
26822636
26832637
26842638
26852639
26862640
26872641
2688
26892642
2690
2691
2643
26922644
26932645
26942646
26952647
2696
26972648
26982649
26992650
27002651
27012652
27022653
2703
27042654
2705
2706
2655
27072656
27082657
27092658
......
27142663
27152664
27162665
2717
27182666
27192667
27202668
27212669
27222670
27232671
2724
27252672
27262673
27272674
27282675
27292676
27302677
2731
27322678
27332679
27342680
......
27412687
27422688
27432689
2744
27452690
2746
2747
2691
27482692
27492693
27502694
27512695
2752
27532696
27542697
27552698
27562699
27572700
27582701
2759
27602702
27612703
27622704
27632705
27642706
27652707
2766
27672708
27682709
27692710
27702711
27712712
27722713
2773
27742714
27752715
27762716
27772717
27782718
27792719
2780
27812720
27822721
27832722
27842723
27852724
27862725
2787
27882726
2789
2790
2727
27912728
27922729
27932730
......
28952832
28962833
28972834
2898
2899
2900
2901
2902
2835
29032836
29042837
29052838
......
30192952
30202953
30212954
3022
3023
3024
2955
30252956
30262957
30272958
......
31523083
31533084
31543085
3155
3156
3157
3158
3159
3086
31603087
31613088
31623089
......
34333360
34343361
34353362
3436
34373363
34383364
34393365
34403366
34413367
34423368
3443
34443369
3445
3446
3447
3370
34483371
34493372
34503373
......
34853408
34863409
34873410
3488
34893411
34903412
34913413
34923414
34933415
34943416
3495
34963417
34973418
34983419
34993420
35003421
35013422
3502
35033423
35043424
35053425
......
35243444
35253445
35263446
3527
35283447
35293448
35303449
35313450
35323451
35333452
3534
35353453
35363454
35373455
35383456
35393457
35403458
3541
35423459
35433460
35443461
......
35513468
35523469
35533470
3554
35553471
35563472
35573473
......
35643480
35653481
35663482
3567
35683483
35693484
35703485
......
35843499
35853500
35863501
3587
3588
3589
3502
35903503
35913504
35923505
......
35983511
35993512
36003513
3601
3602
3603
3514
36043515
36053516
36063517
#. type: "Stages_title"
#: Resources/templates/Localizable.strings:28
#, no-wrap
#| msgid "Chameleon Bootloader Package"
msgid "Bootloader Stages"
msgstr "Этапы загрузчика"
"boot is always copied to the target partition when you are skipping one or more stages."
msgstr ""
"Здесь вы можете полностью или частично пропустить установку загрузчика.\n"
"Это может быть полезно, если вы хотите записать файлы в Extra, или "
"пропустить какой-либо этап (0,1 и активация целевого раздела).\n"
"Пропуск всех этапов разрешает вам оставить все, как уже рабочие загрузочные "
"сектора, особенно полезно с 4k дисками.\n"
"загрузка всегда копируется на целевой раздел когда вы пропускаете один или "
"несколько этапов."
"Это может быть полезно, если вы хотите записать файлы в Extra, или пропустить какой-либо этап (0,1 и активация целевого раздела).\n"
"Пропуск всех этапов разрешает вам оставить все, как уже рабочие загрузочные сектора, особенно полезно с 4k дисками.\n"
"загрузка всегда копируется на целевой раздел когда вы пропускаете один или несколько этапов."
#. type: "SkipStage0_title"
#: Resources/templates/Localizable.strings:34
"Stage 2 is always copied/replaced."
msgstr ""
"Предотвращает активацию целевого раздела.\n"
"На некоторых старых материнских платах плохая реализация GPT в биосе, и они "
"не могут определить разделы, помеченные как Guid Partition Table.\n"
"На некоторых старых материнских платах плохая реализация GPT в биосе, и они не могут определить разделы, помеченные как Guid Partition Table.\n"
"Этап 2 всегда копируется/перемещается."
#. type: "Standard_title"
#: Resources/templates/Localizable.strings:47
#, no-wrap
#| msgid "&nbsp;has been written to the root of your chosen partition."
msgid "Install Chameleon in the chosen partition."
msgstr "Установить Chameleon в указанный раздел."
#. type: "Standard_description"
#: Resources/templates/Localizable.strings:48
#, no-wrap
#| msgid "Install Chameleon's files to the root of the selected partition using either boot0 or boot0md depending on your system without destroying any existing Windows installation if you have one."
msgid "Install Chameleon's files to the root of the selected partition using either boot0, boot0md or boot0hfs depending on your system without destroying any existing Windows installation if you have one."
msgstr ""
"Установка файлов Chameleon в корень выбранного раздела используя boot0, "
"boot0md или boot0hfs основываясь на вашей системе, без уничтожения любой "
"установленной копии Windows, если таковая имеется."
msgstr "Установка файлов Chameleon в корень выбранного раздела используя boot0, boot0md или boot0hfs основываясь на вашей системе, без уничтожения любой установленной копии Windows, если таковая имеется."
#. type: "EFI_title"
#: Resources/templates/Localizable.strings:50
#. type: "EFI_description"
#: Resources/templates/Localizable.strings:51
#, no-wrap
#| msgid "Install Chameleon's files in the ESP (EFI System Partition) of the target volume using either boot0 or boot0md depending on your system."
msgid "Install Chameleon's files in the ESP (EFI System Partition) of the target volume using either boot0, boot0md or boot0hfs depending on your system."
msgstr ""
"Установка файлов Chameleon в ESP (системный раздел EFI) целевого тома "
"используя boot0, boot0md или boot0hfs основываясь на вашей системе."
msgstr "Установка файлов Chameleon в ESP (системный раздел EFI) целевого тома используя boot0, boot0md или boot0hfs основываясь на вашей системе."
#. type: "Module_title"
#: Resources/templates/Localizable.strings:56
#. type: "EnableHiDPI_title"
#: Resources/templates/Localizable.strings:140
#, no-wrap
#| msgid "EnableHDMIAudio=Yes"
msgid "EnableHiDPI=Yes"
msgstr "EnableHiDPI=Yes"
#. type: "BlackMode_title"
#: Resources/templates/Localizable.strings:143
#, no-wrap
#| msgid "Wake=Yes"
msgid "BlackMode=Yes"
msgstr "BlackMode=Yes"
#: Resources/templates/Localizable.strings:144
#, no-wrap
msgid "The new BlackMode loads the white Apple logo, instead of the gray Apple logo, on a black background."
msgstr ""
"Новый режим BlackMode загружает белый логотип Apple, вместо серого логотипа "
"Apple на черном фоне."
msgstr "Новый режим BlackMode загружает белый логотип Apple, вместо серого логотипа Apple на черном фоне."
#. type: "InstantMenu_title"
#: Resources/templates/Localizable.strings:146
#: Resources/templates/Localizable.strings:159
#, no-wrap
msgid "Show masked data (serial number) in bdmesg log (enbaled by default)."
msgstr ""
"Показать скрытую информацию (серийный номер) в логе bdmesg (по умолчанию "
"включено)."
msgstr "Показать скрытую информацию (серийный номер) в логе bdmesg (по умолчанию включено)."
#. type: "USBBusFix_title"
#: Resources/templates/Localizable.strings:163
#. type: "IntelBroadwellx06_title"
#: Resources/templates/Localizable.strings:645
#, no-wrap
#| msgid "00002604"
msgid "00002216"
msgstr "00002216"
#. type: "IntelBroadwellx06_description"
#: Resources/templates/Localizable.strings:646
#, no-wrap
#| msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 00002216 for Intel Broadwell AAPL,ig-platform-id."
msgstr "Установить 00002216 в качестве Intel Broadwell AAPL,ig-platform-id."
#. type: "IntelBroadwellx07_description"
#: Resources/templates/Localizable.strings:649
#, no-wrap
#| msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 01000e16 for Intel Broadwell AAPL,ig-platform-id."
msgstr "Установить 01000e16 в качестве Intel Broadwell AAPL,ig-platform-id."
#. type: "IntelBroadwellx13_description"
#: Resources/templates/Localizable.strings:667
#, no-wrap
#| msgid "Set 02001604 for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 02002b16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgstr ""
"Установить 02002b16 в качестве Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgstr "Установить 02002b16 в качестве Intel Broadwell (Mobile) AAPL,ig-platform-id."
#. type: "IntelBroadwellx14_title"
#: Resources/templates/Localizable.strings:669
#, no-wrap
#| msgid "0300220d"
msgid "03001216"
msgstr "03001216"
#. type: "IntelBroadwellx14_description"
#: Resources/templates/Localizable.strings:670
#, no-wrap
#| msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 03001216 for Intel Broadwell AAPL,ig-platform-id."
msgstr "Установить 03001216 в качестве Intel Broadwell AAPL,ig-platform-id."
#. type: "IntelBroadwellx15_description"
#: Resources/templates/Localizable.strings:673
#, no-wrap
#| msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 04002b16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgstr ""
"Установить 04002b16 в качестве Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgstr "Установить 04002b16 в качестве Intel Broadwell (Mobile) AAPL,ig-platform-id."
#. type: "IntelBroadwellx16_title"
#: Resources/templates/Localizable.strings:675
#, no-wrap
#| msgid "00002604"
msgid "04002616"
msgstr "04002616"
#. type: "IntelBroadwellx16_description"
#: Resources/templates/Localizable.strings:676
#, no-wrap
#| msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 04002616 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgstr ""
"Установить 04002616 в качестве Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgstr "Установить 04002616 в качестве Intel Broadwell (Mobile) AAPL,ig-platform-id."
#. type: "IntelBroadwellx17_title"
#: Resources/templates/Localizable.strings:678
#, no-wrap
#| msgid "0500260a"
msgid "05002616"
msgstr "05002616"
#. type: "IntelBroadwellx17_description"
#: Resources/templates/Localizable.strings:679
#, no-wrap
#| msgid "Set 0500260a for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 05002616 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgstr ""
"Установить 05002616 в качестве Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgstr "Установить 05002616 в качестве Intel Broadwell (Mobile) AAPL,ig-platform-id."
#. type: "IntelBroadwellx18_title"
#: Resources/templates/Localizable.strings:681
#. type: "IntelBroadwellx19_title"
#: Resources/templates/Localizable.strings:684
#, no-wrap
#| msgid "00002604"
msgid "07002216"
msgstr "07002216"
#. type: "IntelBroadwellx19_description"
#: Resources/templates/Localizable.strings:685
#, no-wrap
#| msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 07002216 for Intel Broadwell AAPL,ig-platform-id."
msgstr "Установить 07002216 в качестве Intel Broadwell AAPL,ig-platform-id."
#. type: "IntelSkylakex00_title"
#: Resources/templates/Localizable.strings:689
#, no-wrap
#| msgid "00000e16"
msgid "0000e019"
msgstr "0000e019"
#. type: "IntelSkylakex00_description"
#: Resources/templates/Localizable.strings:690
#, no-wrap
#| msgid "Set 00000e16 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 0000e019 for Intel Skylake AAPL,ig-platform-id."
msgstr "Установить 0000e019 в качестве Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex01_title"
#: Resources/templates/Localizable.strings:692
#, no-wrap
#| msgid "00001616"
msgid "00001619"
msgstr "00001619"
#. type: "IntelSkylakex01_description"
#: Resources/templates/Localizable.strings:693
#, no-wrap
#| msgid "Set 00001616 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 00001619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Установить 00001619 в качестве Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex02_title"
#: Resources/templates/Localizable.strings:695
#, no-wrap
#| msgid "00002616"
msgid "00002619"
msgstr "00002619"
#. type: "IntelSkylakex02_description"
#: Resources/templates/Localizable.strings:696
#, no-wrap
#| msgid "Set 00002604 for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 00002619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Установить 00002619 в качестве IntelSkylake AAPL,ig-platform-id."
#. type: "IntelSkylakex03_title"
#: Resources/templates/Localizable.strings:698
#, no-wrap
#| msgid "00001616"
msgid "00001b19"
msgstr "00001b19"
#. type: "IntelSkylakex03_description"
#: Resources/templates/Localizable.strings:699
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 00001b19 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr ""
"Установить 00001b19 в качестве Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Установить 00001b19 в качестве Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex04_title"
#: Resources/templates/Localizable.strings:701
#, no-wrap
#| msgid "00001616"
msgid "00001219"
msgstr "00001219"
#. type: "IntelSkylakex04_description"
#: Resources/templates/Localizable.strings:702
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 00001219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr ""
"Установить 00001219 в качестве Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Установить 00001219 в качестве Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex05_title"
#: Resources/templates/Localizable.strings:704
#, no-wrap
#| msgid "01660002"
msgid "01000219"
msgstr "01000219"
#. type: "IntelSkylakex05_description"
#: Resources/templates/Localizable.strings:705
#, no-wrap
#| msgid "Set 00002616 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 01000219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr ""
"Установить 01000219 в качестве Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Установить 01000219 в качестве Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex06_title"
#: Resources/templates/Localizable.strings:707
#. type: "IntelSkylakex06_description"
#: Resources/templates/Localizable.strings:708
#, no-wrap
#| msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 01001719 for Intel Skylake AAPL,ig-platform-id."
msgstr "Установить 01001719 в качестве Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex07_title"
#: Resources/templates/Localizable.strings:710
#, no-wrap
#| msgid "0300220d"
msgid "01001219"
msgstr "01001219"
#. type: "IntelSkylakex07_description"
#: Resources/templates/Localizable.strings:711
#, no-wrap
#| msgid "Set 00001604 for Intel Haswell (Mobile) AAPL,ig-platform-id."
msgid "Set 01001219 for Intel Skylake AAPL,ig-platform-id."
msgstr "Установить 01001219 в качестве IntelSkylake AAPL,ig-platform-id."
#. type: "IntelSkylakex08_description"
#: Resources/templates/Localizable.strings:714
#, no-wrap
#| msgid "Set 01001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 01003219 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr ""
"Установить 01003219 в качестве Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Установить 01003219 в качестве Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "IntelSkylakex09_title"
#: Resources/templates/Localizable.strings:716
#, no-wrap
#| msgid "02001616"
msgid "02001619"
msgstr "02001619"
#. type: "IntelSkylakex09_description"
#: Resources/templates/Localizable.strings:717
#, no-wrap
#| msgid "Set 02001616 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 02001619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Установить 02001619 в качестве Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex10_title"
#: Resources/templates/Localizable.strings:719
#, no-wrap
#| msgid "02002616"
msgid "02002619"
msgstr "02002619"
#. type: "IntelSkylakex10_description"
#: Resources/templates/Localizable.strings:720
#, no-wrap
#| msgid "Set 02002216 for Intel Broadwell AAPL,ig-platform-id."
msgid "Set 02002619 for Intel Skylake AAPL,ig-platform-id."
msgstr "Установить 02002619 в качестве Intel Skylake AAPL,ig-platform-id."
#. type: "IntelSkylakex11_title"
#: Resources/templates/Localizable.strings:722
#, no-wrap
#| msgid "00001e16"
msgid "03001e19"
msgstr "03001e19"
#. type: "IntelSkylakex11_description"
#: Resources/templates/Localizable.strings:723
#, no-wrap
#| msgid "Set 00001e16 for Intel Broadwell (Mobile) AAPL,ig-platform-id."
msgid "Set 03001e19 for Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr ""
"Установить 03001e19 в качестве Intel Skylake (Mobile) AAPL,ig-platform-id."
msgstr "Установить 03001e19 в качестве Intel Skylake (Mobile) AAPL,ig-platform-id."
#. type: "AD2000B_PinConf_title"
#: Resources/templates/Localizable.strings:727
#: Resources/templates/Localizable.strings:754
#, no-wrap
msgid "If YES, hda-gfx=onboard-1 will be injected into the GFX0 and HDEF devices. Also, if an ATI or Nvidia HDMI device is present, they'll be assigned to onboard-2. If NO, then ATI or Nvidia devices will get onboard-1 as well as the HDAU device if present."
msgstr ""
"Если \"Да\", hda-gfx=onboard-1 будет инжектировано в устройства GFX0 и HDEF. "
"Также, если присуствует устройство HDMI от ATI или Nvidia, они будут "
"назначены в onboard-2. Если \"Нет\", тогда устройства от ATI или Nvidia "
"получат onboard-1, также как и устройство HDAU, если имеется."
msgstr "Если \"Да\", hda-gfx=onboard-1 будет инжектировано в устройства GFX0 и HDEF. Также, если присуствует устройство HDMI от ATI или Nvidia, они будут назначены в onboard-2. Если \"Нет\", тогда устройства от ATI или Nvidia получат onboard-1, также как и устройство HDAU, если имеется."
#. type: "UseAtiROM_title"
#: Resources/templates/Localizable.strings:756
#: Resources/templates/Localizable.strings:784
#, no-wrap
msgid "If you have two cards Nvidia and wants to inject only first one then you can set this parameter (enabled by default)."
msgstr ""
"Если у вас две карты Nvidia и вы хотите инжектировать только первую, тогда "
"установите данный параметр (включен по умолчанию)."
msgstr "Если у вас две карты Nvidia и вы хотите инжектировать только первую, тогда установите данный параметр (включен по умолчанию)."
#. type: "Verbose_title"
#: Resources/templates/Localizable.strings:790
#: Resources/templates/Localizable.strings:823
#, no-wrap
msgid "Rootless is a new feature introduced in OS X 10.11 (El Capitan), and it disallows modifying system files. To by-passing this restriction, this strict feature can be disabled by adding a 'rootless=0' boot arg. ('rootless=1' enable it)"
msgstr ""
"Rootless - новая возможность представленная в OS X 10.11 (El Capitan). Она "
"не позволяет модифицировать системные файлы. Чтобы обойти это ограничение, "
"эту обязательную возможность можно отключить, добавив флаг 'rootless=0' "
"('rootless=1' включает её)."
msgstr "Rootless - новая возможность представленная в OS X 10.11 (El Capitan). Она не позволяет модифицировать системные файлы. Чтобы обойти это ограничение, эту обязательную возможность можно отключить, добавив флаг 'rootless=0' ('rootless=1' включает её)."
#. type: "Dart0_title"
#: Resources/templates/Localizable.strings:825
#. type: "IntelSkl_title"
#: Resources/templates/Localizable.strings:923
#, no-wrap
#| msgid "Intel Azul AAPL,ig-platform-id"
msgid "Intel Skl AAPL,ig-platform-id"
msgstr "Intel Skl AAPL,ig-platform-id"
#. type: "IntelSkl_description"
#: Resources/templates/Localizable.strings:924
#, no-wrap
#| msgid "Set one AAPL,ig-platform-id to use for your Intel Haswell."
msgid "Set one AAPL,ig-platform-id to use for your Intel Skylake."
msgstr ""
"Выберите значение AAPL,ig-platform-id, используемое по умолчанию для "
"графического процессора Intel Skylake."
msgstr "Выберите значение AAPL,ig-platform-id, используемое по умолчанию для графического процессора Intel Skylake."
#. type: "HDEFPinConfiguration_title"
#: Resources/templates/Localizable.strings:927
#. type: "Patches_title"
#: Resources/templates/Localizable.strings:945
#, no-wrap
#| msgid "Kext Patcher"
msgid "Patches"
msgstr "Патчи"
#. type: "Patches_description"
#: Resources/templates/Localizable.strings:946
#, no-wrap
#| msgid "A selection of options that deal with video."
msgid "A selection of options to patch the kernel."
msgstr "Выбор параметров патча ядра."
#. type: "kernelPatcher_title"
#: Resources/templates/Localizable.strings:948
#, no-wrap
#| msgid "Kernel Patcher"
msgid "kernel Patcher"
msgstr "Патч ядра"
#. type: "KernelPm_title"
#: Resources/templates/Localizable.strings:956
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelPm"
msgstr "KernelPm"
#. type: "KernelPm_description"
#: Resources/templates/Localizable.strings:957
#, no-wrap
#| msgid "Power Management"
msgid "Kernel Power Management patch."
msgstr "Патч ядра управления питанием."
#. type: "KernelLapicError_title"
#: Resources/templates/Localizable.strings:960
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicError"
msgstr "KernelLapicError"
#. type: "KernelLapicVersion_title"
#: Resources/templates/Localizable.strings:964
#, no-wrap
#| msgid "Kernel Patcher"
msgid "KernelLapicVersion"
msgstr "KernelLapicVersion"
#. type: "KernelHaswell_title"
#: Resources/templates/Localizable.strings:968
#, no-wrap
#| msgid "Kernel Flags"
msgid "KernelHaswell"
msgstr "KernelHaswell"
#: Resources/templates/Localizable.strings:973
#, no-wrap
msgid "Patch the cpuid_family address to remove the _cpuid_set_info _panic and _tsc_init _panic. For unsupported CPUs"
msgstr ""
"Патч cpuid_family, что убрать паники the _cpuid_set_info _panic и _tsc_init "
"_panic. Для неподдерживаемых CPU."
msgstr "Патч cpuid_family, что убрать паники the _cpuid_set_info _panic и _tsc_init _panic. Для неподдерживаемых CPU."
#. type: "KernelSSE3_title"
#: Resources/templates/Localizable.strings:976
#: Resources/templates/Localizable.strings:977
#, no-wrap
msgid "Patch to enable more SSE3 instructions on older CPUs to run newer OSes."
msgstr ""
"Патч для включения дополнительных инструкций SSE3 на старых CPU для запуска "
"новых OS."
msgstr "Патч для включения дополнительных инструкций SSE3 на старых CPU для запуска новых OS."
#. type: "Themes_title"
#: Resources/templates/Localizable.strings:982

Archive Download the corresponding diff file

Revision: 2813