diff --git a/CloverPackage/makeiso b/CloverPackage/makeiso index f6bf53652..49fd461ba 100755 --- a/CloverPackage/makeiso +++ b/CloverPackage/makeiso @@ -136,7 +136,7 @@ cp -f ${CLOVERROOT}/EFI/CLOVER/drivers/$DRIVERS_OFF/$DRIVERS_UEFI/FileSystem/Fat ${IMGROOT}/EFI/CLOVER/drivers/$DRIVERS_UEFI/ # Memory fix UEFI -cp -f ${CLOVERROOT}/EFI/CLOVER/drivers/$DRIVERS_OFF/$DRIVERS_UEFI/MemoryFix/OsxAptioFix3Drv.efi \ +cp -f ${CLOVERROOT}/EFI/CLOVER/drivers/$DRIVERS_OFF/$DRIVERS_UEFI/MemoryFix/OpenRuntime.efi \ ${IMGROOT}/EFI/CLOVER/drivers/$DRIVERS_UEFI/ # HID UEFI diff --git a/CloverPackage/package/Resources/templates/Localizable.strings b/CloverPackage/package/Resources/templates/Localizable.strings index 661ba5610..1f3cb6e92 100644 --- a/CloverPackage/package/Resources/templates/Localizable.strings +++ b/CloverPackage/package/Resources/templates/Localizable.strings @@ -98,7 +98,7 @@ off directory isn't loaded by Clover any how and this is only helpfull if you ha "AppleUISupport_description" = "Set of protocols for support EfiLoginUi for FileVault."; "AppleUITheme_description" = "Create boot UI Themes support"; "AptioInputFix_description" = "Driver to fix input problems on UEFI firmware such as AMI Aptio."; -"AptioMemoryFix_description" = "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio"; +"AptioMemoryFix_description" = "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio"; "AudioDxe_description" = "HDA driver to play Startup Sound"; "FirmwareVolume_description" = "Create FirmwareVolume with cursor images"; "FSInject_description" = "Provide injection of kexts from Clover folder."; @@ -140,8 +140,8 @@ off directory isn't loaded by Clover any how and this is only helpfull if you ha "AppleUISupport.UEFI_description" = "Set of protocols for support EfiLoginUi for FileVault."; "AppleUITheme.UEFI_description" = "Create boot UI Themes support"; "AptioInputFix.UEFI_description" = "Driver to fix input problems on UEFI firmware such as AMI Aptio."; -"AptioMemoryFix.UEFI_description" = "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio"; -"OcQuirks.UEFI_description" = "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency."; +"AptioMemoryFix.UEFI_description" = "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio"; +"OcQuirks.UEFI_description" = "No more needed. Install OpenRuntime.efi only."; "AudioDxe.UEFI_description" = "HDA driver to play Startup Sound at boot time"; "CsmVideoDxe.UEFI_description" = "64bit video driver for Clover GUI allowing to choose more resolutions. It is based on CSM module in UEFI BIOS and required CSM will be enabled. diff --git a/CloverPackage/package/Scripts.templates/MemoryFix/postinstall b/CloverPackage/package/Scripts.templates/MemoryFix/postinstall index 82851a44b..e84bc2356 100755 --- a/CloverPackage/package/Scripts.templates/MemoryFix/postinstall +++ b/CloverPackage/package/Scripts.templates/MemoryFix/postinstall @@ -20,17 +20,6 @@ driver_name="@DRIVER_NAME@" if [[ -d "$EFI_ROOT_DIR/EFI/CLOVER/drivers/$driver_dir" ]]; then cd "$EFI_ROOT_DIR/EFI/CLOVER/drivers/$driver_dir" - if [[ "$driver_name" == OcQuirks.efi ]]; then - for driver in *.efi - do - low=$(echo "${driver}" | tr '[:upper:]' '[:lower:]') - if [[ "$driver" != $driver_name ]] && \ - [[ "$low" == *aptiofix* || "$low" == *memfix* || "$low" == *memoryfix* ]]; then - echo "Removing ${driver_dir}/${driver} because $driver_name is installed" >> "$install_log" - rm -f "${driver}" - fi - done - else for driver in *.efi do low=$(echo "${driver}" | tr '[:upper:]' '[:lower:]') @@ -41,5 +30,4 @@ if [[ -d "$EFI_ROOT_DIR/EFI/CLOVER/drivers/$driver_dir" ]]; then rm -f "${driver}" fi done - fi fi diff --git a/CloverPackage/package/buildpkg.sh b/CloverPackage/package/buildpkg.sh index 84dbd145f..4d6ff89b9 100755 --- a/CloverPackage/package/buildpkg.sh +++ b/CloverPackage/package/buildpkg.sh @@ -37,9 +37,9 @@ declare NOEXTRAS="" while [[ $# -gt 0 ]]; do case "${1}" in - --srcroot ) declare -r SRCROOT="${2}"; shift;; # ie. edk2/Clover/CloverPackage - --symroot ) declare -r SYMROOT="${2}"; shift;; # ie. edk2/Clover/CloverPackage/sym - --builddir ) declare -r PKG_BUILD_DIR="${2}"; shift;; # ie. edk2/Clover/CloverPackage/sym/package + --srcroot ) declare -r SRCROOT="${2}"; shift;; # ie. src/Clover/CloverPackage + --symroot ) declare -r SYMROOT="${2}"; shift;; # ie. src/Clover/CloverPackage/sym + --builddir ) declare -r PKG_BUILD_DIR="${2}"; shift;; # ie. src/Clover/CloverPackage/sym/package --nothemes ) NOEXTRAS+=", Clover Themes";; --noprefpane ) NOEXTRAS+=", Clover Prefpane/Clover Updater";; --norc ) NOEXTRAS+=", RC scripts";; @@ -82,7 +82,7 @@ COL_RESET="\x1b[39;49;00m" # ====== REVISION/VERSION ====== # stage CLOVER_STAGE=${RC/Release Candidate } -CLOVER_STAGE=${CLOVER_STAGE/FINAL/2.2 Final} +CLOVER_STAGE=${CLOVER_STAGE/FINAL/5.1 Final} declare -r CLOVER_STAGE declare -r CLOVER_REVISION=$( cat revision ) if [[ -d "$(dirname ${SRCROOT})"/.git ]];then diff --git a/CloverPackage/package/po/clover.pot b/CloverPackage/package/po/clover.pot index b3487c693..7a4d71ec6 100644 --- a/CloverPackage/package/po/clover.pot +++ b/CloverPackage/package/po/clover.pot @@ -6,8 +6,8 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Clover r5123\n" -"POT-Creation-Date: 2020-10-04 07:34+0300\n" +"Project-Id-Version: Clover r5125\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -524,7 +524,7 @@ msgstr "" #: Resources/templates/Localizable.strings:101 Resources/templates/Localizable.strings:143 #, no-wrap msgid "" -"Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI " +"Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI " "Aptio" msgstr "" @@ -659,9 +659,7 @@ msgstr "" #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "" -"A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and " -"all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" diff --git a/CloverPackage/package/po/de.po b/CloverPackage/package/po/de.po index b51c94a19..b08bd5870 100644 --- a/CloverPackage/package/po/de.po +++ b/CloverPackage/package/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2020-03-08 18:53+0100\n" "Last-Translator: vector sigma\n" "Language-Team: ge \n" @@ -576,9 +576,10 @@ msgstr "Treiber zur Unterstützung von Computern mit einer AMI Aptio BIOS UEFI-F #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Aktuell empfohlener 64Bit-Treiber um Speicherprobleme in der UEFI-Firmware von AMI Aptio zu beheben. Dieser Treiber sollte NICHT mit anderen AptioFix Treibern verwendet werden" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Alter Treiber zur Behebung von UEFI Firmware Speicherproblem, wie z.B. in AMI Aptio. Dieser Treiber sollte NICHT mit anderen AptioFix Treibern zusammen verwendet werden" #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -712,7 +713,7 @@ msgstr "Erstellt ein optionales AppleGraphicsConfig Protokoll" #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1397,6 +1398,9 @@ msgstr "Setze das EFI Verzeichnis" msgid "Unknown" msgstr "Unbekannt" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Aktuell empfohlener 64Bit-Treiber um Speicherprobleme in der UEFI-Firmware von AMI Aptio zu beheben. Dieser Treiber sollte NICHT mit anderen AptioFix Treibern verwendet werden" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/en.po b/CloverPackage/package/po/en.po index 8ed035dc2..0185146bf 100644 --- a/CloverPackage/package/po/en.po +++ b/CloverPackage/package/po/en.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: \n" "Last-Translator: vector sigma\n" "Language-Team: en \n" @@ -570,9 +570,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -709,7 +710,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1398,6 +1399,9 @@ msgstr "Set EFI directory" msgid "Unknown" msgstr "Unknown" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." + #~ msgid "Clover v2" #~ msgstr "Clover v2.5k" diff --git a/CloverPackage/package/po/es.po b/CloverPackage/package/po/es.po index eb56c51b5..9c62ecb7b 100644 --- a/CloverPackage/package/po/es.po +++ b/CloverPackage/package/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:38+0200\n" "Last-Translator: vector sigma\n" "Language-Team: es \n" @@ -573,9 +573,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Controlador 64bit para solucionar problemas de memoria en firmware UEFI como el caso de AMI Aptio" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -709,7 +710,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1413,6 +1414,9 @@ msgstr "Defina la carpeta EFI" msgid "Unknown" msgstr "Desconocido" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Controlador 64bit para solucionar problemas de memoria en firmware UEFI como el caso de AMI Aptio" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/fr.po b/CloverPackage/package/po/fr.po index b2196b74a..c873e9d48 100644 --- a/CloverPackage/package/po/fr.po +++ b/CloverPackage/package/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: \n" "Last-Translator: vector sigma\n" "Language-Team: en \n" @@ -587,9 +587,10 @@ msgstr "Pilote pour corriger les problèmes d’entrée des Firmware UEFI tels q #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Pilote 64 bit pour corriger les problèmes de mémoire sur les firmwares UEFI tels que les AMI Aptio." +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Ancien pilote 64 bit pour résoudre les problèmes de mémoire avec certains firmwares UEFI tels que AMI Aptio." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -723,7 +724,7 @@ msgstr "Crée un protocole optionnel AppleGraphicsConfig." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1417,6 +1418,9 @@ msgstr "Définir le répertoire EFI" msgid "Unknown" msgstr "Inconnu" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Pilote 64 bit pour corriger les problèmes de mémoire sur les firmwares UEFI tels que les AMI Aptio." + #~ msgid "Clover v2" #~ msgstr "Clover v2.5k" diff --git a/CloverPackage/package/po/hr.po b/CloverPackage/package/po/hr.po index b88c10f1a..934b8a06b 100644 --- a/CloverPackage/package/po/hr.po +++ b/CloverPackage/package/po/hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:39+0200\n" "Last-Translator: vector sigma\n" "Language-Team: hr \n" @@ -570,9 +570,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "64 bitna verzija upravljačkog programa koji popravlja probleme alociranja mamorije na AMI Aptio pločama. " +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -706,7 +707,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1407,6 +1408,9 @@ msgstr "Odaberi EFI direktorij" msgid "Unknown" msgstr "Nepoznat" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "64 bitna verzija upravljačkog programa koji popravlja probleme alociranja mamorije na AMI Aptio pločama. " + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/id.po b/CloverPackage/package/po/id.po index 043876c32..3cbaf473c 100644 --- a/CloverPackage/package/po/id.po +++ b/CloverPackage/package/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2019-07-20 10:15+0700\n" "Last-Translator: Badruzeus\n" "Language-Team: id \n" @@ -575,9 +575,10 @@ msgstr "Driver untuk membenahi masalah Input pada firmware UEFI, misalnya AMI Ap #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Driver 64-bit pilihan untuk membenahi masalah Memori pada firmware UEFI, misalnya AMI Aptio. Firmware lainnya mungkin juga kompatibel." +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Driver 64-bit lawas untuk membenahi masalah Memory pada firmware UEFI misalnya AMI Aptio." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -716,7 +717,7 @@ msgstr "Membuat protokol AppleGraphicsConfig opsional" #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1418,6 +1419,9 @@ msgstr "Setel direktori EFI" msgid "Unknown" msgstr "Tidak diketahui" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Driver 64-bit pilihan untuk membenahi masalah Memori pada firmware UEFI, misalnya AMI Aptio. Firmware lainnya mungkin juga kompatibel." + #~ msgid "Clover v2" #~ msgstr "Clover v2.5k" diff --git a/CloverPackage/package/po/it.po b/CloverPackage/package/po/it.po index d4afa4aeb..5fcd3fa44 100644 --- a/CloverPackage/package/po/it.po +++ b/CloverPackage/package/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2019-07-13 10:25+0200\n" "Last-Translator: vector sigma\n" "Language-Team: it \n" @@ -575,9 +575,10 @@ msgstr "Driver che risolve i problemi di input nei firmware UEFI come AMI Aptio. #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Driver a 64 bit preferito che risolve i problemi di memoria sul firmware UEFI come AMI Aptio bios." +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Vecchio driver per risolvere i problemi di memoria nei firmware UEFI come AMI Aptio. Da non usare con altri driver di tipo AptioFix insieme." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -711,7 +712,7 @@ msgstr "Crea il protocollo opzionale AppleGraphicsConfig." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1408,6 +1409,9 @@ msgstr "Imposta la directory EFI" msgid "Unknown" msgstr "Sconosciuto" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Driver a 64 bit preferito che risolve i problemi di memoria sul firmware UEFI come AMI Aptio bios." + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/ja.po b/CloverPackage/package/po/ja.po index 9fd7ec559..6e325f902 100644 --- a/CloverPackage/package/po/ja.po +++ b/CloverPackage/package/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:41+0200\n" "Last-Translator: vector sigma\n" "Language-Team: \n" @@ -568,9 +568,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "AMI AptioなどのUEFIファームウェアでメモリーの問題を修正する64bitドライバ" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -704,7 +705,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1406,6 +1407,9 @@ msgstr "EFIディレクトリを設定" msgid "Unknown" msgstr "不明" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "AMI AptioなどのUEFIファームウェアでメモリーの問題を修正する64bitドライバ" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/ko.po b/CloverPackage/package/po/ko.po index d65f93178..0a8d673e7 100644 --- a/CloverPackage/package/po/ko.po +++ b/CloverPackage/package/po/ko.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: \n" "Last-Translator: vector sigma\n" "Language-Team: ko \n" @@ -578,9 +578,10 @@ msgstr "AMI Aptio와 같은 UEFI 펌웨어의 입력 문제를 해결하는 드 #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "AMI Aptio와 같은 UEFI 펌웨어에서 메모리 문제를 해결하기 위해 선호되는 64비트 드라이버" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "이전 64 비트 드라이버로 AMI Aptio와 같은 UEFI 펌웨어의 메모리 문제를 해결할 수 있습니다. 다른 AptioFix와 함께 사용하지 마십시오." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -714,7 +715,7 @@ msgstr "선택적 AppleGraphicsConfig 프로토콜을 만듭니다." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1408,6 +1409,9 @@ msgstr "EFI 디렉토리를 설정하세요" msgid "Unknown" msgstr "알 수 없음" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "AMI Aptio와 같은 UEFI 펌웨어에서 메모리 문제를 해결하기 위해 선호되는 64비트 드라이버" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/lv.po b/CloverPackage/package/po/lv.po index 5107ca64e..06d512844 100644 --- a/CloverPackage/package/po/lv.po +++ b/CloverPackage/package/po/lv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:42+0200\n" "Last-Translator: vector sigma\n" "Language-Team: \n" @@ -577,9 +577,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Driveris atmiņas problemu koreikcijai, kas ir sastopama AMI Aptio un dažu citu OEM UEFI produkcijā." +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -713,7 +714,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1415,6 +1416,9 @@ msgstr "Iestātīt EFI direktoriju" msgid "Unknown" msgstr "Nav zinams" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Driveris atmiņas problemu koreikcijai, kas ir sastopama AMI Aptio un dažu citu OEM UEFI produkcijā." + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/nl.po b/CloverPackage/package/po/nl.po index eb40cb19e..fcab404ca 100644 --- a/CloverPackage/package/po/nl.po +++ b/CloverPackage/package/po/nl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2019-07-14 12:37+0200\n" "Last-Translator: vector sigma\n" "Language-Team: \n" @@ -572,9 +572,10 @@ msgstr "Stuurprogramma voor het corrigeren van invoer-problemen op UEFI firmware #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr " 64bit voorkeursstuurprogramma voor het corrigeren van geheugen problemen op UEFI firmware zoals een AMI Aptio" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Oude 64bit stuurprogramma voor het corrigeren van geheugen-problemen op UEFI firmware zoals AMI Aptio" #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -708,7 +709,7 @@ msgstr "Creëer het optionele AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1403,6 +1404,9 @@ msgstr "Instellen EFI map" msgid "Unknown" msgstr "Onbekend" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr " 64bit voorkeursstuurprogramma voor het corrigeren van geheugen problemen op UEFI firmware zoals een AMI Aptio" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/pl.po b/CloverPackage/package/po/pl.po index b174aec73..1ffc187ea 100644 --- a/CloverPackage/package/po/pl.po +++ b/CloverPackage/package/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:43+0200\n" "Last-Translator: vector sigma\n" "Language-Team: pl \n" @@ -578,9 +578,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Sterownik (64-ro bitowy) naprawiający problem z pamięcią w trybie UEFI na BIOSach AMI Aptio." +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -714,7 +715,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1417,6 +1418,9 @@ msgstr "Ustaw lokalizację EFI" msgid "Unknown" msgstr "Nieznany" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Sterownik (64-ro bitowy) naprawiający problem z pamięcią w trybie UEFI na BIOSach AMI Aptio." + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/pt-BR.po b/CloverPackage/package/po/pt-BR.po index beb115d69..eaa8838fa 100644 --- a/CloverPackage/package/po/pt-BR.po +++ b/CloverPackage/package/po/pt-BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:44+0200\n" "Last-Translator: vector sigma\n" "Language-Team: pt \n" @@ -570,9 +570,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Driver de 64bit para corrigir problemas de Memória em Firmware UEFI como em AMI Aptio BIOS" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -706,7 +707,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1408,6 +1409,9 @@ msgstr "Definir a pasta EFI" msgid "Unknown" msgstr "Desconhecido" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Driver de 64bit para corrigir problemas de Memória em Firmware UEFI como em AMI Aptio BIOS" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/pt.po b/CloverPackage/package/po/pt.po index e1756edb7..4f5afeae2 100644 --- a/CloverPackage/package/po/pt.po +++ b/CloverPackage/package/po/pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2019-07-19 10:48+0100\n" "Last-Translator: vector sigma\n" "Language-Team: pt \n" @@ -564,9 +564,10 @@ msgstr "Driver para corrigir problemas de input em UEFI firmware como em AMI Ap #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Driver de 64bit para corrigir problemas de Memória em Firmware UEFI como em AMI Aptio BIOS" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Antigo 64-bits Driver para resolver problemas de memória em UEFI bios como os de AMI . Não use com outros drivers de memória." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -700,7 +701,7 @@ msgstr "Criar AppleGraphicsConfig protocolo opcional." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1394,6 +1395,9 @@ msgstr "Defina directório EFI" msgid "Unknown" msgstr "Desconhecido" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Driver de 64bit para corrigir problemas de Memória em Firmware UEFI como em AMI Aptio BIOS" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/ro.po b/CloverPackage/package/po/ro.po index 3328bab7c..cbf747a08 100644 --- a/CloverPackage/package/po/ro.po +++ b/CloverPackage/package/po/ro.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2019-07-14 21:16+0300\n" "Last-Translator: vector sigma\n" "Language-Team: ro \n" @@ -575,9 +575,10 @@ msgstr "Driver pentru rezolvarea problemelor de introducere a textului la firmwa #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "Driver 64-bit pentru rezolvarea problemelor de memorie la firmware-ele UEFI, cum ar fi AMI Aptio" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Driver 64-bit vechi pentru rezolvarea problemelor de memorie la firmware-ele UEFI, cum ar fi AMI Aptio. A nu se folosi impreuna cu AptioFix" #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -711,7 +712,7 @@ msgstr "Creeaza protocolul optional AppleGraphicsConfig" #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1405,6 +1406,9 @@ msgstr "Setati directorul EFI" msgid "Unknown" msgstr "Necunoscut" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "Driver 64-bit pentru rezolvarea problemelor de memorie la firmware-ele UEFI, cum ar fi AMI Aptio" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/ru.po b/CloverPackage/package/po/ru.po index 01aa5f6be..988d28fe7 100644 --- a/CloverPackage/package/po/ru.po +++ b/CloverPackage/package/po/ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: \n" "Last-Translator: vector sigma\n" "Language-Team: ru \n" @@ -577,11 +577,12 @@ msgstr "Исправляет ошибки UEFI при работе с устро #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" msgstr "" -"Исправляет ошибки памяти, имеющиеся в AMI Aptio и некоторых других UEFI.\n" -"Не рекомендуется ставить совместно с другими AptioFix." +"Старый вариант коррекции ошибок памяти для AMI Aptio и некоторымх других UEFI.\n" +"Не использовать совместно с другими AptioFix. Не поддерживает работу встроенного NVRAM." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -714,10 +715,9 @@ msgstr "Поддержка протокола AppleGraphicsConfig." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 -#, fuzzy, no-wrap -#| msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency" -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." -msgstr "Драйвер, заменяющий AptioMemoryFix с выбором набора фиксов. Также необходим OpenRuntime.efi для работы в паре." +#, no-wrap +msgid "No more needed. Install OpenRuntime.efi only." +msgstr "" #. type: "AudioDxe.UEFI_description" #: Resources/templates/Localizable.strings:145 @@ -1401,6 +1401,16 @@ msgstr "Установить папку EFI" msgid "Unknown" msgstr "Неизвестно" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "" +#~ "Исправляет ошибки памяти, имеющиеся в AMI Aptio и некоторых других UEFI.\n" +#~ "Не рекомендуется ставить совместно с другими AptioFix." + +#, fuzzy +#~| msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency" +#~ msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +#~ msgstr "Драйвер, заменяющий AptioMemoryFix с выбором набора фиксов. Также необходим OpenRuntime.efi для работы в паре." + #~ msgid "Clover v2" #~ msgstr "Clover v2.5k" diff --git a/CloverPackage/package/po/tr.po b/CloverPackage/package/po/tr.po index 244e2a024..a8b3dc406 100644 --- a/CloverPackage/package/po/tr.po +++ b/CloverPackage/package/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:46+0200\n" "Last-Translator: vector sigma\n" "Language-Team: \n" @@ -570,9 +570,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "AMI Aptio gibi UEFI Firmware'lerdeki bellek sorunlarını çözen 64bit sürücü" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -706,7 +707,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1408,6 +1409,9 @@ msgstr "EFI dizinini belirle" msgid "Unknown" msgstr "Bilinmeyen" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "AMI Aptio gibi UEFI Firmware'lerdeki bellek sorunlarını çözen 64bit sürücü" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/uk.po b/CloverPackage/package/po/uk.po index 89dabb034..d1e5dde09 100644 --- a/CloverPackage/package/po/uk.po +++ b/CloverPackage/package/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:47+0200\n" "Last-Translator: vector sigma\n" "Language-Team: ua \n" @@ -583,9 +583,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "64-бітний драйвер виправляє помилки пам'яті, які створює AMI Aptio UEFI" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -719,7 +720,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1421,6 +1422,9 @@ msgstr "Встановити EFI каталог" msgid "Unknown" msgstr "Невідомо" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "64-бітний драйвер виправляє помилки пам'яті, які створює AMI Aptio UEFI" + #~ msgid "Clover v2" #~ msgstr "Кловер версія 2" diff --git a/CloverPackage/package/po/uk_UA.po b/CloverPackage/package/po/uk_UA.po index 5fc342b95..a3ee6e76b 100644 --- a/CloverPackage/package/po/uk_UA.po +++ b/CloverPackage/package/po/uk_UA.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:47+0200\n" "Last-Translator: vector sigma\n" "Language-Team: ua \n" @@ -583,9 +583,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "64-бітний драйвер виправляє помилки пам'яті, які створює AMI Aptio UEFI" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -719,7 +720,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1421,6 +1422,9 @@ msgstr "Встановити EFI каталог" msgid "Unknown" msgstr "Невідомо" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "64-бітний драйвер виправляє помилки пам'яті, які створює AMI Aptio UEFI" + #~ msgid "Clover v2" #~ msgstr "Кловер версія 2" diff --git a/CloverPackage/package/po/vi.po b/CloverPackage/package/po/vi.po index c009f5615..c8e44cca3 100644 --- a/CloverPackage/package/po/vi.po +++ b/CloverPackage/package/po/vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:47+0200\n" "Last-Translator: vector sigma\n" "Language-Team: en \n" @@ -578,9 +578,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "64bit driver giúp sửa các lỗi liên quan đến bộ nhớ RAM trên các nền tảng UEFI như AMI Aptio" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -714,7 +715,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1415,6 +1416,9 @@ msgstr "Thiết lập thư mục EFI" msgid "Unknown" msgstr "Không xác định." +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "64bit driver giúp sửa các lỗi liên quan đến bộ nhớ RAM trên các nền tảng UEFI như AMI Aptio" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/zh_CN.po b/CloverPackage/package/po/zh_CN.po index 1e009ff09..11474b406 100644 --- a/CloverPackage/package/po/zh_CN.po +++ b/CloverPackage/package/po/zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2019-08-09 19:03-0400\n" "Last-Translator: vector sigma\n" "Language-Team: zh_CN \n" @@ -560,9 +560,10 @@ msgstr "修正 UEFI 固件 输入问题, 例如 AMI Aptio。" #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "64位版本, 提供 UEFI 固件的 内存问题修正, 例如 AMI Aptio" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "老版 64位版本 驱动, 修正 UEFI 固件 内存问题, 例如 AMI Aptio" #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -696,7 +697,7 @@ msgstr "新建 可选的 AppleGraphicsConfig 协议" #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1382,6 +1383,9 @@ msgstr "设置 EFI 目录" msgid "Unknown" msgstr "未知" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "64位版本, 提供 UEFI 固件的 内存问题修正, 例如 AMI Aptio" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/CloverPackage/package/po/zh_TW.po b/CloverPackage/package/po/zh_TW.po index 0ff3d8c00..7e38b5e6a 100644 --- a/CloverPackage/package/po/zh_TW.po +++ b/CloverPackage/package/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clover 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-17 15:12+0200\n" +"POT-Creation-Date: 2020-10-19 22:25+0300\n" "PO-Revision-Date: 2018-10-02 11:48+0200\n" "Last-Translator: vector sigma\n" "Language-Team: zh_TW \n" @@ -570,9 +570,10 @@ msgstr "Driver to fix input problems on UEFI firmware such as AMI Aptio." #. type: "AptioMemoryFix.UEFI_description" #: Resources/templates/Localizable.strings:101 #: Resources/templates/Localizable.strings:143 -#, no-wrap -msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" -msgstr "64位,提供 UEFI 韌體的 記憶體問題修正,如 AMI Aptio 等。" +#, fuzzy, no-wrap +#| msgid "Old 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgid "Obsolete 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +msgstr "Old 64-bits Driver to fix Memory problems on UEFI firmware such as AMI Aptio. Do not use with other AptioFix together." #. type: "AudioDxe_description" #: Resources/templates/Localizable.strings:102 @@ -706,7 +707,7 @@ msgstr "Create optional AppleGraphicsConfig protocol." #. type: "OcQuirks.UEFI_description" #: Resources/templates/Localizable.strings:144 #, no-wrap -msgid "A drop in replacement EFI driver for Clover that replaces AptioMemoryFix and all OsxAptioFix variants. Installs OpenRuntime.efi as dependency." +msgid "No more needed. Install OpenRuntime.efi only." msgstr "" #. type: "AudioDxe.UEFI_description" @@ -1409,6 +1410,9 @@ msgstr "設定 EFI 資料夾" msgid "Unknown" msgstr "未知" +#~ msgid "Preferred 64bit driver to fix Memory problems on UEFI firmware such as AMI Aptio" +#~ msgstr "64位,提供 UEFI 韌體的 記憶體問題修正,如 AMI Aptio 等。" + #~ msgid "Clover v2" #~ msgstr "Clover v2" diff --git a/ebuild.sh b/ebuild.sh index cf1874f8e..c4656bd24 100755 --- a/ebuild.sh +++ b/ebuild.sh @@ -879,15 +879,13 @@ MainPostBuildScript() { done # drivers64UEFI/MemoryFix - binArray=( OsxAptioFixDrv OsxLowMemFixDrv OsxAptioFix3Drv AptioMemoryFix OcQuirks OpenRuntime ) + binArray=( OpenRuntime ) for efi in "${binArray[@]}" do copyBin "$BUILD_DIR_ARCH"/$efi.efi "$CLOVER_PKG_DIR"/EFI/CLOVER/drivers/$DRIVERS_OFF/$DRIVERS_UEFI/MemoryFix/$efi.efi done - copyBin "${CLOVERROOT}"/MemoryFix/OcQuirks/OcQuirks.plist "$CLOVER_PKG_DIR"/EFI/CLOVER/drivers/$DRIVERS_OFF/$DRIVERS_UEFI/MemoryFix/ - # Applications echo "Copy Applications:" copyBin "$BUILD_DIR_ARCH"/bdmesg.efi "$CLOVER_PKG_DIR"/EFI/CLOVER/tools/ diff --git a/hebuild.sh b/hebuild.sh index 344773859..e83908639 100755 --- a/hebuild.sh +++ b/hebuild.sh @@ -848,15 +848,13 @@ MainPostBuildScript() { done # drivers64UEFI/MemoryFix - binArray=( OsxAptioFixDrv OsxLowMemFixDrv OsxAptioFix3Drv AptioMemoryFix OcQuirks OpenRuntime ) + binArray=( OpenRuntime ) for efi in "${binArray[@]}" do copyBin "$BUILD_DIR_ARCH"/$efi.efi "$CLOVER_PKG_DIR"/EFI/CLOVER/drivers/$DRIVERS_OFF/$DRIVERS_UEFI/MemoryFix/$efi.efi done - copyBin "${CLOVERROOT}"/MemoryFix/OcQuirks/OcQuirks.plist "$CLOVER_PKG_DIR"/EFI/CLOVER/drivers/$DRIVERS_OFF/$DRIVERS_UEFI/MemoryFix/ - # Applications echo "Copy Applications:" copyBin "$BUILD_DIR_ARCH"/bdmesg.efi "$CLOVER_PKG_DIR"/EFI/CLOVER/tools/