diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index fdb0763e..1d45057d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -41,15 +41,15 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: cpp - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v2 + uses: microsoft/setup-msbuild@v3 with: msbuild-architecture: x64 @@ -57,4 +57,4 @@ jobs: run: msbuild ${{env.SOLUTION_FILE_PATH}} /m /p:Configuration=${{ env.BUILD_CONFIGURATION}},Platform=${{ env.TARGET_PLATFORM }} - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index da40284e..bbee991e 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: recursive @@ -45,7 +45,7 @@ jobs: run: echo "${{github.workspace}}/cov-analysis-win64/bin" >> $GITHUB_PATH - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v2 + uses: microsoft/setup-msbuild@v3 - name: Build with Coverity run: | @@ -53,7 +53,7 @@ jobs: cov-build.exe --dir cov-int msbuild ${{ env.SOLUTION_FILE_PATH }} /m /p:Configuration=${{ env.BUILD_CONFIGURATION }},Platform=${{ env.TARGET_PLATFORM }} - name: Publish Coverity artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: cov-int path: cov-int/ diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 9f85edcf..b2e77d6c 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -9,7 +9,7 @@ jobs: lock: runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@v5 + - uses: dessant/lock-threads@v6 with: github-token: ${{ secrets.GITHUB_TOKEN }} issue-inactive-days: '90' diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml index b62435b5..d59adfd5 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -54,7 +54,7 @@ jobs: upx - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: recursive @@ -85,6 +85,23 @@ jobs: strip ./${{ matrix.exe }} upx --lzma --best ./${{ matrix.exe }} + - name: Prepare to sign ALPHA + if: ${{ !startsWith(github.ref, 'refs/tags/') }} + shell: bash + # NB: The Base64 encoded variable should not have line breaks or this will fail! + run: echo ${{ secrets.RUFUS_GITHUB_OFFICIAL_BUILD }} | base64 -di > ./sign.pfx + + - name: Add signtool to path + if: ${{ !startsWith(github.ref, 'refs/tags/') }} + uses: KamaranL/add-signtool-action@v1 + + - name: Sign ALPHA + if: ${{ !startsWith(github.ref, 'refs/tags/') }} + shell: cmd + run: | + signtool sign /v /f sign.pfx /fd SHA256 /tr http://timestamp.digicert.com /td SHA256 ${{ matrix.exe }} + del sign.pfx + - name: Display SHA-256 run: sha256sum ./${{ matrix.exe }} @@ -97,7 +114,7 @@ jobs: - name: Upload artifacts if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.sys }} path: ./*.exe @@ -107,7 +124,7 @@ jobs: needs: MinGW-Build steps: - name: Merge Artifacts - uses: actions/upload-artifact/merge@v4 + uses: actions/upload-artifact/merge@v7 if: ${{ github.event_name == 'push' }} with: name: MinGW diff --git a/.github/workflows/setup.yml b/.github/workflows/setup.yml index 98c62dc3..c0fc073a 100644 --- a/.github/workflows/setup.yml +++ b/.github/workflows/setup.yml @@ -10,7 +10,7 @@ env: BUILD_CONFIGURATION: Release jobs: - VS2022-Build: + VS2026-Build: runs-on: windows-latest strategy: @@ -19,10 +19,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v2 + uses: microsoft/setup-msbuild@v3 with: msbuild-architecture: x64 @@ -36,17 +36,17 @@ jobs: run: sha256sum ./setup_${{ matrix.TARGET_PLATFORM }}.exe - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.TARGET_PLATFORM }} path: ./*.exe Extra-Step-To-Merge-Artifacts-Thanks-To-Upload-Artifact-v4-Breaking-Backwards-Compatibility: runs-on: windows-latest - needs: VS2022-Build + needs: VS2026-Build steps: - name: Merge Artifacts - uses: actions/upload-artifact/merge@v4 + uses: actions/upload-artifact/merge@v7 with: name: setup delete-merged: true diff --git a/.github/workflows/vs2022.yml b/.github/workflows/vs2026.yml similarity index 65% rename from .github/workflows/vs2022.yml rename to .github/workflows/vs2026.yml index aefd1f61..371f4d5a 100644 --- a/.github/workflows/vs2022.yml +++ b/.github/workflows/vs2026.yml @@ -1,4 +1,4 @@ -name: VS2022 +name: VS2026 on: push: @@ -31,7 +31,7 @@ env: BUILD_CONFIGURATION: Release jobs: - VS2022-Build: + VS2026-Build: runs-on: windows-latest strategy: @@ -40,21 +40,30 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 submodules: recursive - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v2 + uses: microsoft/setup-msbuild@v3 with: msbuild-architecture: x64 - name: Install UPX - uses: crazy-max/ghaction-upx@v3 + uses: crazy-max/ghaction-upx@v4 with: install-only: true + - name: Set version + id: set_version + shell: bash + run: | + version=$(git describe --tags) + version=${version:1} + version=${version%%-*} + echo "version=$version" >> $GITHUB_OUTPUT + - name: Set ALPHA id: set_alpha shell: bash @@ -81,9 +90,30 @@ jobs: move .\${{ matrix.TARGET_PLATFORM }}\Release\rufus.exe .\rufus_${{ matrix.TARGET_PLATFORM }}.exe move .\${{ matrix.TARGET_PLATFORM }}\Release\rufus.pdb .\rufus_${{ matrix.TARGET_PLATFORM }}.pdb - - name: Compress executables - if: ${{ matrix.TARGET_PLATFORM != 'arm64' }} - run: upx --lzma --best .\rufus_${{ matrix.TARGET_PLATFORM }}.exe + - name: Prepare to sign ALPHA + if: ${{ !startsWith(github.ref, 'refs/tags/') }} + shell: bash + # NB: The Base64 encoded variable should not have line breaks or this will fail! + run: echo ${{ secrets.RUFUS_GITHUB_OFFICIAL_BUILD }} | base64 -di > ./sign.pfx + + - name: Add signtool to path + if: ${{ !startsWith(github.ref, 'refs/tags/') }} + uses: KamaranL/add-signtool-action@v1 + + - name: Sign ALPHA + if: ${{ !startsWith(github.ref, 'refs/tags/') }} + shell: cmd + run: | + signtool sign /v /f sign.pfx /fd SHA256 /tr http://timestamp.digicert.com /td SHA256 rufus_${{ matrix.TARGET_PLATFORM }}.exe + del sign.pfx + + - name: Create standalone release executables + if: ${{ startsWith(github.ref, 'refs/tags/') }} + shell: cmd + run: | + copy rufus_${{ matrix.TARGET_PLATFORM }}.exe rufus-${{ steps.set_version.outputs.version }}_${{ matrix.TARGET_PLATFORM }}.exe + if exist rufus-${{ steps.set_version.outputs.version }}_x64.exe ( ren rufus-${{ steps.set_version.outputs.version }}_x64.exe rufus-${{ steps.set_version.outputs.version }}.exe ) + if not ${{ matrix.TARGET_PLATFORM }}==arm64 ( upx --lzma --best rufus-*.exe ) - name: Display SHA-256 run: sha256sum ./rufus_${{ matrix.TARGET_PLATFORM }}.exe @@ -96,7 +126,7 @@ jobs: curl --request POST --url https://www.virustotal.com/api/v3/monitor/items --header 'x-apikey: ${{ secrets.VIRUSTOTAL_API_KEY }}' --form path='/rufus_${{ matrix.TARGET_PLATFORM }}.exe' --form file=@./rufus_${{ matrix.TARGET_PLATFORM }}.exe - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ github.event_name == 'push' }} with: name: ${{ matrix.TARGET_PLATFORM }} @@ -106,11 +136,11 @@ jobs: Extra-Step-To-Merge-Artifacts-Thanks-To-Upload-Artifact-v4-Breaking-Backwards-Compatibility: runs-on: windows-latest - needs: VS2022-Build + needs: VS2026-Build steps: - name: Merge Artifacts - uses: actions/upload-artifact/merge@v4 + uses: actions/upload-artifact/merge@v7 if: ${{ github.event_name == 'push' }} with: - name: VS2022 + name: VS2026 delete-merged: true diff --git a/.mingw/Makefile.am b/.mingw/Makefile.am index baa32192..73c428a1 100644 --- a/.mingw/Makefile.am +++ b/.mingw/Makefile.am @@ -20,7 +20,7 @@ TARGET := $(word 1,$(subst -, ,$(TUPLE))) DEF_SUFFIX := $(if $(TARGET:x86_64=),.def,.def64) .PHONY: all -all: crypt32-delaylib.lib dwmapi-delaylib.lib setupapi-delaylib.lib version-delaylib.lib virtdisk-delaylib.lib wininet-delaylib.lib wintrust-delaylib.lib +all: crypt32-delaylib.lib dwmapi-delaylib.lib setupapi-delaylib.lib uxtheme-delaylib.lib version-delaylib.lib virtdisk-delaylib.lib wininet-delaylib.lib wintrust-delaylib.lib %.def64: %.def $(AM_V_SED) "s/@.*//" $< >$@ diff --git a/.mingw/Makefile.in b/.mingw/Makefile.in index 31147c29..74878a2c 100644 --- a/.mingw/Makefile.in +++ b/.mingw/Makefile.in @@ -368,7 +368,7 @@ uninstall-am: .PHONY: all -all: crypt32-delaylib.lib dwmapi-delaylib.lib setupapi-delaylib.lib version-delaylib.lib virtdisk-delaylib.lib wininet-delaylib.lib wintrust-delaylib.lib +all: crypt32-delaylib.lib dwmapi-delaylib.lib setupapi-delaylib.lib uxtheme-delaylib.lib version-delaylib.lib virtdisk-delaylib.lib wininet-delaylib.lib wintrust-delaylib.lib %.def64: %.def $(AM_V_SED) "s/@.*//" $< >$@ diff --git a/.mingw/dwmapi.def b/.mingw/dwmapi.def index 240e17c7..d8c21c97 100644 --- a/.mingw/dwmapi.def +++ b/.mingw/dwmapi.def @@ -1,2 +1,4 @@ EXPORTS + DwmGetColorizationColor@8 DwmGetWindowAttribute@16 + DwmSetWindowAttribute@16 diff --git a/.mingw/uxtheme.def b/.mingw/uxtheme.def new file mode 100644 index 00000000..05aa982c --- /dev/null +++ b/.mingw/uxtheme.def @@ -0,0 +1,15 @@ +EXPORTS + BeginBufferedAnimation@32 + BufferedPaintRenderAnimation@8 + BufferedPaintStopAllAnimations@4 + CloseThemeData@4 + DrawThemeBackground@24 + DrawThemeParentBackground@12 + DrawThemeTextEx@36 + EndBufferedAnimation@8 + GetThemeBackgroundContentRect@24 + GetThemeFont@24 + GetThemePartSize@28 + GetThemeTransitionDuration@24 + OpenThemeData@8 + SetWindowTheme@12 diff --git a/.vs/bled.vcxproj b/.vs/bled.vcxproj index 12050177..de587bfb 100644 --- a/.vs/bled.vcxproj +++ b/.vs/bled.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -17,10 +13,6 @@ Debug x64 - - Release - ARM - Release ARM64 @@ -36,6 +28,7 @@ + @@ -110,58 +103,41 @@ StaticLibrary Unicode - v143 - - - StaticLibrary - Unicode - v143 - true + v145 StaticLibrary Unicode - v143 + v145 true StaticLibrary Unicode - v143 + v145 StaticLibrary Unicode - v143 - true - - - StaticLibrary - Unicode - v143 - true + v145 true StaticLibrary Unicode - v143 + v145 true true StaticLibrary Unicode - v143 + v145 true <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -174,8 +150,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -188,7 +162,7 @@ Level3 ProgramDatabase Disabled - _OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) + BLED_EXPECT_DISK_IMAGE;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) MultiThreadedDebug ..\src CompileAsC @@ -202,30 +176,12 @@ odbc32.lib;odbccp32.lib;%(AdditionalDependencies) - - - Level3 - ProgramDatabase - Disabled - _OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - ..\src - /utf-8 %(AdditionalOptions) - - - true - true - true - $(OutDir)$(TargetName)$(TargetExt) - odbc32.lib;odbccp32.lib;%(AdditionalDependencies) - - Level3 ProgramDatabase Disabled - _OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) + BLED_EXPECT_DISK_IMAGE;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) MultiThreadedDebug ..\src /utf-8 %(AdditionalOptions) @@ -244,7 +200,7 @@ ProgramDatabase EnableFastChecks Disabled - _OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) + BLED_EXPECT_DISK_IMAGE;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) MultiThreadedDebug ..\src CompileAsC @@ -261,7 +217,7 @@ Level3 - _OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) + BLED_EXPECT_DISK_IMAGE;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) MultiThreaded ..\src CompileAsC @@ -278,31 +234,11 @@ true - - - Level3 - true - _OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) - MultiThreaded - ..\src - /utf-8 %(AdditionalOptions) - true - - - true - true - $(OutDir)$(TargetName)$(TargetExt) - odbc32.lib;odbccp32.lib;%(AdditionalDependencies) - - - true - - Level3 true - _OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) + BLED_EXPECT_DISK_IMAGE;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) MultiThreaded ..\src /utf-8 %(AdditionalOptions) @@ -321,7 +257,7 @@ Level3 - _OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) + BLED_EXPECT_DISK_IMAGE;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) MultiThreaded ..\src CompileAsC diff --git a/.vs/bled.vcxproj.filters b/.vs/bled.vcxproj.filters index abbc6ed8..d963ee37 100644 --- a/.vs/bled.vcxproj.filters +++ b/.vs/bled.vcxproj.filters @@ -117,6 +117,9 @@ Source Files + + Source Files + diff --git a/.vs/ext2fs.vcxproj b/.vs/ext2fs.vcxproj index 521437b2..93901ae9 100644 --- a/.vs/ext2fs.vcxproj +++ b/.vs/ext2fs.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -17,10 +13,6 @@ Debug x64 - - Release - ARM - Release ARM64 @@ -122,58 +114,41 @@ StaticLibrary Unicode - v143 - - - StaticLibrary - Unicode - v143 - true + v145 StaticLibrary Unicode - v143 + v145 true StaticLibrary Unicode - v143 + v145 StaticLibrary Unicode - v143 - true - - - StaticLibrary - Unicode - v143 - true + v145 true StaticLibrary Unicode - v143 + v145 true true StaticLibrary Unicode - v143 + v145 true <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -186,8 +161,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -214,24 +187,6 @@ $(OutDir)$(TargetName)$(TargetExt) - - - Level3 - ProgramDatabase - Disabled - _CRT_SECURE_NO_WARNINGS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - ..\src;..\src\msvc-missing - 4018;4146;4244;4267;4996 - /utf-8 %(AdditionalOptions) - - - true - true - true - $(OutDir)$(TargetName)$(TargetExt) - - Level3 @@ -291,26 +246,6 @@ true - - - Level3 - true - _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreaded - ..\src;..\src\msvc-missing - 4018;4146;4244;4267;4996 - /utf-8 %(AdditionalOptions) - true - - - true - true - $(OutDir)$(TargetName)$(TargetExt) - - - true - - Level3 diff --git a/.vs/getopt.vcxproj b/.vs/getopt.vcxproj index 767adf07..ef7c6cc4 100644 --- a/.vs/getopt.vcxproj +++ b/.vs/getopt.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -17,10 +13,6 @@ Debug x64 - - Release - ARM - Release ARM64 @@ -44,39 +36,25 @@ StaticLibrary Unicode true - v143 - - - StaticLibrary - Unicode - true - v143 - true + v145 StaticLibrary Unicode true - v143 + v145 true StaticLibrary Unicode - v143 - true - - - StaticLibrary - Unicode - v143 - true + v145 true StaticLibrary Unicode - v143 + v145 true true @@ -84,21 +62,17 @@ StaticLibrary Unicode true - v143 + v145 StaticLibrary Unicode - v143 + v145 true <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -111,8 +85,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -135,19 +107,6 @@ true - - - HAVE_STRING_H;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - ProgramDatabase - 28252;28253 - /utf-8 %(AdditionalOptions) - - - true - - HAVE_STRING_H;%(PreprocessorDefinitions) @@ -194,20 +153,6 @@ true - - - MaxSpeed - HAVE_STRING_H;%(PreprocessorDefinitions) - MultiThreaded - Level3 - 28252;28253 - /utf-8 %(AdditionalOptions) - true - - - true - - MaxSpeed diff --git a/.vs/libcdio-driver.vcxproj b/.vs/libcdio-driver.vcxproj index 1e8b35c7..47d21cca 100644 --- a/.vs/libcdio-driver.vcxproj +++ b/.vs/libcdio-driver.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -13,10 +9,6 @@ Debug Win32 - - Release - ARM - Release ARM64 @@ -76,61 +68,43 @@ StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 + v145 StaticLibrary true Unicode - v143 + v145 <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -143,8 +117,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -171,24 +143,6 @@ MachineX86 - - - - - Level3 - Disabled - HAVE_CONFIG_H;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - ..\src;..\src\libcdio;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreadedDebug - ProgramDatabase - /utf-8 %(AdditionalOptions) - - - Windows - true - - - @@ -222,22 +176,6 @@ MachineX86 - - - Level3 - - - MaxSpeed - true - HAVE_CONFIG_H;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) - ..\src;..\src\libcdio;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreaded - ProgramDatabase - /utf-8 %(AdditionalOptions) - true - - - Level3 diff --git a/.vs/libcdio-iso9660.vcxproj b/.vs/libcdio-iso9660.vcxproj index beadf8e6..d4bab65f 100644 --- a/.vs/libcdio-iso9660.vcxproj +++ b/.vs/libcdio-iso9660.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -13,10 +9,6 @@ Debug Win32 - - Release - ARM - Release ARM64 @@ -69,61 +61,43 @@ StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 + v145 StaticLibrary true Unicode - v143 + v145 <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -136,8 +110,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -164,24 +136,6 @@ MachineX86 - - - - - Level3 - Disabled - HAVE_CONFIG_H;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - ..\src;..\src\libcdio;..\src\libcdio\driver;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreadedDebug - ProgramDatabase - /utf-8 %(AdditionalOptions) - - - Windows - true - - - @@ -215,22 +169,6 @@ MachineX86 - - - Level3 - - - MaxSpeed - true - HAVE_CONFIG_H;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) - ..\src;..\src\libcdio;..\src\libcdio\driver;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreaded - ProgramDatabase - /utf-8 %(AdditionalOptions) - true - - - Level3 diff --git a/.vs/libcdio-udf.vcxproj b/.vs/libcdio-udf.vcxproj index 60ce04b7..cce3485d 100644 --- a/.vs/libcdio-udf.vcxproj +++ b/.vs/libcdio-udf.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -13,10 +9,6 @@ Debug Win32 - - Release - ARM - Release ARM64 @@ -62,61 +54,43 @@ StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 + v145 StaticLibrary true Unicode - v143 + v145 <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -129,8 +103,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -157,24 +129,6 @@ MachineX86 - - - - - Level3 - Disabled - HAVE_CONFIG_H;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - ..\src;..\src\libcdio;..\src\libcdio\driver;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreadedDebug - ProgramDatabase - /utf-8 %(AdditionalOptions) - - - Windows - true - - - @@ -208,22 +162,6 @@ MachineX86 - - - Level3 - - - MaxSpeed - true - HAVE_CONFIG_H;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) - ..\src;..\src\libcdio;..\src\libcdio\driver;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreaded - ProgramDatabase - /utf-8 %(AdditionalOptions) - true - - - Level3 diff --git a/.vs/ms-sys.vcxproj b/.vs/ms-sys.vcxproj index 1679bf4f..cd2babdd 100644 --- a/.vs/ms-sys.vcxproj +++ b/.vs/ms-sys.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -13,10 +9,6 @@ Debug Win32 - - Release - ARM - Release ARM64 @@ -73,6 +65,7 @@ + @@ -105,61 +98,43 @@ StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 + v145 StaticLibrary true Unicode - v143 + v145 <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -172,8 +147,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -201,25 +174,6 @@ MachineX86 - - - - - Level3 - Disabled - _CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - ..\src\ms-sys\inc;%(AdditionalIncludeDirectories) - MultiThreadedDebug - ProgramDatabase - /analyze:stacksize32850 /utf-8 %(AdditionalOptions) - 28252;28253 - - - Windows - true - - - @@ -255,23 +209,6 @@ MachineX86 - - - Level3 - - - MaxSpeed - true - %(PreprocessorDefinitions) - ..\src\ms-sys\inc;%(AdditionalIncludeDirectories) - MultiThreaded - ProgramDatabase - /analyze:stacksize32850 /utf-8 %(AdditionalOptions) - 28252;28253 - true - - - Level3 diff --git a/.vs/ms-sys.vcxproj.filters b/.vs/ms-sys.vcxproj.filters index d8dc4d00..bd8636b5 100644 --- a/.vs/ms-sys.vcxproj.filters +++ b/.vs/ms-sys.vcxproj.filters @@ -158,6 +158,9 @@ Header Files + + Header Files + diff --git a/.vs/rufus.vcxproj b/.vs/rufus.vcxproj index 0fa60276..b0f1085f 100644 --- a/.vs/rufus.vcxproj +++ b/.vs/rufus.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -17,10 +13,6 @@ Debug x64 - - Release - ARM - Release ARM64 @@ -39,46 +31,30 @@ {731858A7-0303-4988-877B-9C0DD6471864} rufus Win32Proj - 10.0 Application Unicode true - v143 - - - Application - Unicode - true - v143 - true + v145 Application Unicode true - v143 + v145 true Application Unicode - v143 - true - - - Application - Unicode - v143 - true true + v145 Application Unicode - v143 true true @@ -86,21 +62,17 @@ Application Unicode true - v143 + v145 Application Unicode - v143 true + v145 <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -113,9 +85,11 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false + false false + false false + false false @@ -133,12 +107,12 @@ /utf-8 /std:clatest $(ExternalCompilerOptions) %(AdditionalOptions) - advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;%(AdditionalDependencies) + advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;uxtheme.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;%(AdditionalDependencies) RequireAdministrator true Windows MachineX86 - advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) + advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;uxtheme.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) /BREPRO /DEPENDENTLOADFLAG:0x800 %(AdditionalOptions) @@ -149,38 +123,6 @@ Generating 'embedded.loc' file - - - - _RUFUS;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;COBJMACROS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - ..\src;..\src\msvc-missing;..\src\ms-sys\inc;..\src\syslinux\libinstaller;..\src\syslinux\libfat;..\src\syslinux\win;..\src\libcdio;..\src\getopt;..\src\wimlib;..\res;%(AdditionalIncludeDirectories) - CompileAsC - true - Async - 4091;5255;28251;28252;28253;%(DisableSpecificWarnings) - /utf-8 /std:clatest $(ExternalCompilerOptions) %(AdditionalOptions) - - - advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;ole32.lib;advapi32.lib;gdi32.lib;shell32.lib;comdlg32.lib;%(AdditionalDependencies) - RequireAdministrator - true - Windows - C:\Program Files (x86)\Windows Kits\10\Lib\10.0.15063.0\um\arm - advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) - /BREPRO /DEPENDENTLOADFLAG:0x800 %(AdditionalOptions) - - - _UNICODE;UNICODE;%(PreprocessorDefinitions) - - - - - type $(SolutionDir)res\loc\rufus.loc | findstr /v MSG_9 > $(SolutionDir)res\loc\embedded.loc - Generating 'embedded.loc' file - - @@ -195,12 +137,12 @@ /utf-8 /std:clatest $(ExternalCompilerOptions) %(AdditionalOptions) - advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;ole32.lib;advapi32.lib;gdi32.lib;shell32.lib;comdlg32.lib;%(AdditionalDependencies) + advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;uxtheme.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;comdlg32.lib;%(AdditionalDependencies) RequireAdministrator true Windows C:\Program Files (x86)\Windows Kits\10\Lib\10.0.16299.0\um\arm64 - advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) + advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;uxtheme.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) /BREPRO /DEPENDENTLOADFLAG:0x800 %(AdditionalOptions) @@ -232,12 +174,12 @@ /utf-8 /std:clatest $(ExternalCompilerOptions) %(AdditionalOptions) - advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;%(AdditionalDependencies) + advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;uxtheme.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;%(AdditionalDependencies) RequireAdministrator true Windows MachineX64 - advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) + advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;uxtheme.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) /BREPRO /DEPENDENTLOADFLAG:0x800 %(AdditionalOptions) @@ -264,13 +206,13 @@ true - advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;%(AdditionalDependencies) + advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;uxtheme.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;%(AdditionalDependencies) RequireAdministrator false Windows MachineX86 /BREPRO /DEPENDENTLOADFLAG:0x800 %(AdditionalOptions) - advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) + advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;uxtheme.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) _UNICODE;UNICODE;%(PreprocessorDefinitions) @@ -280,40 +222,6 @@ Generating 'embedded.loc' file - - - - _RUFUS;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;COBJMACROS;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ..\src;..\src\msvc-missing;..\src\ms-sys\inc;..\src\syslinux\libinstaller;..\src\syslinux\libfat;..\src\syslinux\win;..\src\libcdio;..\src\getopt;..\src\wimlib;..\res;%(AdditionalIncludeDirectories) - CompileAsC - true - Async - 4091;5255;28251;28252;28253;%(DisableSpecificWarnings) - NDEBUG - /utf-8 /std:clatest $(ExternalCompilerOptions) %(AdditionalOptions) - true - - - advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;ole32.lib;advapi32.lib;gdi32.lib;shell32.lib;comdlg32.lib;%(AdditionalDependencies) - RequireAdministrator - false - Windows - C:\Program Files (x86)\Windows Kits\10\Lib\10.0.15063.0\um\arm - /BREPRO /DEPENDENTLOADFLAG:0x800 %(AdditionalOptions) - advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) - - - _UNICODE;UNICODE;%(PreprocessorDefinitions) - - - - - type $(SolutionDir)res\loc\rufus.loc | findstr /v MSG_9 > $(SolutionDir)res\loc\embedded.loc - Generating 'embedded.loc' file - - @@ -330,13 +238,13 @@ true - advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;ole32.lib;advapi32.lib;gdi32.lib;shell32.lib;comdlg32.lib;%(AdditionalDependencies) + advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;uxtheme.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;comdlg32.lib;%(AdditionalDependencies) RequireAdministrator false Windows C:\Program Files (x86)\Windows Kits\10\Lib\10.0.16299.0\um\arm64 /BREPRO /DEPENDENTLOADFLAG:0x800 %(AdditionalOptions) - advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) + advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;uxtheme.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) _UNICODE;UNICODE;%(PreprocessorDefinitions) @@ -367,13 +275,13 @@ true - advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;%(AdditionalDependencies) + advapi32.lib;comctl32.lib;crypt32.lib;gdi32.lib;ole32.lib;dwmapi.lib;setupapi.lib;shell32.lib;ntdll.lib;shlwapi.lib;uxtheme.lib;version.lib;virtdisk.lib;wininet.lib;wintrust.lib;%(AdditionalDependencies) RequireAdministrator false Windows MachineX64 /BREPRO /DEPENDENTLOADFLAG:0x800 %(AdditionalOptions) - advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) + advapi32.dll;comctl32.dll;crypt32.dll;gdi32.dll;ole32.dll;dwmapi.dll;setupapi.dll;shell32.dll;shlwapi.dll;uxtheme.dll;version.dll;virtdisk.dll;wininet.dll;wintrust.dll;%(DelayLoadDLLs) _UNICODE;UNICODE;%(PreprocessorDefinitions) @@ -385,6 +293,10 @@ + + + + @@ -398,7 +310,6 @@ - @@ -418,6 +329,8 @@ + + @@ -427,7 +340,6 @@ - diff --git a/.vs/rufus.vcxproj.filters b/.vs/rufus.vcxproj.filters index f757813b..c535ebd8 100644 --- a/.vs/rufus.vcxproj.filters +++ b/.vs/rufus.vcxproj.filters @@ -87,15 +87,24 @@ Source Files - - Source Files - Source Files Source Files + + Source Files + + + Source Files + + + Source Files + + + Source Files + @@ -179,9 +188,6 @@ Header Files - - Header Files - Header Files @@ -206,6 +212,12 @@ Header Files + + Header Files + + + Header Files + diff --git a/.vs/syslinux-libfat.vcxproj b/.vs/syslinux-libfat.vcxproj index 732904b0..80957246 100644 --- a/.vs/syslinux-libfat.vcxproj +++ b/.vs/syslinux-libfat.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -13,10 +9,6 @@ Debug Win32 - - Release - ARM - Release ARM64 @@ -59,61 +51,43 @@ StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 + v145 StaticLibrary true Unicode - v143 + v145 <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -126,8 +100,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -155,25 +127,6 @@ MachineX86 - - - - - Level3 - Disabled - inline=__inline;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - ..\src;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreadedDebug - ProgramDatabase - 4018;4244 - /utf-8 %(AdditionalOptions) - - - Windows - true - - - @@ -209,23 +162,6 @@ MachineX86 - - - Level3 - - - MaxSpeed - true - inline=__inline;%(PreprocessorDefinitions) - ..\src;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreaded - ProgramDatabase - 4018;4244 - /utf-8 %(AdditionalOptions) - true - - - Level3 diff --git a/.vs/syslinux-libinstaller.vcxproj b/.vs/syslinux-libinstaller.vcxproj index 8af68451..ad63a77b 100644 --- a/.vs/syslinux-libinstaller.vcxproj +++ b/.vs/syslinux-libinstaller.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -13,10 +9,6 @@ Debug Win32 - - Release - ARM - Release ARM64 @@ -58,61 +50,43 @@ StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 + v145 StaticLibrary true Unicode - v143 + v145 <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -125,8 +99,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -154,25 +126,6 @@ MachineX86 - - - - - Level3 - Disabled - inline=__inline;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - ..\src;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreadedDebug - ProgramDatabase - 4244;4267 - /utf-8 %(AdditionalOptions) - - - Windows - true - - - @@ -208,23 +161,6 @@ MachineX86 - - - Level3 - - - MaxSpeed - true - inline=__inline;%(PreprocessorDefinitions) - ..\src;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreaded - ProgramDatabase - 4244;4267 - /utf-8 %(AdditionalOptions) - true - - - Level3 diff --git a/.vs/syslinux-win.vcxproj b/.vs/syslinux-win.vcxproj index 5e77cea3..0b0d3953 100644 --- a/.vs/syslinux-win.vcxproj +++ b/.vs/syslinux-win.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -13,10 +9,6 @@ Debug Win32 - - Release - ARM - Release ARM64 @@ -52,61 +44,43 @@ StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 + v145 StaticLibrary true Unicode - v143 + v145 <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -119,8 +93,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -148,25 +120,6 @@ MachineX86 - - - - - Level3 - Disabled - inline=__inline;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - ..\src;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreadedDebug - ProgramDatabase - 4244;4267;4996 - /utf-8 %(AdditionalOptions) - - - Windows - true - - - @@ -202,23 +155,6 @@ MachineX86 - - - Level3 - - - MaxSpeed - true - inline=__inline;%(PreprocessorDefinitions) - ..\src;..\src\msvc-missing;%(AdditionalIncludeDirectories) - MultiThreaded - ProgramDatabase - 4244;4267;4996 - /utf-8 %(AdditionalOptions) - true - - - Level3 diff --git a/.vs/wimlib.vcxproj b/.vs/wimlib.vcxproj index d82bbb86..a4cbc066 100644 --- a/.vs/wimlib.vcxproj +++ b/.vs/wimlib.vcxproj @@ -1,10 +1,6 @@  - - Debug - ARM - Debug ARM64 @@ -13,10 +9,6 @@ Debug Win32 - - Release - ARM - Release ARM64 @@ -184,61 +176,43 @@ StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 - - - StaticLibrary - true - Unicode - v143 - true + v145 StaticLibrary true Unicode - v143 + v145 true StaticLibrary true Unicode - v143 + v145 StaticLibrary true Unicode - v143 + v145 <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ - $(SolutionDir)arm\$(Configuration)\ - $(SolutionDir)arm\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ $(SolutionDir)arm64\$(Configuration)\$(ProjectName)\ $(SolutionDir)arm64\$(Configuration)\ @@ -251,8 +225,6 @@ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ $(SolutionDir)x64\$(Configuration)\ $(SolutionDir)x64\$(Configuration)\$(ProjectName)\ - false - false false false false @@ -280,25 +252,6 @@ MachineX86 - - - - - Level3 - Disabled - ..\src;..\src\wimlib;..\src\msvc-missing;..\src\libcdio;%(AdditionalIncludeDirectories) - MultiThreadedDebug - ProgramDatabase - /std:clatest - 4018;4146;4267;4244;4334;4789;4996;6201;6239;6246;6255;6262;6297;6326;28252;28253 - _RUFUS;HAVE_CONFIG_H;UNICODE;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) - - - Windows - true - - - @@ -334,23 +287,6 @@ MachineX86 - - - Level3 - - - MaxSpeed - true - ..\src;..\src\wimlib;..\src\msvc-missing;..\src\libcdio;%(AdditionalIncludeDirectories) - MultiThreaded - ProgramDatabase - /std:clatest - 4018;4146;4267;4244;4334;4789;4996;6201;6239;6246;6255;6262;6297;6326;28252;28253 - true - _RUFUS;HAVE_CONFIG_H;UNICODE;_OFF_T_DEFINED;_off_t=__int64;off_t=_off_t;_FILE_OFFSET_BITS=64;%(PreprocessorDefinitions) - - - Level3 diff --git a/ChangeLog.txt b/ChangeLog.txt index 6c66045e..caa86595 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,72 @@ +o Version 4.15 (2026.06.30) + Add RISC-V 64 support to UEFI:NTFS + Improve the guards for using the "silent" Windows installation option + Improve the ability to cancel during write retries + Improve progress reporting for compressed image extraction + Fix unrestricted XML entity expansion and integer overflow in ezxml parser (courtesy of Eric Sadowski) + Fix "silent" Windows installation failing at 75% in most cases + Fix a crash during boot when using UEFI:NTFS on Snapdragon X based ARM64 platforms + Fix first WUE option always being checked by default + Fix an infinite loop when using Windows ISOs that contain multiple WIMs + Fix "Enable runtime UEFI media validation" checkbox not always being properly enabled + Other WUE improvements/fixes for OneDrive removal and username validation (with thanks to @christian8641) + +o Version 4.14 (2026.04.30) + Windows User Experience improvements: + - Add a "Quality of Life" option, to disable Teams, Outlook, Copilot and other Microsoft forced nuisances + - Add a Silent installation option, that automatically, and WITHOUT PROMPT, installs Windows on the first detected disk + - Add an option to copy 'SkuSiPolicy.p7b' to the ESP on installation (please refer to KB5042562 for more info) + - Add tooltips for all the dialog options + Add limited support for El-Torito UEFI image extraction (Mostly for Dell BIOS update ISOs) + Improve error report when the user tries to use an image that resides on the target drive + Improve the UEFI:NTFS partition label to make the install media more explicit during Windows Setup disk partitioning + Improve support for Bazzite and other Fedora derivatives that don't follow EFI conventions + Improve detection and exclusion of the new Bitdefender hidden VHDs + Improve reporting of GRUB and Isolinux MBRs + Fix potential errors during creation of Windows To Go media, due to the use of new versions of bcdboot + Fix errors with local accounts that start or end with whitespaces + +o Version 4.13 (2026.02.17) [BUGFIX RELEASE] + Fix UEFI:NTFS not selecting the proper driver for ARM/ARM64 + Update embedded GRUB to v2.14 + +o Version 4.12 (2026.01.30) + Filter out the new Bitdefender VHDs + Filter disallowed characters in local account names + Improve Microsoft Dev Drive detection (courtesy of Martin Kuschnik) + Improve the pre-formatting partition cleanup code + Improve error reporting on ISO extraction issues + Improve detection of drives with long hardware IDs (typically SSDs) + Improve conflicting process reporting + Improve support for Nutanix and umbrelOS ISOs + Fix a TOCTOU vulnerability in Fido script execution (CVE-2026-2398, reported by @independent-arg) + Fix replacement vulnerabilities for diskcopy.dll and oscdimg.exe + Fix FFU image creation being erroneously invocated, when trying to save an ISO image + Fix saving of ISO images to paths that contain spaces + Update UEFI:NTFS and UEFI DBXs to latest + +o Version 4.11 (2025.10.02) + Add a cheat mode to toggle between Light and Dark mode + Improve WUE option text relating to the CA 2023 option + Update Linux SBAT / Microsoft SVN Secure Boot revocation values to latest + Fix some GRUB/Syslinux download dialogs showing only the 'Close' button + Fix an assert being triggered when using the WUE CA 2023 option on its own + Fix an application crash on systems that have a failed dynamic disk + +o Version 4.10 (2025.09.24) + Add Dark Mode support (courtesy of @ozone10) + Add support for creating Windows CA 2023 compatible media (requires a Windows 11 25H2 ISO) + Add support for saving an existing drive to ISO (UDF only) + Improve error reporting when saving to VHD/VHDX (with thanks to @Kazkans) + Improve persistence support for Linux Mint + Fix UEFI DBX updates being reported in some timezones, even when there are none + Fix a situation where no file system can be selected in ISO mode + Fix a crash when trying to process Windows ISOs with very long paths + +o Version 4.9 (2025.06.15) [BUGFIX RELEASE] + Fix downloads from https://rufus.ie no longer working due to recent GitHub server changes + Fix unofficial Windows ISOs, with single index WIMs, not presenting the WUE dialog + o Version 4.8 (2025.06.11) Switch to wimlib for all WIM image processing: - Greatly speeds up image analysis when opening Windows ISOs @@ -9,11 +78,11 @@ o Version 4.8 (2025.06.11) Improve reporting of UEFI bootloaders in the log, with info on the Secure Boot status Fix an issue with size limitations when writing an uncompressed VHD back to the same drive Fix a crash when opening the log with the 32-bit MinGW compiled version - Fix commandline parameters not being forwared to original Windows setup.exe + Fix commandline parameters not being forwarded to original Windows setup.exe o Version 4.7 (2025.04.09) Add a mechanism to detect and download updated DBXs from the official UEFI repository - Add ztsd compression support for disk images + Add zstd compression support for disk images Add a new exclusion feature in the settings, to ignore disks with a specific GPT GUID Improve detection for compressed VHD images that are too large to fit the target drive Fix commandline hogger not being deleted when running Rufus from a different directory diff --git a/README.md b/README.md index ff0352d8..b48745d8 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Rufus: The Reliable USB Formatting Utility ========================================== -[![VS2022 Build Status](https://img.shields.io/github/actions/workflow/status/pbatard/rufus/vs2022.yml?branch=master&style=flat-square&label=VS2022%20Build)](https://github.com/pbatard/rufus/actions/workflows/vs2022.yml) +[![VS2022 Build Status](https://img.shields.io/github/actions/workflow/status/pbatard/rufus/vs2026.yml?branch=master&style=flat-square&label=VS2026%20Build)](https://github.com/pbatard/rufus/actions/workflows/vs2026.yml) [![MinGW Build Status](https://img.shields.io/github/actions/workflow/status/pbatard/rufus/mingw.yml?branch=master&style=flat-square&label=MinGW%20Build)](https://github.com/pbatard/rufus/actions/workflows/mingw.yml) [![Coverity Scan Status](https://img.shields.io/coverity/scan/2172.svg?style=flat-square&label=Coverity%20Analysis)](https://scan.coverity.com/projects/pbatard-rufus) [![Latest Release](https://img.shields.io/github/release-pre/pbatard/rufus.svg?style=flat-square&label=Latest%20Release)](https://github.com/pbatard/rufus/releases) @@ -39,7 +39,7 @@ Features Compilation ----------- -Use either Visual Studio 2022 or MinGW and then invoke the `.sln` or `configure`/`make` respectively. +Use either Visual Studio 2026 or MinGW and then invoke the `.sln` or `configure`/`make` respectively. #### Visual Studio @@ -56,6 +56,7 @@ easily accessible log, or through the [Windows debug facility](https://docs.micr * [__Official Website__](https://rufus.ie) * [FAQ](https://github.com/pbatard/rufus/wiki/FAQ) +* [Security and safety measures](https://github.com/pbatard/rufus/wiki/Security) Enhancements/Bugs ----------------- diff --git a/configure b/configure index ce4d9bb1..4f617edd 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for rufus 4.8. +# Generated by GNU Autoconf 2.71 for rufus 4.15. # # Report bugs to . # @@ -611,8 +611,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='rufus' PACKAGE_TARNAME='rufus' -PACKAGE_VERSION='4.8' -PACKAGE_STRING='rufus 4.8' +PACKAGE_VERSION='4.15' +PACKAGE_STRING='rufus 4.15' PACKAGE_BUGREPORT='https://github.com/pbatard/rufus/issues' PACKAGE_URL='https://rufus.ie' @@ -1269,7 +1269,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures rufus 4.8 to adapt to many kinds of systems. +\`configure' configures rufus 4.15 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1336,7 +1336,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of rufus 4.8:";; + short | recursive ) echo "Configuration of rufus 4.15:";; esac cat <<\_ACEOF @@ -1428,7 +1428,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -rufus configure 4.8 +rufus configure 4.15 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -1504,7 +1504,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by rufus $as_me 4.8, which was +It was created by rufus $as_me 4.15, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -2767,7 +2767,7 @@ fi # Define the identity of the package. PACKAGE='rufus' - VERSION='4.8' + VERSION='4.15' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h @@ -5313,7 +5313,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by rufus $as_me 4.8, which was +This file was extended by rufus $as_me 4.15, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -5369,7 +5369,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -rufus config.status 4.8 +rufus config.status 4.15 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 7225f028..b80d3404 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([rufus], [4.8], [https://github.com/pbatard/rufus/issues], [rufus], [https://rufus.ie]) +AC_INIT([rufus], [4.15], [https://github.com/pbatard/rufus/issues], [rufus], [https://rufus.ie]) AM_INIT_AUTOMAKE([-Wno-portability foreign no-dist no-dependencies]) AC_CONFIG_SRCDIR([src/rufus.c]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/res/appstore/listing/listing.csv b/res/appstore/listing/listing.csv index 61d6f5eb..dbc1c806 100644 --- a/res/appstore/listing/listing.csv +++ b/res/appstore/listing/listing.csv @@ -32,7 +32,7 @@ • Muutosloki: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus est un utilitaire permettant de formater et de créer des média USB amorçables, tels que clés USB, mémoire flash, etc. • Site officiel : https://rufus.ie • Code source: https://github.com/pbatard/rufus -• ChangeLog: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus ist ein Werkzeug, welches dabei hilft, bootfähige USB-Laufwerke zu erstellen, wie beispielweise USB-Keys, Speichersticks usw. +• ChangeLog: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus ist ein Werkzeug, das beim Formatieren und Erstellen bootfähiger USB-Flash-Laufwerke wie USB-Sticks, Speichersticks usw. hilft. • Offizielle Website: https://rufus.ie • Quellcode: https://github.com/pbatard/rufus • Änderungsprotokoll: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Το Rufus είναι ένα βοηθητικό πρόγραμμα που βοηθά στη διαμόρφωση και τη δημιουργία μονάδων flash USB με δυνατότητα εκκίνησης, όπως κλειδιά USB/pendrives,κάρτες μνήμης κ.λπ. @@ -65,7 +65,7 @@ • Pakeitimų žurnalas: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus adalah utiliti yang membantu memformat dan mencipta pemacu kilat USB boot, seperti pemacu pen/kekunci USB, kayu memori, dan lain-lain. • Laman rasmi: https://rufus.ie • Kod Sumber: https://github.com/pbatard/rufus -• ChangeLog: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus er et verktøy som hjelper til med å formatere og lage oppstartbare USB-stasjoner, for eksempel USB-minnepinner, USB-harddisker, og lignende. +• Log Perubahan: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus er et verktøy som hjelper til med å formatere og lage oppstartbare USB-stasjoner, for eksempel USB-minnepinner, USB-harddisker, og lignende. • Offisiell webside: https://rufus.ie • Kildekode: https://github.com/pbatard/rufus • Endringslogg: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus ابزاری است که به فرمت و ایجاد درایوهای فلش USB قابل بوت، مانند کلیدهای USB/pendrives، مموری استیک ها و غیره به شما کمک می کند. @@ -77,12 +77,12 @@ • Zmiany: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus é um utilitário que ajuda a formatar e a criar unidades flash USB inicializáveis, tais como pendrives USB, cartões de memória, etc. • Site oficial: https://rufus.ie • Código fonte: https://github.com/pbatard/rufus -• Registro de alterações: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus é um utilitário que ajuda a formatar e a criar unidades USB inicializáveis, tais como dispositivos USB/pendrives, cartões de memória, etc. -• Site oficial: https://rufus.ie +• Registro de alterações: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","O Rufus é um utilitário que ajuda a formatar e a criar unidades USB inicializáveis, tais como dispositivos USB/pendrives, cartões de memória, etc. +• Página oficial: https://rufus.ie • Código fonte: https://github.com/pbatard/rufus • Alterações: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus este un utilitar care ajută la formatarea și crearea de drive-uri USB bootabile, precum cheile sau pendriverele USB, unități de memorie, etc. -• Site official: https://rufus.ie -• Codul Sursei: https://github.com/pbatard/rufus +• Site oficial: https://rufus.ie +• Cod sursă: https://github.com/pbatard/rufus • Listă de schimbări: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus - это утилита для форматирования и создания загрузочных флеш-накопителей USB. • Официальный сайт: https://rufus.ie • Исходный код: https://github.com/pbatard/rufus @@ -110,28 +110,28 @@ • Sürüm Notları https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus це утиліта, яка допомагає форматувати та створювати завантажувальні флешки, картки пам'яті, тощо. • Офіційний сайт: https://rufus.ie • Сирцевий код: https://github.com/pbatard/rufus -• Список змін: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus là một tiện ích giúp định dạng và tạo khả năng khởi động cho USB, chẳng hạn như thẻ USB/đĩa di động, thẻ nhớ, vv. +• Список змін: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt","Rufus là một tiện ích giúp định dạng và tạo khả năng khởi động cho các thiết bị USB, ví dụ như thẻ USB/đĩa di động, thẻ nhớ, v.v... • Trang web chính thức: https://rufus.ie • Mã nguồn: https://github.com/pbatard/rufus • Nhật ký thay đổi: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt" -"ReleaseNotes","3","Text","• Switch to wimlib for all WIM image processing: - - Greatly speeds up image analysis when opening Windows ISOs - - Can speed up Windows To Go drive creation (But won't do miracles if you have a crap drive) - - Might help with Parallels limitations on Mac (But Rufus on Parallels is still UNSUPPORTED) - - Enables the splitting of >4GB files with Alt-E (But still WAY SLOWER than using UEFI:NTFS) -• Switch to using Visual Studio binaries everywhere, due to MinGW DLL delay-loading limitations -• Add more exceptions for Linux ISOs that restrict themselves to DD mode (Nobara, openSUSE, ...) -• Improve reporting of UEFI bootloaders in the log, with info on the Secure Boot status -• Fix an issue with size limitations when writing an uncompressed VHD back to the same drive -• Fix a crash when opening the log with the 32-bit MinGW compiled version -• Fix commandline parameters not being forwared to original Windows setup.exe",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"ReleaseNotes","3","Text","• Add RISC-V 64 support to UEFI:NTFS +• Improve the guards for using the ""silent"" Windows installation option +• Improve the ability to cancel during write retries +• Improve progress reporting for compressed image extraction +• Fix unrestricted XML entity expansion and integer overflow in ezxml parser (courtesy of Eric Sadowski) +• Fix ""silent"" Windows installation failing at 75% in most cases +• Fix a crash during boot when using UEFI:NTFS on Snapdragon X based ARM64 platforms +• Fix first WUE option always being checked by default +• Fix an infinite loop when using Windows ISOs that contain multiple WIMs +• Fix ""Enable runtime UEFI media validation"" checkbox not always being properly enabled +• Other WUE improvements/fixes for OneDrive removal and username validation (with thanks to @christian8641)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "Title","4","Text","Rufus",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "ShortTitle","5","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "SortTitle","6","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "VoiceTitle","7","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "ShortDescription","8","Text","","Rufus - The Reliable USB Formatting Utility","Rufus - أداة فرمتة الـ USB جديرة بالثقة","Rufus - Надеждната USB форматираща програма","Rufus - 可靠的 USB 格式化工具","Rufus - 快速可靠的 USB 格式化工具","Rufus - Pouzdan alat za formatiranje USB-a","Rufus - Spolehlivý program pro formátování USB","Rufus - Det pålidelige USB-formateringsværktøj","Rufus - de betrouwbare USB-formatteertool","Rufus - Luotettava USB-alustusohjelma","Rufus - L'utilitaire de formatage USB fiable","Rufus - Das zuverlässige USB-Formatierungstool","Rufus - Μία αξιόπιστη εφαρμογή διαμόρφωσης USB","Rufus - הכלי לאתחול USB האמין ביותר","Rufus - A megbízható USB-formázó segédprogram","Rufus - Utilitas Pemformatan USB yang Handal","Rufus - Utility affidabile per la formattazione di unità USB","Rufus - 信頼性の高い USB フォーマット ユーティリティ","Rufus - 신뢰할 수 있는 USB 포맷 유틸리티","Rufus - uzticama un vienkārša USB formatēšanas utilīta","Rufus - patikima USB formatavimo priemonė","Rufus - Utiliti pemformatan USB yang dipercayai","Rufus - Det pålitelige USB-formateringsprogrammet","Rufus، ابزاری کاربردی و قابل‌اطمینان برای فرمت کردن درایوهای USB","Rufus - niezawodne narzędzie do formatowania USB","Rufus - O Utilitário de Formatação USB Confiável","Rufus - O utilitário de confiança para formatação USB","Rufus - Instrumentul de încredere pentru formatări USB","Rufus - Надёжная утилита для форматирования USB-дисков","Rufus - Pouzdan Alat Za Formatiranje USB diska","Rufus - Spoľahlivý program pre formátovanie USB","Rufus - zanesljivi pripomoček za USB formatiranje","Rufus, la herramienta de formateo de USBs en la que puedes confiar","Rufus - Det pålitliga verktyget för USB-formatering","Rufus - ยูทิลิตี้การฟอร์แมต USB ที่ไว้ใจได้","Rufus - Güvenilir USB Biçimlendirme Programı","Rufus - надійна утиліта для форматування USB-накопичувачів","Rufus - Tiện ích Định dạng USB Đáng tin cậy" "DevStudio","9","Text","Pete Batard",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -"CopyrightTrademarkInformation","12","Text","© 2011-2025 Pete Batard",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"CopyrightTrademarkInformation","12","Text","© 2011-2026 Pete Batard",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "AdditionalLicenseTerms","13","Text","https://www.gnu.org/licenses/gpl-3.0.html","This application is licensed under the terms of the GNU Public License (GPL) version 3. See https://www.gnu.org/licenses/gpl-3.0.en.html for details.","هذا التطبيق مُرخص بموجب شروط رخصة جنو (GNU) العمومية (GPL) الإصدار 3. راجع https://www.gnu.org/licenses/gpl-3.0.ar.html لمزيد من التفاصيل.","Тази програма е лицензирана според условията на GNU Public License (GPL) версия 3. @@ -151,7 +151,7 @@ További információ: https://www.gnu.org/licenses/gpl-3.0.html.","Aplikasi ini Lihat https://www.gnu.org/licenses/gpl-3.0.html untuk detail lebih lanjut.","Questa applicazione è rilasciata sotto i termini della GNU Public License (GPL) versione 3. Vedere https://www.gnu.org/licenses/gpl-3.0.html per dettagli.","このアプリケーションはGNU Public License (GPL) version 3でライセンスされています。 詳細は https://www.gnu.org/licenses/gpl-3.0.ja.html をご覧ください。","이 응용 프로그램은 GNU Public License (GPL) 버전 3의 조건에 따라 라이선스가 부여됩니다. -자세한 내용은 https://www.gnu.org/licenses/gpl-3.0.html 을 참조하십시오.","Šai programmai ir licences noteikumi, kā GNU Public License (GPL) version 3. +자세한 내용은 https://www.gnu.org/licenses/gpl-3.0.html 을 참조하세요.","Šai programmai ir licences noteikumi, kā GNU Public License (GPL) version 3. Papildinformācijai skatīt https://www.gnu.org/licenses/gpl-3.0.html.","Ši programa yra licencijuota pagal GNU viešosios licencijos (GPL) 3 versijos sąlygas. Daugiau informacijos rasite https://www.gnu.org/licenses/gpl-3.0.html.","Permohonan ini dilesenkan di bawah syarat-syarat Lesen Awam GNU (GPL) versi 3. Lihat https://www.gnu.org/licenses/gpl-3.0.html untuk butiran.","Dette programmet er lisensiert under GNU Public Licence (GPL) versjon 3. @@ -159,8 +159,8 @@ Se https://www.gnu.org/licenses/gpl-3.0.html for mer informasjon.","این بر برای جزئیات به https://www.gnu.org/licenses/gpl-3.0.html مراجعه کنید.","Ta aplikacja jest objęta licencją na warunkach licencji publicznej GNU (GPL) w wersji 3. Z obacz https://www.gnu.org/licenses/gpl-3.0.html, aby uzyskać szczegółowe informacje.","Este software está licenciado sob os termos da GNU Public License (GPL) versão 3. Consulte https://www.gnu.org/licenses/gpl-3.0.pt-br.html para mais detalhes.","Este software está licenciado sob os termos da GNU Public License (GPL) versão 3. -Consulte https://www.gnu.org/licenses/gpl-3.0.html para mais detalhes.","Această aplicație este sub liciența și termenii și condițiile ale lui GNU Public License (GPL) versiunea a 3-a. -Vazi https://www.gnu.org/licenses/gpl-3.0.en.html pentru detalii.","Это приложение распространяется по лицензии GNU Public License (GPL) версии 3. +Consulte https://www.gnu.org/licenses/gpl-3.0.html para mais detalhes.","Această aplicație este licențiată conform termenilor GNU Public License (GPL) versiunea 3. +Vezi https://www.gnu.org/licenses/gpl-3.0.en.html pentru detalii.","Это приложение распространяется по лицензии GNU Public License (GPL) версии 3. Подробнее см. https://www.gnu.org/licenses/gpl-3.0.ru.html.","Ova aplikacija je licencirana pod uslovima GNU Javne licence (GPL) verzije 3. Pogledajte https://www.gnu.org/licenses/gpl-3.0.en.html za više informacija.","Táto aplikácia je licencovaná podľa podmienok GNU Public License (GPL) verzia 3. Podrobnosti nájdete na https://www.gnu.org/licenses/gpl-3.0.html.","Ta aplikacija je licencirana pod pogoji GNU Javne licence (GPL) različice 3. @@ -265,20 +265,20 @@ Xem tại https://www.gnu.org/licenses/gpl-3.0.html để biết thêm chi tiế "OptionalPromo358x358","611","Relative path (or URL to file in Partner Center)","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "OptionalPromo1000x800","612","Relative path (or URL to file in Partner Center)","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "OptionalPromo414x180","613","Relative path (or URL to file in Partner Center)","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -"Feature1","700","Text","","Format USB, flash card and virtual drives to FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","تهيئة USB وبطاقة الفلاش ومحركات الأقراص الافتراضية إلى FAT / FAT32 / NTFS / UDF / exFAT / ReFS / ext2 / ext3","Форматиране на USB, карти памет и виртуални устройства с FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","将 U 盘、存储卡或虚拟驱动器格式化为 FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3 格式","將隨身碟、記憶卡或虛擬光碟機格式化為 FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3 格式","Formatirajte USB, flash karticu i virtualne pogone na FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formátování USB, flash karet a virtuálních jednotek na FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formater USB, flash kort og virtuelle drev til FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","USB, flashkaart en virtuele schijven formatteren naar FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Alusta USB-asemia, muistikortteja ja virtuaalisia asemia muotoon FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatez des périphériques USB, des cartes flash et des disques virtuels en FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatieren von USB, Flash-Karte und virtuellen Laufwerken in FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Μορφοποίηση USB, κάρτας flash και εικονικών μονάδων δίσκου σε FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","אתחול USB, כרטיסי זיכרון וכוננים וירטואליים ל־FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","USB, flash memóriakártyák és virtuális meghajtók formázása FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3 fájlrendszerre","Format USB, kartu flash dan penyimpanan maya ke FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatta USB, flash card e unità virtuali in FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","USBメモリやSDカード、仮想ドライブをFAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3でフォーマットします。","USB, 플래시 카드 및 가상 드라이브를 FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3로 포맷","Formatē USB, atmiņas kartes un virtuālos diskus formātos FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Suformatuokite USB, flash kortelę ir virtualius diskus į FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatkan USB, kad flash dan pemacu maya kepada FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formater USB, minnekort og virtuelle disker til FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","فرمت USB، فلش کارت و درایوهای مجازی به FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Sformatuj nośnik używając: FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatar dispositivos USB, cartões flash e discos virtuais com FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatar dispositivos USB, cartão de memória e drives virtuais em FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatează USB, card flash si drive-uri virtuale la FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Форматирование USB, флешек и виртуальных дисков в FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatiraj USB, flash kartice, i virtualne diskove u FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Naformátujte USB, kartu a virtuálne disky do FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatiranje USB, bliskavice in virtualnih pogonov na FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatee USB, tarjetas flash y unidades virtuales a FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatera USB-enheter, flash-kort och virtuella enheter till FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","ฟอร์แมต USB, แฟลชการ์ด หรือไดรฟ์เสมือน ให้อยู่ในรูปแบบของ FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","USB, flash kart ve sanal sürücüleri FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3 olarak biçimlendirin","Форматування USB-накопичувачів, флешок, карток пам'яті у FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Định dạng USB, thẻ nhớ hoặc ổ nhớ ảo với FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" +"Feature1","700","Text","","Format USB, flash card and virtual drives to FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","تهيئة USB وبطاقة الفلاش ومحركات الأقراص الافتراضية إلى FAT / FAT32 / NTFS / UDF / exFAT / ReFS / ext2 / ext3","Форматиране на USB, карти памет и виртуални устройства с FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","将 U 盘、存储卡或虚拟驱动器格式化为 FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3 格式","將隨身碟、記憶卡或虛擬光碟機格式化為 FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3 格式","Formatirajte USB, flash karticu i virtualne pogone na FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formátování USB, flash karet a virtuálních jednotek na FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formater USB, flash kort og virtuelle drev til FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","USB, flashkaart en virtuele schijven formatteren naar FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Alusta USB-asemia, muistikortteja ja virtuaalisia asemia muotoon FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatez des périphériques USB, des cartes flash et des disques virtuels en FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatieren von USB, Flash-Karte und virtuellen Laufwerken in FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Μορφοποίηση USB, κάρτας flash και εικονικών μονάδων δίσκου σε FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","אתחול USB, כרטיסי זיכרון וכוננים וירטואליים ל־FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","USB, flash memóriakártyák és virtuális meghajtók formázása FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3 fájlrendszerre","Format USB, kartu flash dan penyimpanan maya ke FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatta USB, flash card e unità virtuali in FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","USBメモリやSDカード、仮想ドライブをFAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3でフォーマットします。","USB, 플래시 카드 및 가상 드라이브를 FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3로 포맷","Formatē USB, atmiņas kartes un virtuālos diskus formātos FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Suformatuokite USB, flash kortelę ir virtualius diskus į FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatkan USB, kad flash dan pemacu maya kepada FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formater USB, minnekort og virtuelle disker til FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","فرمت USB، فلش کارت و درایوهای مجازی به FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Sformatuj nośnik używając: FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatar dispositivos USB, cartões flash e discos virtuais com FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatar dispositivos USB, cartão de memória e unidades virtuais em FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatează USB, card flash si drive-uri virtuale la FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Форматирование USB, флешек и виртуальных дисков в FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatiraj USB, flash kartice, i virtualne diskove u FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Naformátujte USB, kartu a virtuálne disky do FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatiranje USB, bliskavice in virtualnih pogonov na FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatee USB, tarjetas flash y unidades virtuales a FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Formatera USB-enheter, flash-kort och virtuella enheter till FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","ฟอร์แมต USB, แฟลชการ์ด หรือไดรฟ์เสมือน ให้อยู่ในรูปแบบของ FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","USB, flash kart ve sanal sürücüleri FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3 olarak biçimlendirin","Форматування USB-накопичувачів, флешок, карток пам'яті у FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3","Định dạng USB, thẻ nhớ hoặc ổ nhớ ảo với FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" "Feature2","701","Text","","Create FreeDOS bootable USB drives","إنشاء محركات أقراص USB قابلة للإقلاع من FreeDOS","Създаване на FreeDOS стартиращ USB устройства","创建 FreeDOS 可启动驱动器","建立 FreeDOS 可開機隨身碟","Stvaranje FreeDOS USB pogona za pokretanje","Vytvoření bootovacích disků USB se systémem FreeDOS","Lav FreeDOS opstartsbare USB drev","FreeDOS opstartbare USB-schijven aanmaken","Luo boottaavia FreeDOS USB-asemia","Créez des disques amorçable FreeDOS","FreeDOS-bootfähige USB-Laufwerke erstellen","Δημιουργήστε μονάδες USB με δυνατότητα εκκίνησης FreeDOS","יצירת כונני USB הניתנים לאתחול של FreeDOS","Bootolható FreeDOS USB meghajtó készítése","Buat perangkat USB FreeDOS yang dapat di boot","Crea unità USB avviabili FreeDOS","FreeDOSの起動可能ドライブを作成します。","FreeDOS 부팅 가능한 USB 드라이브 만들기","Izveido FreeDOS ielādes USB ierīces","Sukurkite FreeDOS įkrovos USB diskus","Buat pemacu USB boleh boot FreeDOS","Lag FreeDos oppstartbar USB stick","درایوهای USB قابل بوت FreeDOS را ایجاد کنید","Stwórz nośnik rozruchowy USB FreeDOS","Criar discos USB inicializáveis FreeDOS","Criar unidades USB inicializáveis FreeDOS","Crează drive USB bootabil FreeDOS","Создание загрузочных USB-дисков FreeDOS","Kreiraj FreeDOS butabilni USB disk","Vytvorte bootovacie usb zariadenia FreeDOS","Ustvarite FreeDOS zagonske USB pogone","Crear unidades USB de arranque FreeDOS","Skapa FreeDOS startbara USB-enheter","สร้าง USB ไดรฟ์บูตสำหรับระบบ FreeDOS","FreeDOS önyüklenebilir USB sürücüleri oluşturun","Створення завантажувальних пристроїв FreeDOS","Tạo USB có thể khởi động với FreeDOS" -"Feature3","702","Text","","Create bootable drives from bootable ISOs (Windows, Linux, etc.)","إنشاء محركات أقراص قابلة للإقلاع من ملفات ISO القابلة للإقلاع (Windows و Linux وما إلى ذلك)","Създаване на стартиращи устройства от ISO образи (Windows, Linux и др.)","从可启动 ISO 文件 (Windows 和 Linux 等) 创建可启动驱动器","從可開機 ISO 檔案 (Windows 和 Linux 等) 建立可開機隨身碟","Stvaranje pogona za pokretanje iz ISO-ova za pokretanje (Windows, Linux itd.)","Vytváření bootovacích jednotek ze zaváděcích ISO (Windows, Linux atd.)","Lav opstartsbarer drev fra opstartsbarer ISOer (Window, Linux, osv.)","Opstartbare schijven aanmaken via opstartbare ISO's (Windows, Linux, enz)","Luo käynnistysasemia boottaavista ISO-kuvista (Windows, Linux jne.)","Créez des disques amorçables à partir d'images ISOs (Windows, Linux, etc.)","Erstellen bootfähiger Laufwerke aus bootfähigen ISOs (Windows, Linux, etc.)","Δημιουργήστε εκκινήσιμες μονάδες από ISO με δυνατότητα εκκίνησης (Windows, Linux, κ.λπ.)","יצירת כוננים הניתנים לאתחול מקובצי ISO הניתנים לאתחול (Windows‏, Linux וכו')","Bootolható meghajtók készítése bootolható ISO képfájlokból (Windows, Linux, stb.)","Buat perangkat yang dapat di boot dari ISO (Windows, Linux, dll.)","Crea unità avviabili da ISO avviabili (Windows, Linux, ecc.)","WindowsやLinuxなどのISOファイルから起動可能ドライブを作成します。","부팅 가능한 ISO (Windows, Linux 등)에서 부팅 가능한 드라이브 만들기","Izveido ielādes ierīces no ISO failiem (Windows, Linux, u.c.)","Sukurkite įkrovos diskus iš įkrovos ISO (Windows, Linux ir kt.)","Buat pemacu boleh boot daripada ISO boleh boot (Windows, Linux, dll.)","Lag oppstartabar enhet/disk fra ISOer (Windows, Linux, etc.)","ایجاد درایوهای قابل بوت از ISOهای قابل بوت (ویندوز، لینوکس و غیره)","Twórz dyski rozruchowe z obrazów ISO (Windows, Linux itp.)","Criar discos inicializáveis a partir de ISOs inicializáveis (Windows, Linux, etc.)","Criar unidades inicializáveis a partir de ISOs inicializáveis (Windows, Linux, etc.)","Crează drive-uri bootabile de la ISO-uri bootabile (Windows, Linux, etc.)","Создание загрузочных дисков из загрузочных образов ISO (Windows, Linux и т.д.)","Kreirajte disk jedinice za pokretanje sistema od ISO-a koji se mogu pokretanja sistema (Windows, Linux itd.)","Vytvorte bootovacie jednotky z ISO súborov (Windows, Linux atď.)","Ustvarite zagonske pogone iz zagonskih ISO-jev (Windows, Linux itd.)","Cree unidades de arranque desde ISO de arranque (Windows, Linux, etc.)","Skapa startbara enheter från startbara ISO-filer (Windows, Linux, etc.)","สร้าง USB ไดรฟ์บูตจากไฟล์ ISO ที่บูตได้ (เช่น ไฟล์ติดตั้ง Windows หรือ Linux เป็นต้น)","Önyüklenebilir ISO'lardan önyüklenebilir sürücüler oluşturun (Windows, Linux, vb.)","Створення завантажувальних пристроїв з завантажувальних образів (Windows, Linux, тощо)","Tạo ổ đĩa có thể khởi động từ các file ISO có thể khởi động (Windows, Linux, v.v...)" +"Feature3","702","Text","","Create bootable drives from bootable ISOs (Windows, Linux, etc.)","إنشاء محركات أقراص قابلة للإقلاع من ملفات ISO القابلة للإقلاع (Windows و Linux وما إلى ذلك)","Създаване на стартиращи устройства от ISO образи (Windows, Linux и др.)","从可启动 ISO 文件 (Windows 和 Linux 等) 创建可启动驱动器","從可開機 ISO 檔案 (Windows 和 Linux 等) 建立可開機隨身碟","Stvaranje pogona za pokretanje iz ISO-ova za pokretanje (Windows, Linux itd.)","Vytváření bootovacích jednotek ze zaváděcích ISO (Windows, Linux atd.)","Lav opstartsbarer drev fra opstartsbarer ISOer (Window, Linux, osv.)","Opstartbare schijven aanmaken via opstartbare ISO's (Windows, Linux, enz)","Luo käynnistysasemia boottaavista ISO-kuvista (Windows, Linux jne.)","Créez des disques amorçables à partir d'images ISOs (Windows, Linux, etc.)","Erstellen bootfähiger Laufwerke aus bootfähigen ISOs (Windows, Linux etc.)","Δημιουργήστε εκκινήσιμες μονάδες από ISO με δυνατότητα εκκίνησης (Windows, Linux, κ.λπ.)","יצירת כוננים הניתנים לאתחול מקובצי ISO הניתנים לאתחול (Windows‏, Linux וכו')","Bootolható meghajtók készítése bootolható ISO képfájlokból (Windows, Linux, stb.)","Buat perangkat yang dapat di boot dari ISO (Windows, Linux, dll.)","Crea unità avviabili da ISO avviabili (Windows, Linux, ecc.)","WindowsやLinuxなどのISOファイルから起動可能ドライブを作成します。","부팅 가능한 ISO (Windows, Linux 등)에서 부팅 가능한 드라이브 만들기","Izveido ielādes ierīces no ISO failiem (Windows, Linux, u.c.)","Sukurkite įkrovos diskus iš įkrovos ISO (Windows, Linux ir kt.)","Buat pemacu boleh boot daripada ISO boleh boot (Windows, Linux, dll.)","Lag oppstartabar enhet/disk fra ISOer (Windows, Linux, etc.)","ایجاد درایوهای قابل بوت از ISOهای قابل بوت (ویندوز، لینوکس و غیره)","Twórz dyski rozruchowe z obrazów ISO (Windows, Linux itp.)","Criar discos inicializáveis a partir de ISOs inicializáveis (Windows, Linux, etc.)","Criar unidades inicializáveis a partir de ISOs inicializáveis (Windows, Linux, etc.)","Crează drive-uri bootabile de la ISO-uri bootabile (Windows, Linux, etc.)","Создание загрузочных дисков из загрузочных образов ISO (Windows, Linux и т.д.)","Kreirajte disk jedinice za pokretanje sistema od ISO-a koji se mogu pokretanja sistema (Windows, Linux itd.)","Vytvorte bootovacie jednotky z ISO súborov (Windows, Linux atď.)","Ustvarite zagonske pogone iz zagonskih ISO-jev (Windows, Linux itd.)","Cree unidades de arranque desde ISO de arranque (Windows, Linux, etc.)","Skapa startbara enheter från startbara ISO-filer (Windows, Linux, etc.)","สร้าง USB ไดรฟ์บูตจากไฟล์ ISO ที่บูตได้ (เช่น ไฟล์ติดตั้ง Windows หรือ Linux เป็นต้น)","Önyüklenebilir ISO'lardan önyüklenebilir sürücüler oluşturun (Windows, Linux, vb.)","Створення завантажувальних пристроїв з завантажувальних образів (Windows, Linux, тощо)","Tạo ổ đĩa có thể khởi động từ các file ISO có thể khởi động (Windows, Linux, v.v...)" "Feature4","703","Text","","Create bootable drives from bootable disk images, including compressed ones","إنشاء محركات أقراص قابلة للإقلاع من صور الأقراص القابلة للإقلاع ، بما في ذلك الأقراص المضغوطة","Създаване на стартиращи устройства от образи, включително компресирани такива","从可启动硬盘镜像 (包括压缩镜像) 创建可启动驱动器","從可開機硬碟映像檔 (包括壓縮映像檔) 建立可開機隨身碟","Stvaranje pogona za pokretanje iz slika diska za pokretanje, uključujući komprimirane","Vytváření zaváděcích jednotek ze zaváděcích obrazů disků, včetně komprimovaných","Lav opstartsbarer drev fra opstartsbarer disk billeder, inklusiv komprimerede billeder","Opstartbare schijven aanmaken van opstartbare schijf-images, inclusief gecomprimeerde images","Luo käynnistysasemia boottaavista levykuvista, pakatut kuvat mukaanlukien","Créez des disques amorçables à partir d'images disque, y compris à partir d'images compressées","Erstellen bootfähiger Laufwerke aus bootfähigen Festplatten-Images, einschließlich komprimierter Images","Δημιουργήστε μονάδες εκκίνησης από εικόνες δίσκου με δυνατότητα εκκίνησης, συμπεριλαμβανομένων συμπιεσμένων","יצירת כוננים הניתנים לאתחול מקובצי תמונת דיסק הניתנים לאתחול, כולל קבצים דחוסים","Bootolható meghajtók készítése bootolható lemez képfájlokból, beleértve a tömörítetteket is","Buat perangkat yang dapat di boot dari Disk Image, termasuk yang Disk Image yang terkompresi","Crea unità avviabili da immagini disco avviabili, incluse quelle compresse","圧縮済みのものを含むディスクイメージから起動可能ドライブを作成します。","압축된 이미지를 포함하여 부팅 가능한 디스크 이미지에서 부팅 가능한 드라이브 만들기","Izveido ielādes ierīces no ielādes disku virtuālajiem attēliem, tai skaitā arī no saspiestajiem","Sukurkite įkrovos diskus iš įkrovos disko vaizdų, įskaitant suspaustus","Buat pemacu boleh boot daripada imej cakera boleh boot, termasuk yang dimampatkan","Lag oppstartbare disker fra images, inkludert komprimerte sådan","درایوهای قابل بوت را از تصاویر دیسک قابل بوت، از جمله موارد فشرده، ایجاد کنید","Twórz dyski rozruchowe z obrazów dysków, włączając skompresowane","Criar discos inicializáveis a partir de imagens de disco inicializáveis, inclusive de imagens compactadas","Criar unidades inicializáveis a partir de imagens de disco inicializáveis, inclusive de imagens compactadas","Crează drive-uri de la imagini de disc bootabile, incluzând cele compresate","Создание загрузочных дисков из образов загрузочных дисков, в том числе сжатых","Kreiranje disk jedinica za pokretanje sistema sa slika diska koji se može pokretanja, uključujući kompresovane","Vytvorte bootovacie jednotky z diskových obrazov, vrátane tých komprimovaných","Ustvarite zagonske pogone iz slik diska, ki jih je mogoče zagnati, vključno s stisnjenimi","Cree unidades de arranque a partir de imágenes de disco de arranque, incluidas las comprimidas","Skapa startbara enheter från startbara diskavbildningar, inklusive komprimerade","สร้างไดรฟ์บูตจากดิสก์อิมเมจที่บูตได้ (รองรับไฟล์ดิสก์อิมเมจที่ถูกบีบอัด)","Sıkıştırılmış olanlar da dahil olmak üzere önyüklenebilir disk yansısından önyüklenebilir sürücüler oluşturun","Створення завантажувальних пристроїв з завантажувальних образів, у тому числі стиснутих","Tạo ổ đĩa có thể khởi động từ các tệp đĩa có thể khởi động, bao gồm cả tệp nén" "Feature5","704","Text","","Create BIOS or UEFI bootable drives, including UEFI bootable NTFS","إنشاء BIOS أو محركات أقراص UEFI قابلة للإقلاع ، بما في ذلك UEFI NTFS القابل للتشغيل","Създаване на BIOS или UEFI стартиращи устройства, включително UEFI стартиращ NTFS","创建 BIOS 或 UEFI 可启动驱动器,包括 UEFI 可启动的 NTFS 驱动器","建立 BIOS 或 UEFI 可開機隨身碟,包括 UEFI 下的可開機 NTFS 隨身碟","Stvaranje BIOS ili UEFI pogona za pokretanje, uključujući UEFI NTFS za pokretanje","Vytvořte zaváděcí jednotky BIOS nebo UEFI, včetně zaváděcích souborů NTFS UEFI","Lav BIOS eller UEFI opstartsbarer drev, inklusiv UEFI opstartsbarer NTFS","BIOS of UEFI opstartbare schijven aanmaken, inclusief UEFI opstartbare NTFS","Luo BIOS- tai UEFI-boottaavia asemia, mukaanlukien UEFI-boottaavat NTFS-asemat","Créez des disques amorçables BIOS ou UEFI, y compris des disques UEFI amorçables utilisant NTFS","Erstellen von BIOS- oder UEFI-bootfähigen Laufwerken, einschließlich UEFI-bootfähigem NTFS","Δημιουργήστε μονάδες δίσκου με δυνατότητα εκκίνησης BIOS ή UEFI, συμπεριλαμβανομένων NTFS με δυνατότητα εκκίνησης UEFI","יצירת כוננים הניתנים לאתחול ממחשבים התומכים ב־BIOS או UEFI, לרבות כוננים הניתנים לאתחול מ־UEFI, המשתמשים במערכת הקבצים NTFS","BIOS-ból vagy UEFI-ből bootolható meghajtók készítése, beleértve az UEFI-ből bootolható NTFS meghajtókat is","Buat perangkat BIOS atau UEFI yang dapat di boot, termasuk perangkat NTFS yang dapat di boot oleh UEFI","Crea unità avviabili BIOS o UEFI, incluso NTFS avviabile UEFI","UEFI:NTFSを含むBIOS及びUEFIで起動可能なドライブを作成します。","UEFI 부팅 가능한 NTFS를 포함하여 BIOS 또는 UEFI 부팅 가능 드라이브 만들기","Izveido BIOS vai UEFI ielādes ierīces, ieskaitot UEFI ielādi no NTFS","Sukurkite BIOS arba UEFI įkrovos diskus, įskaitant UEFI įkrovos NTFS","Buat pemacu boleh boot BIOS atau UEFI, termasuk NTFS boleh boot UEFI","Lag BIOS eller UEFI oppstartbare disker, inkludert UEFI oppstartbar NTFS","درایوهای قابل بوت بایوس یا UEFI از جمله NTFS قابل بوت UEFI ایجاد کنید","Stwórz dysk rozruchowy BIOS lub UEFI, włączając bootowalny dysk UEFI NTFS","Criar discos inicializáveis ​​BIOS ou UEFI, inclusive discos UEFI inicializáveis ​​usando NTFS","Criar discos inicializáveis ​​BIOS ou UEFI, inclusive discos UEFI inicializáveis ​​usando NTFS","Crează discuri bootabile BIOS sau UEFI, incluzând NTFS-uri bootabile de UEFI","Создание загрузочных дисков BIOS или UEFI, включая загрузочный UEFI NTFS","Kreiranje BIOS ili UEFI disk jedinica za pokretanje sistema, uključujući NTFS sa UEFI pokretanjem sistema","Vytvorte bootovacie jednotky systému BIOS alebo UEFI vrátane UEFI bootovateľnej jednotky NTFS","Ustvarite zagonske pogone BIOS ali UEFI, vključno z UEFI bootable NTFS","Cree unidades de arranque BIOS o UEFI, incluido NTFS de arranque UEFI","Skapa BIOS- eller UEFI-startbara enheter, inklusive UEFI-startbar NTFS","สร้างไดรฟ์บูตสำหรับระบบ BIOS หรือ UEFI และ UEFI bootable NTFS","UEFI önyüklenebilir NTFS dahil BIOS ya da UEFI önyüklenebilir sürücüler oluşturun","Створення завантажувальних пристроїв BIOS чи UEFI, включаючи завантажувальний UEFI NTFS","Tạo ổ đĩa có thể khởi động với hệ thống BIOS hoặc UEFI, bao gồm cả NTFS có thể khởi động với UEFI" -"Feature6","705","Text","","Create 'Windows To Go' drives","إنشاء محركات أقراص ""Windows To Go\","Създаване на 'Windows To Go' устройства","创建 'Windows To Go' 驱动器","建立 'Windows To Go' 隨身碟","Stvaranje pogona ""Windows To Go\","Vytvoření jednotek ""Windows To Go","Lav 'Windows To Go' drev","'Windows To Go'-schijven aanmaken","Luo 'Windows To Go' -asemia","Créez des disques 'Windows To Go'","Erstellen von ""Windows To Go""-Laufwerken","Δημιουργήστε μονάδες δίσκου ""Windows To Go\","יצירת כונני Windows To Go","'Windows To Go' meghajtók készítése","Buat perangkat Windows To Go","Crea unità 'Windows To Go'","Windows To Goドライブを作成します。","'Windows To Go' 드라이브 만들기","Izveido 'Windows To Go' ierīces","Sukurkite ""Windows To Go"" diskus","Buat pemacu 'Windows To Go'","Lag 'Windows To Go' disker","درایوهای ""Windows To Go"" را ایجاد کنید","Stwórz dysk 'Windows To Go'","Criar discos 'Windows To Go'","Criar discos 'Windows To Go'","Crează discuri 'Windows To Go'","Создание дисков Windows To Go","Kreiranje disk jedinica ""Windows to Go\","Vytvorte jednotky „Windows To Go\","Ustvarjanje pogonov »Windows To Go'","Cree unidades 'Windows To Go'","Skapa ""Windows To Go""-enheter","สร้างไดรฟ์ของ 'Windows To Go'","'Windows To Go' sürücüleri oluşturun","Створення пристроїв 'Windows To Go'","Tạo ổ đĩa 'Windows To Go'" +"Feature6","705","Text","","Create 'Windows To Go' drives","إنشاء محركات أقراص ""Windows To Go\","Създаване на 'Windows To Go' устройства","创建 'Windows To Go' 驱动器","建立 'Windows To Go' 隨身碟","Stvaranje pogona ""Windows To Go\","Vytvoření jednotek ""Windows To Go","Lav 'Windows To Go' drev","'Windows To Go'-schijven aanmaken","Luo 'Windows To Go' -asemia","Créez des disques 'Windows To Go'","Erstellen von 'Windows To Go'-Laufwerken","Δημιουργήστε μονάδες δίσκου ""Windows To Go\","יצירת כונני Windows To Go","'Windows To Go' meghajtók készítése","Buat perangkat Windows To Go","Crea unità 'Windows To Go'","Windows To Goドライブを作成します。","'Windows To Go' 드라이브 만들기","Izveido 'Windows To Go' ierīces","Sukurkite ""Windows To Go"" diskus","Buat pemacu 'Windows To Go'","Lag 'Windows To Go' disker","درایوهای ""Windows To Go"" را ایجاد کنید","Stwórz dysk 'Windows To Go'","Criar discos 'Windows To Go'","Criar discos 'Windows To Go'","Crează discuri 'Windows To Go'","Создание дисков Windows To Go","Kreiranje disk jedinica ""Windows to Go\","Vytvorte jednotky „Windows To Go\","Ustvarjanje pogonov »Windows To Go'","Cree unidades 'Windows To Go'","Skapa ""Windows To Go""-enheter","สร้างไดรฟ์ของ 'Windows To Go'","'Windows To Go' sürücüleri oluşturun","Створення пристроїв 'Windows To Go'","Tạo ổ đĩa 'Windows To Go'" "Feature7","706","Text","","Create Windows 11 installation drives for PCs that don't have TPM or Secure Boot","قم بإنشاء محركات تثبيت ويندوز 11 لأجهزة الكمبيوتر التي لا تحتوي على TPM أو الإقلاع الآمن (Secure Boot)","Създаване на Windows 11 инсталационно устройство за компютри, които нямат TPM или Secure Boot","为没有 TPM 或安全启动功能的电脑创建 Windows 11 安装驱动器","為沒有 TPM 或安全開機功能的電腦建立 Windows 11 安裝隨身碟","Stvaranje instalacijskih pogona sustava Windows 11 za PC-jeve koji nemaju TPM ili Sigurno pokretanje","Vytvoření instalačních jednotek systému Windows 11 pro počítače bez čipu TPM nebo Secure Boot","Lav Windows 11 installations drev for PCer der ikker har TPM eller Secure Boot","Windows 11 installatieschijven aanmaken voor pc's die geen TPM of Secure Boot hebben","Luo Windows 11 -asennusasemia tietokoneille, jotka eivät tue TPM- tai Secure Boot -ominaisuuksia","Créez des disques d'installation Windows 11 pour des PCs qui ne disposent pas de TPM ou Secure Boot","Erstellen von Windows 11-Installationslaufwerken für PCs ohne TPM oder Secure Boot","Δημιουργήστε μονάδες εγκατάστασης των Windows 11 για υπολογιστές που δεν διαθέτουν TPM ή Ασφαλή Εκκίνηση","יצירת כונני התקנה של Windows 11 עבור מחשבים שאין להם TPM או Secure Boot","Windows 11 telepítési meghajtók készítése olyan PC-k számára, amelyek nem rendelkeznek TPM vagy Secure Boot funkciókkal","Buat perangkat pemasang Windows 11 untuk PC yang tidak mempunyai TPM atau Secure Boot","Crea unità di installazione di Windows 11 per PC che non dispongono di TPM o avvio protetto","TPM及びセキュアブート非対応のPC向けのWindows 11インストールドライブを作成します","TPM 또는 보안 부팅이 없는 PC용 Windows 11 설치 드라이브 만들기","Izveido Windows 11 instalācijas ierīces datoriem, kam nav TPM vai Secure Boot","Sukurkite Windows 11 diegimo diskus kompiuteriams, kuriuose nėra TPM arba saugaus įkrovimo","Buat pemacu pemasangan Windows 11 untuk PC yang tidak mempunyai TPM atau But Selamat","Lag oppstartsmedia for Windows 11 som ikke krever TPM eller Secure Boot","درایوهای نصب ویندوز 11 را برای رایانه هایی که TPM یا Secure Boot ندارند ایجاد کنید","Twórz dyski instalacyjne systemu Windows 11 dla komputerów, które nie posiadają modułu TPM ani Secure Boot","Criar discos de instalação do Windows 11 para PCs que não possuem TPM ou Secure Boot","Criar discos de instalação do Windows 11 para PCs que não possuem TPM ou Arranque Seguro","Crează drive de instalare Windows 11 pe computere care nu au TPM sau Bootare Securizată","Создание установочных дисков Windows 11 для компьютеров без TPM или безопасной загрузки","Kreiranje windows 11 instalacionih disk jedinica za računare koji nemaju TPM ili bezbedno pokretanje sistema","Vytvorte inštalačné jednotky Windows 11 pre počítače, ktoré nemajú modul TPM, ani Secure Boot","Ustvarjanje namestitvenih pogonov za Windows 11 za računalnike, ki nimate TPM ali Varnega zagona","Cree unidades de instalación de Windows 11 para PC que no tienen TPM o Arranque seguro","Skapa installationsenheter till Windows 11 för datorer som inte har TPM eller säker start","สร้างไดรฟ์ติดตั้ง Windows 11 สำหรับคอมพิวเตอร์ที่ไม่มี TPM หรือ Secure Boot","TPM ya da Güvenli Önyüklemeye sahip olmayan bilgisayarlar için Windows 11 kurulum sürücüleri oluşturun","Створення інсталяційних дисків Windows 11 для ПК, які не мають TPM чи Secure Boot","Tạo ổ đĩa cài đặt Windows 11 cho các máy tính không có TPM hoặc Secure Boot" "Feature8","707","Text","","Create persistent Linux partitions","إنشاء Persistent Linux partitions","Създаване на устойчиви Linux дялове","创建持久 Linux 分区","建立持續性 Linux 磁區","Stvaranje trajnih Linux particija","Vytvoření trvalých oddílů systému Linux","Lav vedvarende Linux adskillelser","Persistent Linux partities aanmaken","Luo pysyviä Linux-osioita","Créez des partitions persistentes pour Linux","Persistente Linux-Partitionen erstellen","Δημιουργήστε μόνιμα διαμερίσματα Linux","יצירת מחיצות Linux קבועות","Tartós Linux partíciók készítése","Buat partisi Linux yang tetap/persistent","Crea partizioni persistenti Linux","記録用Linuxパーティションを作成します。","영구 리눅스 파티션 만들기","Izveido pastāvīgas Linux partīcijas","Sukurkite nuolatinius Linux skaidinius","Buat partition Linux berterusan","Lag persistente Linux partisjoner","ایجاد پارتیشن های لینوکس دائمی","Utwórz trwałe partycje Linux","Criar partições persistentes para Linux","Crie partições persistentes para Linux","Crează partiție de Linux persistentă","Создание постоянных разделов Linux","Kreiranje upornih Linux particija","Vytvorte trvalé oblasti systému Linux","Ustvarjanje trajnih Linux particij","Crear particiones persistentes de Linux","Skapa beständiga Linux-partitioner","สร้าง Linux partition แบบ persistent","Kalıcı Linux bölümleri oluşturun","Створення розділу збереження Linux","Tạo phân vùng Linux liên tục" "Feature9","708","Text","","Create VHD/DD images of the selected drive","إنشاء صور VHD / DD لمحرك الأقراص المحدد","Създаване на VHD/DD образи на избраното устройство","为选择的驱动器创建 VHD/DD 镜像","為選取的磁碟機建立 VHD/DD 映像檔","Stvaranje VHD/DD slika odabranog pogona","Vytvoření obrazů VHD/DD z vybrané jednotky","Lav VHD/DD billeder af det valgte drev","VHD/DD-images van de geselecteerde schijf aanmaken","Luo VHD/DD-kuvia valitusta asemasta","Créez des images VHD/DD du périphérique sélectionné","VHD/DD-Images des ausgewählten Laufwerks erstellen","Δημιουργήστε εικόνες VHD/DD της επιλεγμένης μονάδας δίσκου","יצירת קובצי תמונה מסוג VHD/DD של הכונן שנבחר","VHD/DD képfájl készítése a kiválasztott meghajtóról","Buat image VHD/DD dari penyimpanan yang dipilih","Crea immagini VHD/DD dell'unità selezionata","選択されたドライブのVHD/DDイメージを作成します。","선택한 드라이브의 VHD/DD 이미지 만들기","Izveido izvēlētā diska VHD/DD virtuālos attēlus","Sukurkite pasirinkto disko VHD / DD vaizdus","Buat imej VHD/DD bagi pemacu yang dipilih","Lag VHD/DD speilinger av valgt disk","تصاویر VHD/DD از درایو انتخاب شده ایجاد کنید","Stwórz obraz VHD/DD z wybranego dysku","Criar imagens VHD/DD do dispositivo selecionado","Criar imagens VHD/DD do dispositivo selecionado","Crează imagini VHD/DD de pe drive-ul selectat","Создание образов VHD/DD выбранного диска","Kreiranje VHD/DD slika izabrane disk jedinice","Vytvorte obrazy VHD/DD z vybratej jednotky","Ustvarjanje VHD/DD slik izbranega pogona","Cree imágenes VHD/DD de la unidad seleccionada","Skapa VHD/DD-avbilder av den valda enheten","สร้างอิมเมจไฟล์แบบ VHD/DD จากไดรฟ์ที่เลือก","Seçilen sürücünün VHD/DD yansılarını oluşturun","Створення образів VHD/DD з вибраних дисків","Tạo tệp VHD/DD từ ổ đĩa đã chọn" -"Feature10","709","Text","","Compute MD5, SHA-1, SHA-256 and SHA-512 checksums of the selected image","حساب المجاميع الإختبارية MD5 و SHA-1 و SHA-256 و SHA-512 للصورة المحددة","Изчисляване на MD5, SHA-1, SHA-256 и SHA-512 чексуми на избраният образ","计算被选择镜像的 MD5、SHA-1、SHA-256 和 SHA-512 校验码","計算被選取映像的 MD5、SHA-1、SHA-256 和 SHA-512 檢查碼","Izračunajte kontrolne zbrojeve odabrane slike MD5, SHA-1, SHA-256 i SHA-512","Výpočet kontrolních součtů MD5, SHA-1, SHA-256 a SHA-512 vybraného obrazu","Beregn MD5, SHA-1, SHA-256 og SHA-512 checksums af det valgte billede","MD5, SHA-1, SHA-256 en SHA-512 controlesommen berekenen van de geselecteerde image","Laske MD5, SHA-1, SHA-256 ja SHA-512 tarkistussummia valitusta levykuvasta","Calculez les sommes de contrôle MD5, SHA-1, SHA-256 et SHA-512 de l'image sélectionnée","Berechnung von MD5-, SHA-1-, SHA-256- und SHA-512-Prüfsummen für das ausgewählte Bild","Υπολογίστε τα αθροίσματα ελέγχου MD5, SHA-1, SHA-256 και SHA-512 της επιλεγμένης εικόνας","חישוב סיכומי ביקורת מסוג MD5,‏ SHA-1,‏ SHA-256 ו־SHA-512 של קובץ התמונה שנבחרה","A kiválasztott képfájl MD5, SHA-1, SHA-256 és SHA-512 ellenőrző összegének kiszámítása","Hitung checksum MD5, SHA-1, SHA-256 dan SHA-512 dari image yang dipilih","Calcola i checksum MD5, SHA-1, SHA-256 e SHA-512 dell'immagine selezionata","選択されたイメージのMD5、SHA-1、SHA-256及びSHA-512チェックサムを計算します。","선택한 이미지의 MD5, SHA-1, SHA-256 및 SHA-512 체크섬 계산","Izskaitļo izvēlētā virtuālā attēla MD5, SHA-1, SHA-256 un SHA-512 kontrolsummas","Apskaičiuokite pasirinkto vaizdo MD5, SHA-1, SHA-256 ir SHA-512 kontrolines sumas","Kira MD5, SHA-1, SHA-256 dan SHA-512 checksum imej yang dipilih","Kalkuler MD5, SHA-1, SHA-256 og SHA-512 sjekksummer fra valgt speiling","MD5، SHA-1، SHA-256 و SHA-512 را برای تصویر انتخابی محاسبه کنید","Oblicz sumy kontrolne MD5, SHA-1, SHA-256 i SHA-512 dla wybranego obrazu","Calcular somas de verificação MD5, SHA-1, SHA-256 e SHA-512 da imagem selecionada","Calcular checksums MD5, SHA-1, SHA-256 e SHA-512 da imagem selecionada","Compută MD5, SHA-1, SHA-256 și SHA-512 suma de control ale imaginilor selectate","Вычисление контрольных сумм MD5, SHA-1, SHA-256 и SHA-512 выбранного образа","Izračunajte MD5, SHA-1, SHA-256 i SHA-512 kontrolne preglede izabrane slike","Vypočítajte kontrolné súčty vybratého obrazu (MD5, SHA-1, SHA-256 a SHA-512)","Račun MD5, SHA-1, SHA-256 in SHA-512 kontrolni vsoti izbrane slike","Calcule las sumas de comprobación MD5, SHA-1, SHA-256 y SHA-512 de la imagen seleccionada","Beräkna kontrollsummor MD5, SHA-1, SHA-256 och SHA-512 för den valda avbilden","คำนวณรหัส MD5, SHA-1, SHA-256, SHA-512 ของไฟล์อิมเมจที่เลือก","Seçilen yansının MD5, SHA-1, SHA-256 ve SHA-512 sağlama toplamlarını hesaplayın","Обчислення контрольних сум MD5, SHA-1, SHA-256 та SHA-512 для вибраних образів","Tính tổng kiểm MD5, SHA-1, SHA-256 và SHA-512 của tệp đã chọn" -"Feature11","710","Text","","Perform bad blocks checks, including detection of ""fake"" flash drives","إجراء فحوصات كتل تالفة ، بما في ذلك الكشف عن محركات أقراص فلاش ""زائفة\","Проверяване за лоши блокове, включително засичане на ""фалшиви"" устройства","执行坏块检查,包括对”假“U盘的检测","執行壞軌檢查,包括對”假“USB 快閃磁碟 +"Feature10","709","Text","","Compute MD5, SHA-1, SHA-256 and SHA-512 checksums of the selected image","حساب المجاميع الإختبارية MD5 و SHA-1 و SHA-256 و SHA-512 للصورة المحددة","Изчисляване на MD5, SHA-1, SHA-256 и SHA-512 чексуми на избраният образ","计算被选择镜像的 MD5、SHA-1、SHA-256 和 SHA-512 校验码","計算被選取映像的 MD5、SHA-1、SHA-256 和 SHA-512 檢查碼","Izračunajte kontrolne zbrojeve odabrane slike MD5, SHA-1, SHA-256 i SHA-512","Výpočet kontrolních součtů MD5, SHA-1, SHA-256 a SHA-512 vybraného obrazu","Beregn MD5, SHA-1, SHA-256 og SHA-512 checksums af det valgte billede","MD5, SHA-1, SHA-256 en SHA-512 controlesommen berekenen van de geselecteerde image","Laske MD5, SHA-1, SHA-256 ja SHA-512 tarkistussummia valitusta levykuvasta","Calculez les sommes de contrôle MD5, SHA-1, SHA-256 et SHA-512 de l'image sélectionnée","Berechnung von MD5-, SHA-1-, SHA-256- und SHA-512-Prüfsummen für das ausgewählte Image","Υπολογίστε τα αθροίσματα ελέγχου MD5, SHA-1, SHA-256 και SHA-512 της επιλεγμένης εικόνας","חישוב סיכומי ביקורת מסוג MD5,‏ SHA-1,‏ SHA-256 ו־SHA-512 של קובץ התמונה שנבחרה","A kiválasztott képfájl MD5, SHA-1, SHA-256 és SHA-512 ellenőrző összegének kiszámítása","Hitung checksum MD5, SHA-1, SHA-256 dan SHA-512 dari image yang dipilih","Calcola i checksum MD5, SHA-1, SHA-256 e SHA-512 dell'immagine selezionata","選択されたイメージのMD5、SHA-1、SHA-256及びSHA-512チェックサムを計算します。","선택한 이미지의 MD5, SHA-1, SHA-256 및 SHA-512 체크섬 계산","Izskaitļo izvēlētā virtuālā attēla MD5, SHA-1, SHA-256 un SHA-512 kontrolsummas","Apskaičiuokite pasirinkto vaizdo MD5, SHA-1, SHA-256 ir SHA-512 kontrolines sumas","Kira MD5, SHA-1, SHA-256 dan SHA-512 checksum imej yang dipilih","Kalkuler MD5, SHA-1, SHA-256 og SHA-512 sjekksummer fra valgt speiling","MD5، SHA-1، SHA-256 و SHA-512 را برای تصویر انتخابی محاسبه کنید","Oblicz sumy kontrolne MD5, SHA-1, SHA-256 i SHA-512 dla wybranego obrazu","Calcular somas de verificação MD5, SHA-1, SHA-256 e SHA-512 da imagem selecionada","Calcular checksums MD5, SHA-1, SHA-256 e SHA-512 da imagem selecionada","Compută MD5, SHA-1, SHA-256 și SHA-512 suma de control ale imaginilor selectate","Вычисление контрольных сумм MD5, SHA-1, SHA-256 и SHA-512 выбранного образа","Izračunajte MD5, SHA-1, SHA-256 i SHA-512 kontrolne preglede izabrane slike","Vypočítajte kontrolné súčty vybratého obrazu (MD5, SHA-1, SHA-256 a SHA-512)","Račun MD5, SHA-1, SHA-256 in SHA-512 kontrolni vsoti izbrane slike","Calcule las sumas de comprobación MD5, SHA-1, SHA-256 y SHA-512 de la imagen seleccionada","Beräkna kontrollsummor MD5, SHA-1, SHA-256 och SHA-512 för den valda avbilden","คำนวณรหัส MD5, SHA-1, SHA-256, SHA-512 ของไฟล์อิมเมจที่เลือก","Seçilen yansının MD5, SHA-1, SHA-256 ve SHA-512 sağlama toplamlarını hesaplayın","Обчислення контрольних сум MD5, SHA-1, SHA-256 та SHA-512 для вибраних образів","Tính tổng kiểm MD5, SHA-1, SHA-256 và SHA-512 của tệp đã chọn" +"Feature11","710","Text","","Perform bad blocks checks, including detection of ""fake"" flash drives","إجراء فحوصات كتل تالفة ، بما في ذلك الكشف عن محركات أقراص فلاش ""زائفة\","Проверяване за лоши блокове, включително засичане на ""фалшиви"" устройства","执行坏块检查,包括对”假“U盘的检测","執行壞軌檢查,包括對 ”假“ USB 快閃磁碟 的偵測","Izvršite provjere loših blokova, uključujući otkrivanje ""lažnih"" flash pogona","Provést kontrolu vadných bloků, včetně detekce ""falešných"" bloků. flash disky","Udøv dårlige blokke tjeks, inklusiv opdagelse af ""falske"" flashdrev","Controles uitvoeren op slechte blokken, inclusief detectie van ""valse"" flashdrives","Suorita viallisten lohkojen tarkistuksia, sisältäen ""valheellisten"" muistitikkujen tunnistamisen","Executez un test de mauvais secteurs avec detection des ""fake drives\","Durchführung von Prüfungen auf fehlerhafte Blöcke, einschließlich der Erkennung von ""gefälschten"" Flash-Laufwerken","Εκτελέστε ελέγχους εσφαλμένων block, συμπεριλαμβανομένου του εντοπισμού ""ψευδών"" μονάδων flash","ביצוע בדיקות אחר בלוקים (אזורים) פגומים, כולל זיהוי של כונני הבזק ""מזוייפים\","Hibás blokkok ellenőrzése, beleértve a ""hamis"" flash meghajtók detektálását","Lakukan cek Blok yang buruk, termasuk deteksi USB Flash Disk ""PALSU\","Esegui controlli dei blocchi danneggiati, incluso il rilevamento di unità flash ""false\","不良ブロックチェック及び容量詐欺ドライブの検知を行います。","""위조"" 플래시 드라이브 감지를 포함하여 불량 블록 검사 수행","Izpilda bojāto bloku pārbaudi ieskaitot ""falsificēto"" nesēju noteikšanu","Atlikite blogų blokų patikrinimus, įskaitant ""netikrų"" flash diskų aptikimą","Melakukan pemeriksaan blok buruk, termasuk pengesanan pemacu kilat ""palsu\","Utfør sjekk for dårlige sektorer, inkludert sjekk for forfalskede flash disker","بررسی بلوک های بد، از جمله تشخیص درایوهای فلش ""جعلی"" را انجام دهید","Sprawdź dysk pod względem spójności danych lub wykryj ""nieoryginalny"" pendrive","Executar verificações de blocos defeituosos, incluindo detecção de unidades flash ""falsificadas\","Executar verificações de blocos inválidos, incluindo a deteção de unidades flash ""falsas\","Verifică blocuri rele, incluzând detectarea de drive-uri flash ""false\","Проверка на плохие блоки, обнаружение ""поддельных"" флешек","Izvršite provere loših blokova, uključujući otkrivanje ""lažnih"" fleš diskova","Vykonajte kontroly zlých blokov vrátane detekcie „falošných"" prenosných diskov","Izvajanje preverjanj slabih blokov, vključno z odkrivanjem »lažnih« bliskavic","Realice comprobaciones de bloques defectuosos, incluida la detección de unidades flash ""falsas\","Utför kontroll av trasiga block, inklusive upptäckt av ""falska"" USB-minnen","ตรวจสอบจุดบกพร่อง รวมไปถึงการทดสอบแฟลชไดรฟ์ว่าเป็น ""ของปลอม"" หรือไม่","""Sahte"" flash sürücülerin tespiti de dahil olmak üzere hatalı blok kontrolleri gerçekleştirin","Перевірка дисків (включаючи фальшиві диски)","Thực hiện kiểm tra điểm lỗi, bao gồm phát hiện ổ đĩa ""giả\" -"Feature12","711","Text","","Download official Microsoft Windows retail ISOs","قم بتنزيل ملفات ISO الرسمية الخاصة بـ Microsoft Windows","Изтегляне на официални Microsoft Windows ISO образи","下载微软官方 Windows 镜像","下載微軟官方 Windows 映像檔","Preuzimanje službenih ISO-ova za maloprodaju sustava Microsoft Windows","Stažení oficiálních souborů ISO systému Microsoft Windows","Hent officielle Microsoft Windows detail ISOer","Officiële Microsoft Windows retail ISO's downloaden","Lataa virallisia Microsoft Windowsin jälleenmyyntiversion ISO-levykuvia","Téléchargez des images ISOs commerciales officielles de Microsoft Windows","Offizielle Microsoft Windows-ISOs herunterladen","Κατεβάστε τα επίσημα retail ISO των Microsoft Windows","הורדת קובצי ה־ISO הקמעונאיים הרשמיים של Microsoft Windows","Hivatalos Microsoft Windows kiskereskedelmi ISO képfájlok letöltése","Unduh ISO Microsoft Windows resmi","Scarica le ISO ufficiali di Microsoft Windows","マイクロソフト公式のWindows ISOをダウンロードします。","공식 Microsoft Windows 리테일 ISO 다운로드","Lejupielādē oficiālos Microsoft ISO failus","Atsisiųskite oficialius Microsoft Windows mažmeninės prekybos ISO","Muat turun rasmi ISO runcit Microsoft Windows","Last ned offisielle Windows ISOer","ISO های رسمی ماکروسافت را دریافت کنید","Pobierz oficjalny obraz ISO systemu Microsoft Windows","Baixar ISOs oficiais do Microsoft Windows","Transferir ISOs oficiais do Microsoft Windows Retail","Descarcă un Microsoft Windows ISO oficial de vânzare","Загрузка официальных ISO-образов Windows","Preuzmite zvanične Microsoft Windows maloprodajne ISO-ove","Stiahnite si oficiálne ISO pre Microsoft Windows","Prenos uradnih Microsoft Windows maloprodaja ISOs","Descargue los ISO oficiales de Microsoft Windows","Ladda ner officiella Microsoft Windows ISO-filer","ดาวน์โหลดไฟล์ ISO ของ Microsoft Windows จากเว็บไซต์ทางการของ Microsoft","Resmi Microsoft Windows Retail ISO'larını indirin","Завантаження офіційних образів Microsoft Windows","Tải xuống các tệp Microsoft Windows ISO bán lẻ chính thức" -"Feature13","712","Text","","Download UEFI Shell ISOs","قم بتنزيل UEFI Shell ISOs","Изтегляне на UEFI Shell образи","下载 UEFI Shell 镜像","下載 UEFI Shell 映像檔","Preuzmite ISO-ove UEFI ljuske","Stažení souborů UEFI Shell ISO","Hent UEFI Shell ISOer","UEFI Shell ISO's downloaden","Lataa UEFI Shell ISO-levykuvia","Téléchargez des images ISOs du Shell UEFI","UEFI-Shell-ISOs herunterladen","Κατεβάστε τα ISO Shell UEFI","הורדת קובצי ISO של מעטפת UEFI","UEFI Shell ISO képfájlok letöltése","Unduh Shell ISO UEFI","Scarica le ISO della shell UEFI","UEFIシェルのISOをダウンロードします。","UEFI Shell ISO 다운로드","Lejupielādē UEFI OS ISO failus","Atsisiųskite UEFI Shell ISO","Muat turun ISO Shell UEFI","Last ned UEFI kommandolinje ISOer","ISO های پوسته UEFI را دانلود کنید","Ściągnij obrazy ISO UEFI Shell","Baixar ISOs do Shell UEFI","Transferir ISOs de UEFI Shell","Descarcă UEFI Shell ISO-uri","Загрузка ISO-образов оболочки UEFI","Preuzmite UEFI Shell ISOs","Stiahnite UEFI Shell ISO","Prenos UEFI Shell ISOs","Descargar ISO de UEFI Shell","Ladda ner UEFI-skal ISO-filer","ดาวน์โหลดไฟล์ ISO ของ UEFI Shell","UEFI Shell ISO'larını indirin","Завантаження командної оболонки UEFI ISO","Tải xuống các tệp UEFI Shell ISO" +"Feature12","711","Text","","Download official Microsoft Windows retail ISOs","قم بتنزيل ملفات ISO الرسمية الخاصة بـ Microsoft Windows","Изтегляне на официални Microsoft Windows ISO образи","下载微软官方 Windows 镜像","下載微軟官方 Windows 映像檔","Preuzimanje službenih ISO-ova za maloprodaju sustava Microsoft Windows","Stažení oficiálních souborů ISO systému Microsoft Windows","Hent officielle Microsoft Windows detail ISOer","Officiële Microsoft Windows retail ISO's downloaden","Lataa virallisia Microsoft Windowsin jälleenmyyntiversion ISO-levykuvia","Téléchargez des images ISOs commerciales officielles de Microsoft Windows","Offizielle Microsoft Windows-ISOs herunterladen","Κατεβάστε τα επίσημα retail ISO των Microsoft Windows","הורדת קובצי ה־ISO הקמעונאיים הרשמיים של Microsoft Windows","Hivatalos Microsoft Windows kiskereskedelmi ISO képfájlok letöltése","Unduh ISO Microsoft Windows resmi","Scarica le ISO ufficiali di Microsoft Windows","マイクロソフト公式のWindows ISOをダウンロードします。","공식 Microsoft Windows 리테일 ISO 다운로드","Lejupielādē oficiālos Microsoft ISO failus","Atsisiųskite oficialius Microsoft Windows mažmeninės prekybos ISO","Muat turun rasmi ISO runcit Microsoft Windows","Last ned offisielle Windows ISOer","ISO های رسمی ماکروسافت را دریافت کنید","Pobierz oficjalny obraz ISO systemu Microsoft Windows","Baixar ISOs oficiais do Microsoft Windows","Descarregar ISOs oficiais do Microsoft Windows Retail","Descarcă un Microsoft Windows ISO oficial de vânzare","Загрузка официальных ISO-образов Windows","Preuzmite zvanične Microsoft Windows maloprodajne ISO-ove","Stiahnite si oficiálne ISO pre Microsoft Windows","Prenos uradnih Microsoft Windows maloprodaja ISOs","Descargue los ISO oficiales de Microsoft Windows","Ladda ner officiella Microsoft Windows ISO-filer","ดาวน์โหลดไฟล์ ISO ของ Microsoft Windows จากเว็บไซต์ทางการของ Microsoft","Resmi Microsoft Windows Retail ISO'larını indirin","Завантаження офіційних образів Microsoft Windows","Tải xuống các tệp Microsoft Windows ISO bán lẻ chính thức" +"Feature13","712","Text","","Download UEFI Shell ISOs","قم بتنزيل UEFI Shell ISOs","Изтегляне на UEFI Shell образи","下载 UEFI Shell 镜像","下載 UEFI Shell 映像檔","Preuzmite ISO-ove UEFI ljuske","Stažení souborů UEFI Shell ISO","Hent UEFI Shell ISOer","UEFI Shell ISO's downloaden","Lataa UEFI Shell ISO-levykuvia","Téléchargez des images ISOs du Shell UEFI","UEFI-Shell-ISOs herunterladen","Κατεβάστε τα ISO Shell UEFI","הורדת קובצי ISO של מעטפת UEFI","UEFI Shell ISO képfájlok letöltése","Unduh Shell ISO UEFI","Scarica le ISO della shell UEFI","UEFIシェルのISOをダウンロードします。","UEFI Shell ISO 다운로드","Lejupielādē UEFI OS ISO failus","Atsisiųskite UEFI Shell ISO","Muat turun ISO Shell UEFI","Last ned UEFI kommandolinje ISOer","ISO های پوسته UEFI را دانلود کنید","Ściągnij obrazy ISO UEFI Shell","Baixar ISOs do Shell UEFI","Descarregar ISOs de UEFI Shell","Descarcă UEFI Shell ISO-uri","Загрузка ISO-образов оболочки UEFI","Preuzmite UEFI Shell ISOs","Stiahnite UEFI Shell ISO","Prenos UEFI Shell ISOs","Descargar ISO de UEFI Shell","Ladda ner UEFI-skal ISO-filer","ดาวน์โหลดไฟล์ ISO ของ UEFI Shell","UEFI Shell ISO'larını indirin","Завантаження командної оболонки UEFI ISO","Tải xuống các tệp UEFI Shell ISO" "Feature14","713","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "Feature15","714","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "Feature16","715","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -308,7 +308,7 @@ Xem tại https://www.gnu.org/licenses/gpl-3.0.html để biết thêm chi tiế "RecommendedHardwareReq9","858","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "RecommendedHardwareReq10","859","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "RecommendedHardwareReq11","860","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -"SearchTerm1","900","Text","Boot","Boot","الإقلاع (Boot)","","启动","啟動","","","","Opstarten","Boottaus","Amorçable","","","בוט","","","Avvio","起動","부팅","Ielāde","Batas","","Oppstart","راه‌اندازی","","Inicialização","Inicializável","Bootează","Загрузочный","","boot","Zagon","Arranque","Uppstart","","Önyükle","Отримати","Khởi động" +"SearchTerm1","900","Text","Boot","Boot","الإقلاع (Boot)","","启动","啟動","","","","Opstarten","Boottaus","Amorçable","","","בוט","","","Avvio","起動","부팅","Ielāde","Batas","","Oppstart","راه‌اندازی","","Inicialização","Arranque","","Загрузочный","","boot","Zagon","Arranque","Uppstart","","Önyükle","Отримати","Khởi động" "SearchTerm2","901","Text","USB",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "SearchTerm3","902","Text","ISO",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, "SearchTerm4","903","Text","Windows",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/res/dbx/amd64_DBXUpdate.bin b/res/dbx/amd64_DBXUpdate.bin index 811e27eb..07a95e2b 100644 Binary files a/res/dbx/amd64_DBXUpdate.bin and b/res/dbx/amd64_DBXUpdate.bin differ diff --git a/res/dbx/dbx_info.h b/res/dbx/dbx_info.h index 34d4a201..eb0c2870 100644 --- a/res/dbx/dbx_info.h +++ b/res/dbx/dbx_info.h @@ -7,8 +7,8 @@ struct { char* url; uint64_t timestamp; } dbx_info[] = { - { "https://api.github.com/repos/microsoft/secureboot_objects/contents/PostSignedObjects/DBX/x86/DBXUpdate.bin", 1740428422 }, - { "https://api.github.com/repos/microsoft/secureboot_objects/contents/PostSignedObjects/DBX/amd64/DBXUpdate.bin", 1749602743 }, + { "https://api.github.com/repos/microsoft/secureboot_objects/contents/PostSignedObjects/DBX/x86/DBXUpdate.bin", 1760555920 }, + { "https://api.github.com/repos/microsoft/secureboot_objects/contents/PostSignedObjects/DBX/amd64/DBXUpdate.bin", 1760555920 }, { "https://api.github.com/repos/microsoft/secureboot_objects/contents/PostSignedObjects/DBX/arm/DBXUpdate.bin", 1740428422 }, { "https://api.github.com/repos/microsoft/secureboot_objects/contents/PostSignedObjects/DBX/arm64/DBXUpdate.bin", 1740428422 }, { "https://api.github.com/repos/microsoft/secureboot_objects/contents/PostSignedObjects/DBX/ia64/DBXUpdate.bin", 0 }, diff --git a/res/dbx/dbx_update.sh b/res/dbx/dbx_update.sh index fa472d2c..315dcf4e 100755 --- a/res/dbx/dbx_update.sh +++ b/res/dbx/dbx_update.sh @@ -9,7 +9,7 @@ get_commit_date() { if [[ "${url}" =~ ^"${github_url}" ]]; then parts=($(awk -F'contents/' '{ for(i=1;i<=NF;i++) print $i }' <<< ${url})) date_url="${parts[0]}commits?path=${parts[1]//\//%2F}&page=1&per_page=1" - epoch="$(curl -s -L ${date_url} | grep -m1 \"date\": | sed -e 's/^.*\"date\":.*\"\(.*\)\".*/\1/' | date -f - +%s)" + epoch="$(curl -s -L ${date_url} | python -m json.tool | grep -m1 \"date\": | sed -e 's/^.*\"date\":.*\"\(.*\)\".*/\1/' | date -u -f - +%s)" fi echo ${epoch:-0} } diff --git a/res/dbx/x86_DBXUpdate.bin b/res/dbx/x86_DBXUpdate.bin index 7293e35f..3003f7c6 100644 Binary files a/res/dbx/x86_DBXUpdate.bin and b/res/dbx/x86_DBXUpdate.bin differ diff --git a/res/grub2/core.img b/res/grub2/core.img index f8d031b7..7690b0f2 100644 Binary files a/res/grub2/core.img and b/res/grub2/core.img differ diff --git a/res/grub2/grub2_version.h b/res/grub2/grub2_version.h index 72ed03a6..59636000 100644 --- a/res/grub2/grub2_version.h +++ b/res/grub2/grub2_version.h @@ -4,4 +4,4 @@ */ #pragma once -#define GRUB2_PACKAGE_VERSION "2.12" +#define GRUB2_PACKAGE_VERSION "2.14" diff --git a/res/grub2/readme.txt b/res/grub2/readme.txt index eb37a76d..97374273 100644 --- a/res/grub2/readme.txt +++ b/res/grub2/readme.txt @@ -1,8 +1,10 @@ This directory contains the Grub 2.0 boot records that are used by Rufus -* boot.img and core.img were created from a patched (since the offcial GRUB 2.12 release is *BROKEN*): - https://ftp.gnu.org/gnu/grub/grub-2.12.tar.xz - on a Debian 12.5 x64 system using the commands: +* boot.img and core.img were created from https://ftp.gnu.org/gnu/grub/grub-2.14.tar.xz + with https://github.com/gentoo/gentoo/raw/d51cbeb087dbbe979ff29af645f32071cce2834d/sys-boot/grub/files/grub-2.14-revert-image-base.patch + applied (since GRUB are apparently unable to perform BASIC testing of their releases) + on a Debian 13 x64 system using the commands: + patch -p1 < grub-2.14-revert-image-base.patch ./autogen.sh # --enable-boot-time for Manjaro Linux ./configure --disable-nls --enable-boot-time diff --git a/res/loc/ChangeLog.txt b/res/loc/ChangeLog.txt index f1cf6749..5251349e 100644 --- a/res/loc/ChangeLog.txt +++ b/res/loc/ChangeLog.txt @@ -3,14 +3,64 @@ rufus.loc since its original version. To edit a translation, please make sure to follow: https://github.com/pbatard/rufus/wiki/Localization#Editing_an_existing_translation -Or simply download https://files.akeo.ie/pollock/pollock-1.5.exe and follow its directions. +Or simply download https://files.akeo.ie/pollock/pollock-1.8.exe and follow its directions. -o v4.? (????.??.??) ** NOT FINAL!!! PLEASE DO NOT SEND UNSOLICITED TRANSLATIONS! ** - - *NEW* MSG_350 "Use 'Windows UEFI CA 2023' signed bootloaders [EXPERIMENTAL]" +o v?.?? + // NB: AI was used to update/translate the following 4 message, so please check for accuracy! + - *UPDATED* MSG_356 "(...) If this is not what you want, please select 'No' (...)" -> "(...) You MUST read and accept all of the following propositions to proceed:" + - *NEW* MSG_372 "I WILL ensure that all disks, except the one I want to install Windows on, are disconnected." + - *NEW* MSG_373 "I WILL ensure that I don't leave this media plugged on a PC I do not plan to erase." + - *NEW* MSG_374 "I AGREE that any data loss resulting from the use of this option lies entirely with me." + +o v4.14 (2026.04.30) + // NB: I used Google translate to update the following message, so please check for accuracy! + - *UPDATED* MSG_337 "An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:" -> "An additional file ('%s') must be downloaded from Microsoft to use this feature:" + // From the WUE dialog with tooltip at MSG_369. Indicates that once installed, Windows will copy a file (SkuSiPolicy.p7b) to the EFI partition. KB5042562 refers to https://support.microsoft.com/kb/5042562. + // NB: WUE refers to the "Windows User Experience" dialog that Rufus displays after you select a Windows 11 ISO and press START. + - *NEW* MSG_323 "Apply SkuSiPolicy.p7b on installation (See KB5042562)" + // From the WUE dialog with tooltip at MSG_370. Please do NOT translate "QoL" or "Copilot, OneDrive, Outlook, Fast Startup". + - *NEW* MSG_324 "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" + // From the WUE dialog with tooltip at MSG_368. 'Windows CA 2023' refers to the new Windows security certificate https://go.microsoft.com/fwlink/?linkid=2239776 which is a binary digital signature certificate used for Secure Boot. + - *NEW* MSG_350 "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" + // The following 4 messages refer to Secure Boot revocation updates, such as the ones provided at https://uefi.org/revocationlistfile. 'DBX' is the main UEFI revocation database and should not be translated. - *NEW* MSG_351 "Checking for UEFI bootloader revocation..." - *NEW* MSG_352 "Checking for UEFI DBX updates..." - *NEW* MSG_353 "DBX update available" - *NEW* MSG_354 "Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks..." + // From the WUE dialog with tooltip at MSG_371 and further description at MSG_356. This basically allows a fully unattended Windows installation, that will not prompt the user at all and therefore automatically (and SILENTLY) + // erase all data on the first found disk on the PC on which the media is booted, before partitioning it and installing Windows. Because the media does not prompt before erasing all data on the first disk, it is obvioulsy a + // very DANGEROUS option, hence the ⚠ signs and the extra dialog that shows for it, in MSG_356, to ensure that the user accepts the consequences of selecting it. + // In case it matters, the implied tense for the verb is FUTURE and indicates what the media/installer will do once booted. It does not indicate what Rufus itself does. + - *NEW* MSG_355 "⚠SILENTLY⚠ erase disk and install:" + - *NEW* MSG_356 "You have selected to use the \"silent\" Windows installation option (...)" + // The following two messages can be tested if you select an image (e.g. ISO) that is located on the drive you are trying to create + // If not directly relatable, the "saw the branch you are sitting on" idiom should be translated into a similar popular metaphor (for something that is so illogically bad that it will obviously end in disaster) in your language. + - *NEW* MSG_358 "Unsupported image location" + - *NEW* MSG_359 "You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on (...)" + // Tooltip for WUE MSG_329 + - *NEW* MSG_360 "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." + // Tooltip for WUE MSG_330 + - *NEW* MSG_361 "For this option to work, network/Internet MUST be disconnected during installation!" + // Tooltip for WUE MSG_331 + - *NEW* MSG_362 "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." + // Tooltip for WUE MSG_332. Please avoid translating 'Windows To Go'. + - *NEW* MSG_363 "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." + // Tooltip for WUE MSG_333 + - *NEW* MSG_364 "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." + // Tooltip for WUE MSG_334 + - *NEW* MSG_365 "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." + // Tooltip for WUE MSG_335 + - *NEW* MSG_366 "Don't encrypt the system disk, unless explicitly requested by the user." + // Tooltip for WUE MSG_346 (that requires "Expert Mode" to first be enabled with Ctrl-Alt-E) + - *NEW* MSG_367 "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." + // Tooltip for WUE MSG_350. Mosby refers to https://github.com/pbatard/Mosby. + - *NEW* MSG_368 "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." + // Tooltip for WUE MSG_323 + - *NEW* MSG_369 "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." + // Tooltip for WUE MSG_324. Do not translate "Quality of Life", since it must match the QoL abbreviation from MSG_324 and it is meant to be known by the user (and is clarified by the rest of the message anyway) + - *NEW* MSG_370 "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." + // Tooltip for WUE MSG_355 + - *NEW* MSG_371 "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." o v4.5 (2024.05.22) - *UPDATED* IDC_RUFUS_MBR -> IDC_UEFI_MEDIA_VALIDATION "Enable runtime UEFI media validation" @@ -36,17 +86,17 @@ o v3.22 (2023.03.25) - *NEW* MSG_199 "This feature is not available on this platform." // MSG_294 can be tested by launching Rufus from the commandline with option -z61 - *UPDATED* MSG_294 "This version of Windows is no longer supported by Rufus." -> added "\nThe last version of Rufus compatible with this platform is v%d.%d." - - *NEW* MSG_323 "Unable to open or read '%s'" + - *NEW* MSG_322 "Unable to open or read '%s'" // MSG_325 appears on the status bar when creating a customized Windows 10 or Windows 11 media - *NEW* MSG_325 "Applying Windows customization: %s" // The following messages appear after selecting a Windows 11 ISO and pressing START - - *NEW* MSG_326 "Windows User Experience" - - *NEW* MSG_327 "Customize Windows installation?" - - *NEW* MSG_328 "Remove requirement for Secure Boot and TPM 2.0" - - *NEW* MSG_329 "Remove requirement for 4GB+ RAM and 64GB+ disk" + - *NEW* MSG_326 "Applying user options..." + - *NEW* MSG_327 "Windows User Experience" + - *NEW* MSG_328 "Customize Windows installation?" + - *NEW* MSG_329 "Remove requirement for 4GB+ RAM, Secure Boot and TPM 2.0" - *NEW* MSG_330 "Remove requirement for an online Microsoft account" - *NEW* MSG_331 "Disable data collection (Skip privacy questions)" - - *NEW* MSG_332 "Prevent Windows To Go from accessing internal disks" + - *NEW* MSG_332 "Prevent 'Windows To Go' from accessing internal disks" - *NEW* MSG_333 "Create a local account with username:" - *NEW* MSG_334 "Set regional options to the same values as this user's" - *NEW* MSG_335 "Disable BitLocker automatic device encryption" diff --git a/res/loc/po/ar-SA.po b/res/loc/po/ar-SA.po index b7e2fad1..dd7cb218 100644 --- a/res/loc/po/ar-SA.po +++ b/res/loc/po/ar-SA.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-26 10:29+0100\n" -"PO-Revision-Date: 2024-04-29 10:22+0100\n" +"POT-Creation-Date: 2026-04-14 08:09+0100\n" +"PO-Revision-Date: 2026-04-14 13:45+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: ar_SA\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Arabic (العربية)\n" "X-Rufus-LCID: 0x0401, 0x0801, 0x0c01, 0x1001, 0x1401, 0x1801, 0x1c01, 0x2001, 0x2401, 0x2801, 0x2c01, 0x3001, 0x3401, 0x3801, 0x3c01, 0x4001\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -310,7 +310,7 @@ msgstr "ت.ب" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "ب.ب" @@ -811,7 +811,7 @@ msgstr "التثبيت القياسي لنظام التشغيل Windows" #. http://en.wikipedia.org/wiki/Windows_To_Go in your language. #. Otherwise, you may add a parenthesis eg. "Windows To Go ()" msgid "Windows To Go" -msgstr "Windows To Go" +msgstr "ويندوز المحمول (Windows To Go)" #. • MSG_119 msgid "advanced drive properties" @@ -848,7 +848,7 @@ msgstr "لا استمرارية" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "حدد حجم التقسيم المستمر لجهاز ال USB الحي, تحديد الحجم بقيمة 0 سيعطل التقسيم المستمر." @@ -890,17 +890,17 @@ msgstr "هذا القرص يستخدم من قبل برنامج آخر. هل ت #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"لقد قام Rufus بإكتشاف أنك تحاول إنشاء وسائط Windows To Go بناءً على ISO 1809\n" +"اكتشف برنامج روفوس Rufus أنك تحاول إنشاء وسائط \"Windows To Go\" باستخدام ملف ISO من إصدار 1809.\n" "\n" -"بسبب عيب في Microsoft, سوف تتوقف الوسائط خلال إقلاع Windows (شاشة الموت الزرقاء) ما لم تقم يدوياً بإستبدال ملف 'WppRecorder.sys' بإصدار 1803.\n" +"بسبب خلل برمجي في مايكروسوفت، ستتعطل هذه الوسائط أثناء تشغيل ويندوز (شاشة الموت الزرقاء)، ما لم تستبدل الملف \"WppRecorder.sys\" يدويًا بنسخة من إصدار 1803.\n" "\n" -"يرجى العلم أن سبب عدم إمكانية Rufus من إصلاح المشكلة تلقائيا هو أن ملف 'WppRecorder.sys' محفوظ الحقوق ل Microsoft, لذلك لا يمكننا تضمين نسخة من الملف في التطبيق..." +"يُرجى العلم أيضًا أن سبب عدم قدرة روفوس Rufus على إصلاح هذه المشكلة تلقائيًا هو أن الملف \"WppRecorder.sys\" محمي بحقوق الطبع والنشر لمايكروسوفت، لذا لا يمكننا قانونيًا تضمين نسخة منه في التطبيق." #. • MSG_134 msgid "" @@ -1798,6 +1798,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "غير قادر على فتح أو قراءة '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "قم بتطبيق SkuSiPolicy.p7b عند التثبيت (ألق نظرة على KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "تحسينات جودة الحياة QoL (لا تفرض استخدام Copilot أو OneDrive أو Outlook أو Fast Startup، إلخ..)." + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "جاري تطبيق تخصيصات ويندوز: %s" @@ -1848,13 +1856,13 @@ msgstr "سجل متواصل" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"يجب تنزيل ملف إضافي ('diskcopy.dll') من Microsoft لتثبيت MS-DOS:\n" +"يجب تنزيل ملف إضافي ('%s') من مايكروسفت Microsoft لاستخدام هذه الميزة:\n" "- حدد \"نعم\" للاتصال بالإنترنت وتنزيله\n" "- اختر \"لا\" لإلغاء العملية\n" "\n" @@ -1908,7 +1916,7 @@ msgstr "" #. • MSG_346 msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" -msgstr "تقييد Windows على الوضع \"S\" (S-Mode، غير متوافق مع تجاوز الحساب عبر الإنترنت)" +msgstr "تقييد Windows على الوضع \"S-Mode\" (غير متوافق مع تجاوز الحساب عبر الإنترنت)" #. • MSG_347 msgid "Expert Mode" @@ -1922,6 +1930,119 @@ msgstr "استخراج ملفات الأرشيف: %s" msgid "Use Rufus MBR" msgstr "استخدم Refus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "استخدم برامج الإقلاع المُوَقع \"Windows CA 2023\" (يتطلب أن يكون جهاز كمبيوتر المستهدف متوافقا)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "جارٍ التحقق من إلغاء صلاحية برنامج الإقلاع UEFI bootloader..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "جارٍ التحقق من وجود تحديثات لـ UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "تحديث الـ DBX متوفر" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"عثر روفوس Rufus على نسخة محدثة من ملفات DBX المستخدمة لإجراء فحوصات إلغاء التمهيد الآمن لـ UEFI. هل ترغب بتنزيل هذا التحديث؟\n" +"- اختر «نعم» للاتصال بالإنترنت وتنزيل هذا المحتوى\n" +"- اختر «لا» لإلغاء العملية\n" +"\n" +"ملاحظة: سيتم تنزيل الملفات في مجلد التطبيق، وسيتم إعادة استخدامها تلقائيًا في حال وجودها." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠بصمت⚠ امسح القرص وقم بالتثبيت:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes', you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"لقد اخترتَ استخدام خيار التثبيت الصامت لنظام ويندوز.\n" +"\n" +"حذار: هذا خيار متقدم، مخصص لمن يرغبون في إنشاء وسائط تثبيت لا تُطالب المستخدم بأي إجراء أثناء تثبيت ويندوز، وبالتالي ** تمسح القرص الأول المُكتشف على النظام المستهدف مسحًا تامًا **. في حال عدم توخي الحذر، قد يؤدي استخدام هذا الخيار إلى فقدان البيانات بشكل لا رجعة فيه!\n" +"\n" +"إذا لم يكن هذا ما تريده، يُرجى اختيار \"لا\" للعودة وإلغاء تحديد الخيار.\n" +"\n" +"أما إذا اخترتَ \"نعم\"، فأنتَ تُقرّ بأنك تتحمل كامل المسؤولية عن أي فقدان للبيانات." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "موقع الصورة غير مدعوم" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"لا يمكنك استخدام صورة موجودة على القرص المستهدف، لأن هذا القرص سيُمسح بالكامل. الأمر أشبه بمحاولة قطع الغصن الذي تجلس عليه!\n" +"\n" +"يرجى نقل الصورة إلى قرص آخر ثم المحاولة مرة أخرى." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "من الآمن ترك هذا الخيار مفعلاً حتى لو لم يكن لديك وحدة TPM أو المزيد من ذاكرة الوصول العشوائي، لأن هذا الخيار يتجاوز متطلبات الإعداد فقط ولا يمنع نظام التشغيل Windows فعليًا من استخدام جميع الأجهزة المتاحة." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "لكي يعمل هذا الخيار، يجب فصل شبكة الإنترنت أثناء التثبيت!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "قم بالإجابة تلقائيًا بـ \"لا\" على أسئلة إعداد ويندوز Windows المتعلقة بمشاركة البيانات مع مايكروسفت Microsoft، بدلاً من مطالبة المستخدم بذلك." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "يجب عليك ترك هذا الخيار مفعلاً، إلا إذا كنت موافقًا على وصول \"Windows To Go\" إلى الأقراص الداخلية والإجراء بصمت ترقيات نظام الملفات التي لا رجعة فيها." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "إنشاء حساب محلي تلقائيًا باسم المستخدم المحدد، باستخدام كلمة مرور فارغة والتي يجب تغييرها عند تسجيل الدخول التالي." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "قم بإستخدم نفس الإعدادات الإقليمية لهذا الكمبيوتر (لوحة المفاتيح، المنطقة الزمنية، العملة)، بدلاً من مطالبة المستخدم." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "لا تقم بتشفير قرص النظام، إلا إذا طلب المستخدم ذلك صراحةً." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "حذار: استخدم هذا الخيار فقط إذا كنت تعرف ما هو الوضع S-Mode وتفهم أن نظامك قد يظل عالقًا في الوضع S-Mode حتى بعد مسح نظام التشغيل ويندوز Windows وإعادة تثبيته بالكامل." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "استخدم هذا الخيار إذا كان النظام الذي تنوي تثبيت ويندوز عليه يستخدم شهادات التمهيد الآمن Secure Boot المحدثة بالكامل. إذا لزم الأمر، يمكنك البحث في استخدام \"موسبي\" Mosby لتحديث نظامك." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "استخدم هذا الخيار إذا كنت ترغب في إلغاء برامج اقلاع نظام التشغيل ويندوز الإضافية التي يحتمل أن تكون غير آمنة bootloaders، ولكن هذا يمكن أن يمنع وسائط ويندوز القياسية من الإقلاع أيضًا." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "تحسينات \"جودة الحياة\": تعطيل معظم الميزات غير المرغوب فيها التي تحاول مايكروسوفت فرضها على المستخدمين." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "إذا كنت تستخدم هذا الخيار، فيرجى التأكد من فصل كل الأقراص عن جهاز الكمبيوتر المستهدف، باستثناء القرص الذي تريد تثبيت نظام التشغيل ويندوز Windows عليه، وكذلك عدم ترك هذه الفلاشة موصولة بأي جهاز كمبيوتر لا تريد مسحه." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/bg-BG.po b/res/loc/po/bg-BG.po index 822c85b8..3822b3de 100644 --- a/res/loc/po/bg-BG.po +++ b/res/loc/po/bg-BG.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 3.22\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2023-03-23 15:50+0000\n" -"PO-Revision-Date: 2023-03-23 15:53+0000\n" +"POT-Creation-Date: 2026-04-11 12:52+0300\n" +"PO-Revision-Date: 2026-04-11 13:47+0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: bg_BG\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Bulgarian (Български)\n" "X-Rufus-LCID: 0x0402\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -54,13 +54,11 @@ msgstr "Изброяване на USB дискове" msgid "Add fixes for old BIOSes (extra partition, align, etc.)" msgstr "Добави поправки за стари BIOS-и" -#. • IDD_DIALOG → IDC_RUFUS_MBR +#. • IDD_DIALOG → IDC_UEFI_MEDIA_VALIDATION #. -#. 'MBR': See http://en.wikipedia.org/wiki/Master_boot_record -#. Rufus can install it's own custom MBR (the Rufus MBR), which also allows users to -#. specify a custom disk ID for the BIOS. The tooltip for this control is MSG_167. -msgid "Use Rufus MBR with BIOS ID" -msgstr "Използвай Rufus MBR с BIOS ID" +#. It is acceptable to drop the "runtime" if you are running out of space +msgid "Enable runtime UEFI media validation" +msgstr "Активиране на валидиране на UEFI носителя по време на работа" #. • IDD_DIALOG → IDS_FORMAT_OPTIONS_TXT msgid "Format Options" @@ -209,7 +207,7 @@ msgid "" "To continue with this operation, click OK. To quit click CANCEL." msgstr "" "ВНИМАНИЕ: ВСИЧКАТА ИНФОРМАЦИЯ НА УСТРОЙСТВО '%s' ЩЕ БЪДЕ УНИЩОЖЕНА.\n" -"За да продължите с тази операция, натиснете OK. За да я прекратите, натиснете CANCEL." +"За да продължите с тази операция, натиснете OK. За да я прекратите, натиснете ОТКАЖИ." #. • MSG_004 msgid "Rufus update policy" @@ -310,7 +308,7 @@ msgstr "ТБ" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "ПБ" @@ -553,7 +551,7 @@ msgstr "Неподдържан образ" #. • MSG_082 msgid "This image is either non-bootable, or it uses a boot or compression method that is not supported by Rufus..." -msgstr "Този образ не е зареждащ или използва зареждащ или компресиращ метод който не се поддържа от Rufus.." +msgstr "Този образ не е зареждащ или използва зареждащ или компресиращ метод който не се поддържа от Rufus..." #. • MSG_083 msgid "Replace %s?" @@ -575,9 +573,9 @@ msgstr "" "Поради тази причина стартиращите менюта може да не бъдат изобразени правилно.\n" "\n" "По-нова версия може да бъде изтеглена от Rufus, за да отстрани този проблем:\n" -"- Изберете 'Yes', за да се свържете с интернет и да изтеглите необходимият файл\n" -"- Изберете 'No', за да продължите с настоящият ISO файл\n" -"Ако не знаете какво да правите, е препоръчително да изберете 'Yes'.\n" +"- Изберете 'Да', за да се свържете с интернет и да изтеглите необходимият файл\n" +"- Изберете 'Не', за да продължите с настоящият ISO файл\n" +"Ако не знаете какво да правите, е препоръчително да изберете 'Да'.\n" "\n" "Бележка: Този файл ще бъде изтеглен в настоящата директория и щом '%s' е наличен, процесът ще продължи автоматично." @@ -702,8 +700,8 @@ msgstr "" "Тъй като този файл е повече от 100 KB в размер и винаги присъства на %s ISO образи, той не е включен в Rufus.\n" "\n" "Rufus може да изтегли липсващият файл за вас:\n" -"- Изберете 'Yes', за да се свържете с интернет и да изтеглите файла\n" -"- Изберете 'No', ако искате ръчно да копирате този файл\n" +"- Изберете 'Да', за да се свържете с интернет и да изтеглите файла\n" +"- Изберете 'Не', ако искате ръчно да копирате този файл\n" "\n" "Бележка: Този файл ще бъде изтеглен в настоящата директория и щом '%s' е наличен, процесът ще продължи автоматично." @@ -769,8 +767,8 @@ msgstr "" "Този образ използва Syslinux %s%s, но тази програма включва само инсталационни файлове за Syslinux %s%s.\n" "\n" "Тъй като новите версии на Syslinux не са съвместими една с друга и няма да е възможно Rufus да ги включи всичките, два допълнителни файла трябва да бъдат изтеглени от Интернет ('ldlinux.sys' и 'ldlinux.bss'):\n" -"- Изберете 'Yes', за да се свържете с интернет и да изтеглите тези файлове\n" -"- Изберете 'No', за да прекратите тази операция\n" +"- Изберете 'Да', за да се свържете с интернет и да изтеглите тези файлове\n" +"- Изберете 'Не', за да прекратите тази операция\n" "\n" "Бележка: Тези файлове ще бъдат изтеглени в настоящата директория на програмата и ще бъдат използвани автоматично щом са налични." @@ -795,9 +793,9 @@ msgstr "" "Този образ използва GRUB %s Но приложението съдържа само инсталацйонните файлове за GRUB %s.\n" "\n" " Тъй като различните версии на GRUB може да не са съвместими една с друга и не е възможно да се включат всички, Rufus ще опита да намери версия на GRUB инсталационният файл ('core.img'), който съвпада с този от вашият образ: \n" -"- Изберете 'Yes', за да се свържете с интернет и да я изтеглите\n" -"- Изберете 'No', за да използвате версията по подразбиране на Rufus\n" -"- Изберете 'Cancel', за да прекратите операцията\n" +"- Изберете 'Да', за да се свържете с интернет и да я изтеглите\n" +"- Изберете 'Не', за да използвате версията по подразбиране на Rufus\n" +"- Изберете 'Откажи', за да прекратите операцията\n" "\n" "Забележка: Файлът ще бъде изтеглен в настоящата директория и ще бъде използван автоматично, щом е наличен. Ако не е намерено съвпадение, ще бъде използвана версията по подразбиране." @@ -848,7 +846,7 @@ msgstr "Без устойчивост" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Задайте размера на устойчивия дял за \"живото\" USB устройство. Ако го зададете на 0, устойчивия дял ще бъде изключен." @@ -890,17 +888,17 @@ msgstr "Друга програма или процес използва тов #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus забеляза, че се опитвате да създадете носител с \"Windows To Go\", базиран на 1809 ISO.\n" +"Rufus установи, че се опитвате да създадете носител с \"Windows To Go\", базиран на ISO с версия 1809.\n" "\n" -"Поради *MICROSOFT BUG*, този носител ще крашне при зареждане на Windows (Син екран на смъртта), ако не замените ръчно файла 'WppRecorder.sys' със същия от версия 1803.\n" +"Поради *БЪГ НА MICROSOFT*, този носител ще крашне при зареждане на Windows (Син екран на смъртта), освен ако не замените ръчно файла 'WppRecorder.sys' с версията от 1803.\n" "\n" -"Забележка: Rufus не може автоматично да поправи това, защото файлът 'WppRecorder.sys' е запазен с авторско право от Microsoft, поради което не можем да съхраняваме легално копие на този файл в програмата..." +"Забележка: Rufus не може автоматично да поправи това, тъй като файлът 'WppRecorder.sys' е обект на авторско право на Microsoft и не можем законно да включим копие от него в приложението..." #. • MSG_134 msgid "" @@ -1043,16 +1041,8 @@ msgid "Check this box to allow the display of international labels and set a dev msgstr "Сложете тази отметка за да разрешите показването на интернационални етикети и да зададете икона на устройството (създава autorun.inf)" #. • MSG_167 -msgid "Install an MBR that allows boot selection and can masquerade the BIOS USB drive ID" -msgstr "Инсталира MBR, който позволява избор на операционна система и може да маскира BIOS USB устройствения ИД" - -#. • MSG_168 -msgid "" -"Try to masquerade first bootable USB drive (usually 0x80) as a different disk.\n" -"This should only be necessary if you install Windows XP and have more than one disk." -msgstr "" -"Опитва да маскираш първото USB устройство(обикновено 0x80) като различен диск.\n" -"Това би трябвало да е необходимо само ако инсталирате Windows XP и имате повече от един диск." +msgid "Install a UEFI bootloader, that will perform MD5Sum file validation of the media" +msgstr "Инсталиране на UEFI bootloader, който извършва MD5 проверка на файловете на носителя" #. • MSG_169 msgid "" @@ -1095,7 +1085,7 @@ msgstr "Версия %d.%d (Build %d)" #. • MSG_176 msgid "English translation: Pete Batard " -msgstr "Български превод:\\line• Krasimir Nevenov \\line• Kaloyan Nikolov " +msgstr "Български превод:\\line• Krasimir Nevenov \\line• Kaloyan Nikolov \\line• Niko " #. • MSG_177 msgid "Report bugs or request enhancements at:" @@ -1734,7 +1724,7 @@ msgstr "Бързо нулиране на устройството: %s" #. • MSG_307 msgid "this may take a while" -msgstr "Това може да отнеме време" +msgstr "това може да отнеме време" #. • MSG_308 msgid "VHD detection" @@ -1806,6 +1796,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Неуспешно отваряне или прочитане на '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Прилагане на SkuSiPolicy.p7b по време на инсталация (вж. KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Подобрения за улеснение (без принудително активиране на Copilot, OneDrive, Outlook, Fast Startup и др.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Прилагане на персонализации на Windows: %s" @@ -1854,6 +1852,194 @@ msgstr "Изключване на автоматичното криптиран msgid "Persistent log" msgstr "Устойчив лог" +#. • MSG_337 +msgid "" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" +"- Select 'Yes' to connect to the Internet and download it\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The file will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"За да използвате тази функция, трябва да бъде изтеглен допълнителен файл ('%s') от Microsoft:\n" +"- Изберете 'Да', за да се свържете с интернет и да го изтеглите\n" +"- Изберете 'Не', за да отмените операцията\n" +"\n" +"Забележка: Файлът ще бъде изтеглен в директорията на приложението и ще бъде използван повторно автоматично, ако вече е наличен." + +#. • MSG_338 +msgid "Revoked UEFI bootloader detected" +msgstr "Открит е анулиран UEFI bootloader" + +#. • MSG_339 +msgid "" +"Rufus detected that the ISO you have selected contains a UEFI bootloader that has been revoked and that will produce %s, when Secure Boot is enabled on a fully up to date UEFI system.\n" +"\n" +"- If you obtained this ISO image from a non reputable source, you should consider the possibility that it might contain UEFI malware and avoid booting from it.\n" +"- If you obtained it from a trusted source, you should try to locate a more up to date version, that will not produce this warning." +msgstr "" +"Rufus откри, че избраният ISO образ съдържа UEFI bootloader, който е анулиран и който ще доведе до %s, когато Secure Boot е активиран на напълно актуална UEFI система.\n" +"\n" +"- Ако сте получили този ISO образ от ненадежден източник, трябва да обмислите възможността той да съдържа UEFI зловреден софтуер и да избягвате зареждане от него.\n" +"- Ако сте го получили от доверен източник, трябва да потърсите по-нова версия, която няма да предизвиква това предупреждение." + +#. • MSG_340 +msgid "a \"Security Violation\" screen" +msgstr "екран \"Security Violation\"" + +#. • MSG_341 +msgid "a Windows Recovery Screen (BSOD) with '%s'" +msgstr "Windows Recovery екран (BSOD) с '%s'" + +#. • MSG_342 +msgid "Compressed VHDX Image" +msgstr "Компресиран VHDX образ" + +#. • MSG_343 +msgid "Uncompressed VHD Image" +msgstr "Некомпресиран VHD образ" + +#. • MSG_344 +msgid "Full Flash Update Image" +msgstr "Full Flash Update образ" + +#. • MSG_345 +msgid "" +"Some additional data must be downloaded from Microsoft to use this functionality:\n" +"- Select 'Yes' to connect to the Internet and download it\n" +"- Select 'No' to cancel the operation" +msgstr "" +"За да използвате тази функционалност, трябва да бъдат изтеглени допълнителни данни от Microsoft:\n" +"- Изберете 'Да', за да се свържете с интернет и да ги изтеглите\n" +"- Изберете 'Не', за да отмените операцията" + +#. • MSG_346 +msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" +msgstr "Ограничаване на Windows до S режим (НЕСЪВМЕСТИМО с заобикаляне на онлайн акаунт)" + +#. • MSG_347 +msgid "Expert Mode" +msgstr "Експертен режим" + +#. • MSG_348 +msgid "Extracting archive files: %s" +msgstr "Извличане на файлове от архив: %s" + +#. • MSG_349 +msgid "Use Rufus MBR" +msgstr "Използване на MBR на Rufus" + +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Използване на подписани с 'Windows CA 2023' bootloader-и (изисква съвместим целеви компютър)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Проверка за анулирани UEFI bootloader-и..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Проверка за актуализации на UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Налична е актуализация на DBX" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus откри актуализирана версия на DBX файловете, използвани за проверка на анулирани UEFI Secure Boot заредители. Желаете ли да изтеглите тази актуализация?\n" +"- Изберете 'Да', за да се свържете с интернет и да изтеглите това съдържание\n" +"- Изберете 'Не', за да отмените операцията\n" +"\n" +"Забележка: Файловете ще бъдат изтеглени в директорията на приложението и ще бъдат използвани повторно автоматично, ако са налични." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠ТИХО⚠ изтриване на диска и инсталиране:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Избрахте опцията за \"тиха\" инсталация на Windows.\n" +"\n" +"Това е разширена настройка, предназначена за потребители, които желаят да създадат носител, който не изисква намеса по време на инсталацията и съответно БЕЗУСЛОВНО ИЗТРИВА първия открит диск на целевата система. Ако не бъдете внимателни, използването на тази опция може да доведе до НЕВЪЗВРАТИМА ЗАГУБА НА ДАННИ!\n" +"\n" +"Ако не желаете това, моля, изберете 'Не', за да се върнете назад и да премахнете отметката от тази опция.\n" +"В противен случай, избирайки 'Да', вие се съгласявате, че цялата отговорност за всякаква загуба на данни ще бъде ИЗЦЯЛО ВАША." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Неподдържано местоположение на образа" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Не можете да използвате образ, който се намира върху целевото устройство, тъй като това устройство ще бъде напълно изтрито. Това е същото като да се опитвате да отрежете клона, на който седите!\n" +"\n" +"Моля, преместете образа на друго място и опитайте отново." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Безопасно е да оставите тази опция включена, дори ако имате TPM или повече RAM, тъй като тя само заобикаля изискванията на инсталатора и не пречи на Windows да използва целия наличен хардуер." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "За да работи тази опция, мрежата/интернет ТРЯБВА да бъдат прекъснати по време на инсталацията!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Автоматично отговаряне с 'не' на въпросите от инсталацията на Windows, свързани със споделянето на данни с Microsoft, вместо да се изисква намеса от потребителя." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Трябва да оставите тази опция включена, освен ако нямате нищо против 'Windows To Go' да осъществява достъп до вътрешните дискове и тихомълком да извършва невъзвратими ъпгрейди на файловата система." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Автоматично създаване на локален акаунт с указаното потребителско име, използвайки празна парола, която ще трябва да бъде променена при следващото влизане." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Дублиране на регионалните настройки от този компютър (клавиатура, часова зона, валута), вместо да се изисква намеса от потребителя." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Системният диск да не се криптира, освен ако това не е изрично поискано от потребителя." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Използвайте тази опция само ако знаете какво е S режим и разбирате, че системата ви може да остане заключена в S режим дори след като напълно изтриете и преинсталирате Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Използвайте тази опция, ако системата, на която планирате да инсталирате Windows, използва напълно актуални сертификати за Secure Boot. Ако е необходимо, можете да проучите възможността за използване на 'Mosby' за актуализиране на вашата система." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Използвайте тази опция, ако желаете да анулирате допълнителни потенциално опасни Windows bootloader-и, но с риск това да попречи на зареждането и на стандартни инсталационни носители на Windows." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Подобрения за по-лесна работа: Изключване на повечето нежелани функции, които Microsoft се опитва да наложи на потребителите." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Ако използвате тази опция, моля, уверете се, че сте изключили всеки диск от целевия компютър, освен този, на който искате да инсталирате Windows, както и че не сте оставили носителя включен в компютър, който не желаете да бъде изтрит." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/cs-CZ.po b/res/loc/po/cs-CZ.po index 4a2dcac8..68f1bffa 100644 --- a/res/loc/po/cs-CZ.po +++ b/res/loc/po/cs-CZ.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-25 20:58+0200\n" -"PO-Revision-Date: 2024-04-25 21:23+0200\n" +"POT-Creation-Date: 2026-03-23 18:33+0000\n" +"PO-Revision-Date: 2026-03-23 18:33+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: cs_CZ\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Czech (Čeština)\n" "X-Rufus-LCID: 0x0405\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -310,7 +310,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -395,7 +395,7 @@ msgstr "Zařízení USB (Obecné)" #. • MSG_046 msgid "%s (Disk %d) [%s]" -msgstr "%s (Disk %d) [%s]" +msgstr "" #. • MSG_047 #. @@ -848,7 +848,7 @@ msgstr "Ne trvalý" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Nastavte velikost trvalého oddílu pro živá média USB. Nastavení velikosti 0 zakáže trvalý oddíl." @@ -890,17 +890,17 @@ msgstr "K tomuto disku přistupuje jiný program nebo proces. Chcete ho přesto #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus zjistil, že se pokoušíte vytvořit Windows To Go médií založené na 1809 ISO.\n" +"Rufus zjistil, že se pokoušíte vytvořit médium „Windows To Go“ založené na 1809 ISO.\n" "\n" -"Vzhledem k tomu, že *MICROSOFT BUG*, toto médium se při spouštění systému Windows zhroutí (Blue Screen), pokud soubor „WppRecorder.sys“ ručně nenahradíte verzí 1803.\n" +"Kvůli chybě *MICROSOFT BUG* dojde k pádu tohoto média během spouštění systému Windows (modrá obrazovka smrti), pokud ručně nenahradíte soubor 'WppRecorder.sys' verzí 1803..\n" "\n" -"Důvodem proč Rufus nemůže automaticky opravit, je, že soubor „WppRecorder.sys“ je souborem chráněným autorskými právy společnosti Microsoft, takže nemůžeme legálně vložit kopii souboru do aplikace..." +"Všimněte si také, že důvod, proč to Rufus nemůže automaticky opravit za vás, je ten, že „WppRecorder.sys“ je soubor chráněný autorským právem společnosti Microsoft, takže nemůžeme legálně vložit kopii souboru do aplikace..." #. • MSG_134 msgid "" @@ -1799,6 +1799,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Nelze otevřít nebo přečíst soubor '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Při instalaci použijte SkuSiPolicy.p7b (viz KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "QoL vylepšení (neinstaluje Copilota, OneDrive, Outlook, rychlé spuštění atd.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Použití přizpůsobení systému Windows: %s" @@ -1849,17 +1857,17 @@ msgstr "Trvalý protokol" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Pro instalaci systému MS-DOS je nutné stáhnout další soubor ('diskcopy.dll') od společnosti Microsoft:\n" -"- Vyberte 'Ano' pro připojení k internetu a stažení\n" +"Další soubor ('%s') je nutné stáhnout ze stránek společnosti Microsoft, aby bylo možné tuto funkci používat:\n" +"- Výběrem možnosti \"Ano\" se připojíte k Internetu a stáhnete ji.\n" "- Výběrem možnosti \"Ne\" operaci zrušíte\n" "\n" -"Poznámka: Soubor bude stažen do adresáře aplikace a bude automaticky znovu použit, pokud je přítomen." +"Poznámka: Soubor bude stažen do adresáře aplikace a bude automaticky znovu použit, pokud je přítomen.." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1923,6 +1931,118 @@ msgstr "Rozbalení archivních souborů: %s" msgid "Use Rufus MBR" msgstr "Použijte Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Použití zavaděčů s podpisem \"Windows CA 2023\" (vyžaduje kompatibilní cílový počítač)." + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Kontrola zrušení zavaděče UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Kontrola aktualizací UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "DBX aktualizace k dispozici" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus našel aktualizovanou verzi souborů DBX používaných k provádění kontrol odvolání UEFI Secure Boot. Chcete stáhnout tuto aktualizaci?\n" +"- Chcete-li se připojit k Internetu a stáhnout tento obsah, vyberte možnost \"Ano\".\n" +"- Výběrem možnosti \"Ne\" operaci zrušíte\n" +"\n" +"Poznámka: Soubory budou staženy do adresáře aplikace a budou automaticky znovu použity, pokud jsou k dispozici." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠TICHÁ⚠ vymazat disk a nainstalovat:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Zvolili jste použití možnosti \"tichá“ instalace systému Windows.\n" +"\n" +"Toto je pokročilá možnost vyhrazená pro uživatele, kteří chtějí vytvořit médium, jež během instalace Windows uživatele nevyzve k potvrzení a BEZPODMÍNEČNĚ VYMAŽE první detekovaný disk v cílovém systému. Pokud si nedáte pozor, použití této volby může mít za následek NEVRATNOU ZTRÁTU VŠECH DAT!\n" +"\n" +"Pokud to není to, co chcete, vyberte 'Ne' pro návrat zpět a zrušte zaškrtnutí této možnosti.\n" +"V opačném případě, pokud zvolíte \"Ano, souhlasíte s tím, že veškerou odpovědnost za případnou ztrátu dat ponesete VY." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Nepodporované umístění obrázku" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Nemůžete použít obraz umístěný na cílové jednotce, protože tato jednotka bude zcela vymazána. Je to stejné, jako když se snažíte uříznout větev, na které sedíte!\n" +"\n" +"Přesuňte prosím obrázek na jiné místo a zkuste to znovu." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Je bezpečné ponechat tuto možnost povolenou i v případě, že máte TPM nebo více RAM, protože tato možnost pouze obchází požadavky na nastavení a ve skutečnosti nebrání systému Windows používat veškerý dostupný hardware." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Aby tato možnost fungovala, MUSÍ být během instalace odpojena síť/internet!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Automaticky odpovídat 'ne' na otázky nastavení systému Windows týkající se sdílení dat se společností Microsoft namísto dotazování uživatele." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Tuto možnost byste měli ponechat povolenou, pokud vám nevadí, že 'Windows To Go' přistupuje k interním diskům a tiše provádí nevratné aktualizace souborového systému." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Automaticky vytvořit místní účet se zadaným uživatelským jménem, s prázdným heslem, které bude nutné změnit při příštím přihlášení." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Převzít místní nastavení z tohoto počítače (klávesnice, časové pásmo, měna) bez nutnosti zásahu uživatele." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Nešifrovat systémový disk bez výslovného požadavku uživatele." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Tuto možnost použijte pouze v případě, že víte, co je S-Mode, a chápete, že váš systém může být uzamčen v S-Mode i po úplném vymazání a přeinstalaci systému Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Tuto možnost použijte, pokud systém, do kterého plánujete nainstalovat systém Windows, používá plně aktuální certifikáty Secure Boot. V případě potřeby se můžete podívat na možnost aktualizace systému pomocí nástroje Mosby = More Secure Secure Boot." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Tuto možnost použijte, pokud chcete odebrat další potenciálně nebezpečné zavaděče systému Windows, které však mohou zabránit i zavádění standardních médií systému Windows." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"Vylepšení komfortu uživatele\" vylepšení: Zakázat většinu nežádoucích funkcí, které se Microsoft snaží vnucovat koncovým uživatelům." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Pokud použijete tuto možnost, ujistěte se, že jste od cílového počítače odpojili všechny disky kromě toho, na který chcete nainstalovat systém Windows, a nenechávejte médium připojené k žádnému počítači, který nechcete vymazat." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/da-DK.po b/res/loc/po/da-DK.po index 7ab4e046..0cac8cb1 100644 --- a/res/loc/po/da-DK.po +++ b/res/loc/po/da-DK.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-25 13:41-0700\n" -"PO-Revision-Date: 2024-04-25 14:34-0700\n" +"POT-Creation-Date: 2026-04-06 21.43+0200\n" +"PO-Revision-Date: 2026-04-06 22:38+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: da_DK\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Danish (Dansk)\n" "X-Rufus-LCID: 0x0406\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -309,7 +309,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -847,7 +847,7 @@ msgstr "Ingen partition" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Indstil størrelsen for den vedvarende partition til live USB media. Ved at vælge størrelsen 0 slår man den vedvarende partition fra." @@ -889,13 +889,13 @@ msgstr "Et andet program eller en proces er i gang med at tilgå dette drev. Vil #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus har opdaget, at du forsøger at oprette et Windows To Go medie baseret på en 1908 ISO.\n" +"Rufus har opdaget, at du forsøger at oprette et Windows To Go medie baseret på en 1809 ISO.\n" "\n" "På grund af en *MICROSOFT BUG* vil dette medie fejle under Windows boot (Blue Screen of Death) medmindre du manuelt erstatter filen 'WppRecorder.sys' med en 1803-version.\n" "\n" @@ -1798,6 +1798,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Ude af stand til at åbne eller læse '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Påfør SkuSiPolicy.p7b efter installationen (Se KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Livskvalitets forbedringer (Ikke påtving Copilot, OneDrive, Outlook, Fast Startup, osv.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Anvender Windows tilpasninger : %s" @@ -1848,13 +1856,13 @@ msgstr "Vedvarende log" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"En ekstra fil ('diskcopy.dll') skal hentes fra Microsoft for at installere MS-DOS:\n" +"En yderligere fil ('%s') skal downloades fra Microsoft for at bruge denne funktion:\n" "- Vælg 'Ja' for at tilslutte til internettet og hente den\n" "- Vælg 'Nej' for at afbryde operationen\n" "\n" @@ -1922,6 +1930,118 @@ msgstr "Udpakker arkiv filer: %s" msgid "Use Rufus MBR" msgstr "Brug Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Brug 'Windows CA 2023' signerede bootloaders (Kræver en kompatibel PC)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Tjekker for UEFI bootloader tilbagekaldelse..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Tjekker for UEFI DBX opdateringer..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "DBX opdatering tilgængelig" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus har fundet en opdateret version af DBX filerne som bruges til at udføre UEFI Secure Boot tilbagekaldelses tjek. Vil du hente denne opdatering?\n" +"- Vælg 'Ja' for at forbinde til internettet og hente disse filer\n" +"- Vælg 'Nej' for at afbryde operationen\n" +"\n" +"Note: Filerne vil blive hentet i programmets mappe og vil blive genbrugt automatisk hvis tilstede." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠STILLE⚠ slet disk og installer:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Du har valgt at bruge den \"stille\" Windows installations valgmulighed.\n" +"\n" +"Dette er en advanceret valgmulighed, som er reserveret for personer som vil lave et media som ikke prompter brugeren under Windows installationen, og vil derfor UBETINGET SLETTE den første disk som er opdaget på systemet. Hvis du ikke er forsigtig, så kan denne valgmulighed resultere i UOPRETTELIG DATA TAB!\n" +"\n" +"Hvis dette ikke er noget du vil have, så vælg 'Nej' for at gå tilbage og fravælge denne valgmulighed.\n" +"Ellers, hvis du vælger 'Ja', er du enig i at alt ansvaret for enhver data tab ligger på DIG." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Billedeplaceringen er ikke understøttet" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Du kan ikke bruge et billed som er placeret på det valgte drev, da drevet vil blive fuldstændig slettet. Det er som at save i den græn man sidder på!\n" +"\n" +"Vær venlig at flytte billedet til en anden placering og prøv igen." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Det er sikkert at have denne indstilling slået til, selv hvis du har en TPM eller mere RAM, da denne valgmulighed kun springer setup kravene over, og forhindre ikke Windows i at bruge alt tilgængelig hardware." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "For at denne indstilling virker, SKAL netværk/internettet slåes fra under installationen!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Automatisk svar 'nej' til alle spørgsmål under Windows opsætningen som vedrører at dele data med Microsoft, i stedet for at prompte brugeren." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Du bør lade denne indstilling være aktiveret, med mindre du er okay med at 'Windows To Go' tilgår de interne diske og udføre uoprettelig fil systems opgraderinger lydløst." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Automatisk opret en local burger, med det specificerede brugernavn, med en tom adganskode som skal laves om næste gang der logges ind." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Dupliker de regionale indstillinger fra denne PC (tastatur, tidszone, valuta), i stedet for at prompte brugeren." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Krypter ikke system disken, med mindre brugeren specifikt har bedt om det." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Brug denne indstilling hvis du ved hvad S-Mode er, og forstår at dit system muligvis bliver låst fast i S-Mode, selv efter en komplet sletning og reinstallering af Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Brug denne indstilling hvis det system du har planlagt at installere Windows på, har fuldt opdateret Secure Boot certifikater. Om nødvendigt, kan du se på at bruge 'Mosby' til at opdatere dit system." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Brug denne instilling hvis du vil tilbagekalde yderligere potentielt usikre Windows bootloaders, men med risiko for at forhindre normale Windows medier fra at boote." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"Livskvalitets\" forbedringer: Deaktiver de fleste uønskede funktioner Microsoft prøver at tvinge slutbrugerne til at bruge." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Hvis du burger denne indstilling, sørg for at alle diske, på nær den som du vil installere Windows på er frakoblet, og ikke lade mediet side i en PC du ikke vil slette." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/de-DE.po b/res/loc/po/de-DE.po index 9a6ab983..83b7a3d8 100644 --- a/res/loc/po/de-DE.po +++ b/res/loc/po/de-DE.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-26 11:11+0200\n" -"PO-Revision-Date: 2024-04-26 11:48+0200\n" +"POT-Creation-Date: 2026-03-31 16:34+0100\n" +"PO-Revision-Date: 2026-03-31 16:34+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: de_DE\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: German (Deutsch)\n" "X-Rufus-LCID: 0x0407, 0x0807, 0x0c07, 0x1007, 0x1407\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -846,7 +846,7 @@ msgstr "Keine Persistenz" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Größe der persistenten Partition des Live-USB-Systems. Eine Größe von 0 deaktiviert die Persistenz." @@ -867,7 +867,7 @@ msgid "" "You have just created a media that uses the UEFI:NTFS bootloader. Please remember that, to boot this media, YOU MUST DISABLE SECURE BOOT.\n" "For details on why this is necessary, see the 'More Information' button below." msgstr "" -"Sie haben gerade ein Medium erstellt, das den UEFI:NTFS-Bootloader verwendet. Bitte denken Sie daran, dass Sie zum Starten dieses Mediums SECURE BOOT DEAKTIVIEREN müssen.\n" +"Sie haben gerade ein Medium erstellt, welches das UEFI:NTFS-Startprogramm verwendet. Bitte denken Sie daran, dass Sie zum Starten dieses Mediums SECURE BOOT DEAKTIVIEREN müssen.\n" "Nach dem Abschluss des Vorgangs sollten Sie SECURE BOOT wieder aktivieren.\n" "Weitere Informationen, warum dies notwendig ist, finden Sie über die Schaltfläche \"Weitere Informationen\"." @@ -889,7 +889,7 @@ msgstr "Ein anderer Prozess bzw. ein anderes Programm verwendet das Laufwerk ger #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -1039,11 +1039,11 @@ msgstr "Image-Datei oder Download auswählen..." #. • MSG_166 msgid "Check this box to allow the display of international labels and set a device icon (creates an autorun.inf)" -msgstr "Wählen Sie diese Option, um die Anzeige internationaler Bezeichnungen zu ermöglichen und ein Gerätesymbol zu erzeugen (autorun.inf)" +msgstr "Wählen Sie diese Option, um die Anzeige internationaler Bezeichnungen zu ermöglichen und ein Gerätesymbol zu erzeugen (autorun.inf)." #. • MSG_167 msgid "Install a UEFI bootloader, that will perform MD5Sum file validation of the media" -msgstr "Ein UEFI Startprogramm installieren, das eine MD5Sum Dateiüberprüfung auf dem Datenträger durchführt" +msgstr "Ein UEFI-Startprogramm installieren, das eine MD5Sum-Dateiüberprüfung auf dem Datenträger durchführt" #. • MSG_169 msgid "" @@ -1181,7 +1181,7 @@ msgid "" "Conventional drives use a 512-byte sector size but this drive uses a %d-byte one. In many cases, this means that you will NOT be able to boot from this drive.\n" "Rufus can try to create a bootable drive, but there is NO WARRANTY that it will work." msgstr "" -"WICHTIG: DIESES LAUFWERK HAT EINE NICHT STANDARDISIERTE SEKTORGRÖSSE!\n" +"WICHTIG: DIESES LAUFWERK HAT EINE NICHT STANDARDISIERTE SEKTORGRÖẞE!\n" "\n" "Herkömmliche Laufwerke nutzen eine Sektorgröße von 512 Byte, aber dieses Laufwerk nutzt %d Byte. Höchstwahrscheinlich können Sie von diesem Laufwerk NICHT starten.\n" "Rufus kann versuchen, ein startfähiges Laufwerk zu erstellen, aber es gibt KEINE GARANTIE, dass es funktionieren wird." @@ -1431,7 +1431,7 @@ msgstr "Es wurde keine neue Version von Rufus gefunden" #. • MSG_248 msgid "Application registry keys successfully deleted" -msgstr "Anwendungeinstellungen in der Registrierdatenbank erfolgreich gelöscht" +msgstr "Anwendungseinstellungen in der Registrierdatenbank erfolgreich gelöscht" #. • MSG_249 msgid "Failed to delete application registry keys" @@ -1740,13 +1740,13 @@ msgid "" "\n" "Please select the mode that you want to use to write this image:" msgstr "" -"Das ausgewählte ISO-Image verwendet UEFI und ist klein genug, um auf eine EFI System-Partition (ESP) geschrieben zu werden. Es auf eine ESP- anstelle einer normalen Partition zu schrieben, kann für bestimmte Installationsarten vorteilhaft sein.\n" +"Das ausgewählte ISO-Image verwendet UEFI und ist klein genug, um auf eine EFI-Systempartition (ESP) geschrieben zu werden. Es auf eine ESP anstelle einer normalen Partition zu schreiben, die die gesamte Festplatte belegt, kann für bestimmte Installationsarten vorteilhaft sein.\n" "\n" "Bitte wählen Sie einen Modus aus:" #. • MSG_311 msgid "Use %s (in the main application window) to enable." -msgstr "Verwende %s (Hauptfenster der Anwendung) zum aktivieren." +msgstr "Verwende %s (Hauptfenster der Anwendung) zum Aktivieren." #. • MSG_312 msgid "Extra hashes (SHA512)" @@ -1789,16 +1789,24 @@ msgid "" "The image you have selected is an ISOHybrid, but its creators have not made it compatible with ISO/File copy mode.\n" "As a result, DD image writing mode will be enforced." msgstr "" -"Das ausgewählte Image ist vom Typ ISOHybrid, aber der Ersteller hat es nicht mit dem ISO/Datei Kopier-Modus kompatibel gemacht.\n" +"Das ausgewählte Image ist vom Typ ISOHybrid, aber der Ersteller hat es nicht mit dem ISO/Dateikopiermodus kompatibel gemacht.\n" "Deswegen wird der DD-Schreibmodus verwendet." #. • MSG_322 msgid "Unable to open or read '%s'" -msgstr "'%' kann nicht geöffnet/gelesen werden" +msgstr "'%s' kann nicht geöffnet/gelesen werden" + +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "SkuSiPolicy.p7b auf Installation anwenden. (Siehe KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Komfort-Einstellungen (Copilot, OneDrive, Outlook und Schnellstart nicht aktivieren)" #. • MSG_325 msgid "Applying Windows customization: %s" -msgstr "Windows Anpassungen anwenden: %s" +msgstr "Windows-Anpassungen anwenden: %s" #. • MSG_326 msgid "Applying user options..." @@ -1806,7 +1814,7 @@ msgstr "Benutzereinstellungen anwenden..." #. • MSG_327 msgid "Windows User Experience" -msgstr "Windows Benutzererfahrung" +msgstr "Windows-Benutzererfahrung" #. • MSG_328 msgid "Customize Windows installation?" @@ -1818,7 +1826,7 @@ msgstr "Anforderung für 4GB+ RAM, Secure Boot und TPM 2.0 entfernen" #. • MSG_330 msgid "Remove requirement for an online Microsoft account" -msgstr "Anforderung für Online Microsoft Konto entfernen" +msgstr "Anforderung für Online-Microsoft-Konto entfernen" #. • MSG_331 msgid "Disable data collection (Skip privacy questions)" @@ -1846,21 +1854,21 @@ msgstr "Dauerhaftes Protokoll" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Eine zusätzliche Datei ('diskcopy.dll') muss von Microsoft heruntergeladen werden um MS-DOS zu installieren:\n" -"- 'Ja' um eine Verbindung mit dem Internet herzustellen und die Datei herunterzuladen\n" -"- 'Nein' um den Vorgang abzubrechen\n" +"Eine zusätzliche Datei ('%s') muss von Microsoft heruntergeladen werden, um diese Funktion zu nutzen:\n" +"- Wählen Sie 'Ja', um eine Verbindung mit dem Internet herzustellen und die Datei herunterzuladen\n" +"- Wählen Sie 'Nein', um den Vorgang abzubrechen\n" "\n" "Hinweis: Die Datei wird ins Programmverzeichnis heruntergeladen und bei Bedarf wiederverwendet." #. • MSG_338 msgid "Revoked UEFI bootloader detected" -msgstr "Zurückgezogenes UEFI Startprogramm erkannt" +msgstr "Zurückgezogenes UEFI-Startprogramm erkannt" #. • MSG_339 msgid "" @@ -1869,10 +1877,10 @@ msgid "" "- If you obtained this ISO image from a non reputable source, you should consider the possibility that it might contain UEFI malware and avoid booting from it.\n" "- If you obtained it from a trusted source, you should try to locate a more up to date version, that will not produce this warning." msgstr "" -"Rufus hat erkannt, dass das gewählte ISO-Image ein UEFI-Startprogramm enthält, dass zurückgezogen wurde und das führt zu %s, wenn das UEFI-System aktuell ist und Secure Boot aktiv ist.\n" +"Rufus hat erkannt, dass das gewählte ISO-Image ein UEFI-Startprogramm enthält, das zurückgezogen wurde. Das führt zu %s, wenn das UEFI-System aktuell ist und Secure Boot aktiv ist.\n" "\n" "- Wenn Sie das ISO-Image aus einer unzuverlässigen Quelle haben, sollten Sie in Betracht ziehen, dass es UEFI-Schadcode enthält und es deshalb nicht verwenden.\n" -"- Wenn Sie es aus einer vertrauenswürdigen Quelle haben, sollten Sie versuchen eine aktuellere Version zu bekommen, die dieses problem nicht hat." +"- Wenn Sie es aus einer vertrauenswürdigen Quelle haben, sollten Sie versuchen, eine aktuellere Version zu bekommen, die dieses Problem nicht hat." #. • MSG_340 msgid "a \"Security Violation\" screen" @@ -1880,19 +1888,19 @@ msgstr "ein Bildschirm \"Sicherheitsverletzung\"" #. • MSG_341 msgid "a Windows Recovery Screen (BSOD) with '%s'" -msgstr "ein Windows Wiederherstellung-Bildschirm (BSOD) mit '%s'" +msgstr "ein Windows-Wiederherstellungsbildschirm (BSOD) mit '%s'" #. • MSG_342 msgid "Compressed VHDX Image" -msgstr "Komprimiertes VHDX Image" +msgstr "Komprimiertes VHDX-Image" #. • MSG_343 msgid "Uncompressed VHD Image" -msgstr "Unkomprimiertes VHD Image" +msgstr "Unkomprimiertes VHD-Image" #. • MSG_344 msgid "Full Flash Update Image" -msgstr "Full Flash Update Image" +msgstr "Vollständiges Flash-Update-Image" #. • MSG_345 msgid "" @@ -1901,8 +1909,8 @@ msgid "" "- Select 'No' to cancel the operation" msgstr "" "Einige weitere Daten müssen von Microsoft heruntergeladen werden, um diese Funktion zu verwenden:\n" -"- 'Ja' um eine Verbindung mit dem Internet herzustellen und diese herunterzuladen\n" -"- 'Nein' um den Vorgang abzubrechen" +"- Wählen Sie 'Ja', um eine Verbindung mit dem Internet herzustellen und diese herunterzuladen\n" +"- Wählen Sie 'Nein', um den Vorgang abzubrechen" #. • MSG_346 msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" @@ -1910,21 +1918,135 @@ msgstr "Windows im S-Modus (nicht kompatibel mit Online Konto-Umgehung)" #. • MSG_347 msgid "Expert Mode" -msgstr "Experten-Modus" +msgstr "Expertenmodus" #. • MSG_348 msgid "Extracting archive files: %s" -msgstr "Archiv-Datei extrahieren: %s" +msgstr "Archivdatei extrahieren: %s" #. • MSG_349 msgid "Use Rufus MBR" msgstr "Rufus MBR verwenden" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Den \"Windows CA 2023\" signierten Bootloader verwenden. Ein kompatibler Computer ist erforderlich!" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Auf gesperrte UEFI-Bootloader prüfen..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Prüfe auf UEFI DBX-Aktualisierungen..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "DBX-Update verfügbar" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus hat eine aktualisierte Version der DBX-Dateien gefunden, die für die Überprüfung der UEFI-Secure-Boot-Widerrufsstatus verwendet werden. Möchten Sie dieses Update herunterladen?\n" +"- Wählen Sie „Ja“, um eine Verbindung zum Internet herzustellen und diesen Inhalt herunterzuladen.\n" +"- Wählen Sie „Nein“, um den Vorgang abzubrechen.\n" +"\n" +"Hinweis: Die Dateien werden in das Verzeichnis der Anwendung heruntergeladen und bei Vorhandensein automatisch wiederverwendet.\n" +"\n" +"Übersetzt mit DeepL.com (kostenlose Version)" + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠AUTOMATISCH⚠ Laufwerk löschen und installieren:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Sie haben die „automatische“ Windows-Installationsoption ausgewählt.\n" +"\n" +"Dies ist eine Option für Fortgeschrittene, die für Benutzer gedacht ist, die ein Installationsmedium erstellen möchten, das den Benutzer während der Windows-Installation nicht auffordert, Eingaben vorzunehmen, und daher die erste erkannte Festplatte auf dem Zielsystem AUTOMATISCH LÖSCHT. Wenn Sie nicht vorsichtig sind, kann die Verwendung dieser Option zu UNWIDERRUFLICHEM DATENVERLUST führen!\n" +"\n" +"Wenn Sie dies nicht wollen, wählen Sie bitte „Nein“, um zurückzugehen und die Option zu deaktivieren.\n" +"Andernfalls erklären Sie sich mit der Auswahl von „Ja“ damit einverstanden, dass die gesamte Verantwortung für etwaige Datenverluste ausschließlich bei IHNEN liegt." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Nicht unterstützter Abbild-Standort" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Sie können kein Image verwenden, das sich auf dem Ziellaufwerk befindet, da dieses Laufwerk vollständig gelöscht wird. Das ist so, als würde man versuchen, den Ast abzusägen, auf dem man sitzt!\n" +"\n" +"Bitte verschieben Sie das Image an einen anderen Speicherort und versuchen Sie es erneut." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Sie können diese Option aktiviert lassen, auch wenn Sie über ein TPM oder mehr Arbeitsspeicher verfügen, da diese Option lediglich die Installationsanforderungen umgeht und Windows nicht daran hindert, die gesamte verfügbare Hardware zu nutzen." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Damit diese Option funktioniert, MUSS die Netzwerk-/Internetverbindung während der Installation unterbrochen sein!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Beantwortet die Fragen des Windows-Setups bezüglich der Weitergabe von Daten an Microsoft automatisch mit „Nein“, anstatt den Benutzer dazu aufzufordern." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Sie sollten diese Option aktiviert lassen, es sei denn, Sie haben nichts dagegen, dass „Windows To Go“ auf interne Festplatten zugreift und im Hintergrund irreversible Dateisystem-Upgrades durchführt." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Erstellt automatisch ein lokales Konto mit dem angegebenen Benutzernamen und einem leeren Passwort, das bei der nächsten Anmeldung geändert werden muss." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Die regionalen Einstellungen dieses PCs (Tastatur, Zeitzone, Währung) übernehmen, anstatt den Benutzer dazu aufzufordern." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Nicht die Systemfestplatte verschlüsseln, es sei denn, der Benutzer wünscht dies ausdrücklich." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Verwenden Sie diese Option nur, wenn Sie wissen, was der S-Modus ist, und sich darüber im Klaren sind, dass Ihr System möglicherweise auch nach einer vollständigen Löschung und Neuinstallation von Windows im S-Modus verbleibt." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Verwenden Sie diese Option, wenn das System, auf dem Sie Windows installieren möchten, über vollständig aktuelle Secure-Boot-Zertifikate verfügt. Bei Bedarf können Sie die Verwendung von „Mosby“ in Betracht ziehen, um Ihr System zu aktualisieren." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Verwenden Sie diese Option, wenn Sie weitere potenziell unsichere Windows-Bootloader deaktivieren möchten, wobei jedoch die Möglichkeit besteht, dass auch Standard-Windows-Datenträger nicht mehr booten." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Komfort-Funktion: Deaktiviert die meisten unerwünschten Funktionen, die Microsoft den Endnutzern aufzuzwingen versucht." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Wenn Sie diese Option verwenden, stellen Sie bitte sicher, dass Sie alle Festplatten vom Ziel-PC trennen, mit Ausnahme derjenigen, auf der Sie Windows installieren möchten, und dass Sie den Datenträger nicht in einem PC stecken lassen, den Sie nicht löschen möchten." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application msgid "Rufus is a utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc." -msgstr "Rufus ist ein Werkzeug, welches dabei hilft, bootfähige USB-Laufwerke zu erstellen, wie beispielweise USB-Keys, Speichersticks usw." +msgstr "Rufus ist ein Werkzeug, das beim Formatieren und Erstellen bootfähiger USB-Flash-Laufwerke wie USB-Sticks, Speichersticks usw. hilft." #. • MSG_901 msgid "Official site: %s" @@ -1967,7 +2089,7 @@ msgstr "FreeDOS-bootfähige USB-Laufwerke erstellen" #. • MSG_912 msgid "Create bootable drives from bootable ISOs (Windows, Linux, etc.)" -msgstr "Erstellen bootfähiger Laufwerke aus bootfähigen ISOs (Windows, Linux, etc.)" +msgstr "Erstellen bootfähiger Laufwerke aus bootfähigen ISOs (Windows, Linux etc.)" #. • MSG_913 msgid "Create bootable drives from bootable disk images, including compressed ones" @@ -1979,7 +2101,7 @@ msgstr "Erstellen von BIOS- oder UEFI-bootfähigen Laufwerken, einschließlich U #. • MSG_915 msgid "Create 'Windows To Go' drives" -msgstr "Erstellen von \"Windows To Go\"-Laufwerken" +msgstr "Erstellen von 'Windows To Go'-Laufwerken" #. • MSG_916 msgid "Create Windows 11 installation drives for PCs that don't have TPM or Secure Boot" @@ -1995,7 +2117,7 @@ msgstr "VHD/DD-Images des ausgewählten Laufwerks erstellen" #. • MSG_919 msgid "Compute MD5, SHA-1, SHA-256 and SHA-512 checksums of the selected image" -msgstr "Berechnung von MD5-, SHA-1-, SHA-256- und SHA-512-Prüfsummen für das ausgewählte Bild" +msgstr "Berechnung von MD5-, SHA-1-, SHA-256- und SHA-512-Prüfsummen für das ausgewählte Image" #. • MSG_920 msgid "Perform bad blocks checks, including detection of \"fake\" flash drives" diff --git a/res/loc/po/el-GR.po b/res/loc/po/el-GR.po index b42b11f0..4d2f7224 100644 --- a/res/loc/po/el-GR.po +++ b/res/loc/po/el-GR.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-09 12:52+0300\n" -"PO-Revision-Date: 2024-05-09 13:07+0300\n" +"POT-Creation-Date: 2026-04-06 20:42-0700\n" +"PO-Revision-Date: 2026-04-06 21:30-0700\n" "Last-Translator: \n" "Language-Team: \n" "Language: el_GR\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Greek (Ελληνικά)\n" "X-Rufus-LCID: 0x0408\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -115,7 +115,7 @@ msgstr "Άδεια χρήσης" #. • IDD_ABOUTBOX → IDOK msgid "OK" -msgstr "OK" +msgstr "" #. • IDD_LICENSE → IDD_LICENSE msgid "Rufus License" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -843,7 +843,7 @@ msgstr "Ανενεργό" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Ορίστε το μέγεθος του μόνιμου διαμερίσματος για USB με δυνατότητα εκκίνησης. Η ρύθμιση του μεγέθους σε 0 απενεργοποιεί το μόνιμο διαμέρισμα." @@ -885,17 +885,17 @@ msgstr "Ένα άλλο πρόγραμμα ή διαδικασία έχει πρ #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Το Rufus έχει εντοπίσει ότι προσπαθείτε να δημιουργήσετε ένα μέσο Windows To Go βάσει ενός ISO 1809.\n" +"Το Rufus εντόπισε ότι προσπαθείτε να δημιουργήσετε ένα μέσο \"Windows To Go\" με βάση ένα ISO 1809.\n" "\n" -"Λόγω ενός * MICROSOFT BUG *, αυτό το μέσο θα καταρρεύσει κατά την εκκίνηση των Windows (Blue Screen Of Death), εκτός αν αλλάξετε με το χέρι το αρχείο 'WppRecorder.sys' με εκδοχή 1803.\n" +"Λόγω ενός *ΣΦΑΛΜΑΤΟΣ ΤΗΣ MICROSOFT*, αυτό το μέσο θα παρουσιάσει σφάλμα κατά την εκκίνηση των Windows (Blue Screen of Death), εκτός εάν αντικαταστήσετε χειροκίνητα το αρχείο \"WppRecorder.sys\" με μια έκδοση 1803.\n" "\n" -"Επίσης, σημειώστε ότι ο λόγος για τον οποίο ο Rufus δεν μπορεί να διορθώσει αυτόματα αυτό για εσάς είναι ότι το \"WppRecorder.sys\" είναι αρχείο Microsoft που προστατεύεται από πνευματικά δικαιώματα, επομένως δεν μπορούμε να ενσωματώσουμε νόμιμα ένα αντίγραφο του αρχείου στην εφαρμογή ..." +"Σημειώστε επίσης ότι ο λόγος για τον οποίο ο Rufus δεν μπορεί να διορθώσει αυτόματα αυτό το πρόβλημα για εσάς είναι ότι το \"WppRecorder.sys\" είναι ένα αρχείο που προστατεύεται από πνευματικά δικαιώματα της Microsoft, επομένως δεν μπορούμε να ενσωματώσουμε νόμιμα ένα αντίγραφο του αρχείου στην εφαρμογή..." #. • MSG_134 msgid "" @@ -1792,6 +1792,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Δεν είναι δυνατό το άνοιγμα ή η ανάγνωση του '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Εφαρμογή SkuSiPolicy.p7b κατά την εγκατάσταση (Δείτε KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Βελτιώσεις QoL (χωρίς υποχρεωτική επιβολή του Copilot, του OneDrive, του Outlook, Fast Startup κ.λπ.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Εφαρμογή προσαρμογής των Windows: %s" @@ -1842,17 +1850,17 @@ msgstr "Διατήρηση log" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Πρέπει να γίνει λήψη ενός πρόσθετου αρχείου ('diskcopy.dll') από τη Microsoft για να εγκαταστήσετε το MS-DOS:\n" -"- Επιλέξτε 'Ναι' για να συνδεθείτε στο Internet και να το κατεβάσετε\n" -"- Επιλέξτε 'Όχι' για να ακυρώσετε τη λειτουργία\n" +"Πρέπει να κατεβάσετε ένα επιπλέον αρχείο ('%s') από τη Microsoft για να χρησιμοποιηθεί αυτή η λειτουργία:\n" +"-Επιλέξτε «Ναι» για να συνδεθείτε στο Internet και να το κατεβάσετε\n" +"-Επιλέξτε «Όχι» για να ακυρώσετε τη λειτουργία\n" "\n" -"Σημείωση: Το αρχείο θα ληφθεί στον κατάλογο της εφαρμογής και θα επαναχρησιμοποιηθεί αυτόματα εάν υπάρχει." +"Σημείωση: Το αρχείο θα κατέβει στον φάκελο της εφαρμογής και θα χρησιμοποιείται ξανά αυτόματα αν υπάρχει." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1888,7 +1896,7 @@ msgstr "Μη συμπιεσμένη εικόνα VHDX" #. • MSG_344 msgid "Full Flash Update Image" -msgstr "Full Flash Update Image" +msgstr "" #. • MSG_345 msgid "" @@ -1916,6 +1924,118 @@ msgstr "Εξαγωγή αρχείων: %s" msgid "Use Rufus MBR" msgstr "Χρησιμοποίηση του Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Χρησιμοποιήστε bootloader υπογεγραμμένα με «Windows CA 2023» (Απαιτεί συμβατό υπολογιστή)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Έλεγχος για ανάκληση UEFI bootloader..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Έλεγχος για ενημερώσεις UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Διαθέσιμη ενημέρωση DBX" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Το Rufus εντόπισε μια ενημερωμένη έκδοση των αρχείων DBX που χρησιμοποιούνται για την εκτέλεση ελέγχων ανάκλησης UEFI Secure Boot. Θέλετε να κάνετε λήψη αυτής της ενημέρωσης;\n" +"- Επιλέξτε 'Ναι' για να συνδεθείτε στο Διαδίκτυο και να κατεβάσετε αυτό το περιεχόμενο\n" +"- Επιλέξτε 'Όχι' για να ακυρώσετε τη λειτουργία\n" +"\n" +"Σημείωση: Τα αρχεία θα ληφθούν στον κατάλογο της εφαρμογής και θα επαναχρησιμοποιηθούν αυτόματα, εάν υπάρχουν." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠ΣΙΩΠΗΛΑ⚠ διαγραφή δίσκου και εγκατάσταση:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Έχετε επιλέξει να χρησιμοποιήσετε την επιλογή \"αθόρυβης\" εγκατάστασης των Windows.\n" +"\n" +"Αυτή είναι μια προηγμένη επιλογή, που προορίζεται για άτομα που θέλουν να δημιουργήσουν μέσα που δεν ενημερώνουν τον χρήστη κατά την εγκατάσταση των Windows και επομένως ΔΙΑΓΡΑΦΟΥΝ ΑΝΕΥ ΟΡΩΝ τον πρώτο δίσκο που ανιχνεύεται στο σύστημα-στόχο. Εάν δεν είστε προσεκτικοί, η χρήση αυτής της επιλογής μπορεί να οδηγήσει σε ΜΗ ΑΝΑΣΤΡΕΨΙΜΗ ΑΠΩΛΕΙΑ ΔΕΔΟΜΕΝΩΝ!\n" +"\n" +"Εάν αυτό δεν είναι αυτό που θέλετε, επιλέξτε \"Όχι\" για να επιστρέψετε και καταργήστε την επιλογή της επιλογής.\n" +"Διαφορετικά, εάν επιλέξετε \"Ναι\", συμφωνείτε ότι ολόκληρη η ευθύνη για οποιαδήποτε απώλεια δεδομένων θα βαρύνει αποκλειστικά ΕΣΑΣ." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Μη υποστηριζόμενη τοποθεσία εικόνας" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Δεν μπορείτε να χρησιμοποιήσετε μια εικόνα που βρίσκεται στη μονάδα δίσκου προορισμού, καθώς αυτή η μονάδα δίσκου θα διαγραφεί εντελώς. Είναι το ίδιο με το να προσπαθείτε να κόψετε το κλαδί στο οποίο βρίσκεστε!\n" +"\n" +"Μετακινήστε την εικόνα σε διαφορετική θέση και προσπαθήστε ξανά." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Είναι ασφαλές να αφήσετε αυτήν την επιλογή ενεργοποιημένη ακόμα κι αν έχετε TPM ή περισσότερη μνήμη RAM, καθώς αυτή η επιλογή παρακάμπτει μόνο τις απαιτήσεις εγκατάστασης και δεν εμποδίζει στην πραγματικότητα τα Windows να χρησιμοποιούν όλο το διαθέσιμο υλικό." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Για να λειτουργήσει αυτή η επιλογή, ΠΡΕΠΕΙ να έχετε αποσυνδέσει το δίκτυο/Internet κατά την εγκατάσταση!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Απαντήστε αυτόματα με «όχι» στις ερωτήσεις εγκατάστασης των Windows σχετικά με την κοινή χρήση δεδομένων με τη Microsoft, αντί να ζητήσετε από τον χρήστη να απαντήσει." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Θα πρέπει να αφήσετε αυτήν την επιλογή ενεργοποιημένη, εκτός εάν συμφωνείτε με την πρόσβαση των \"Windows To Go\" στους εσωτερικούς δίσκους και την αθόρυβη εκτέλεση μη αναστρέψιμων αναβαθμίσεων συστήματος αρχείων." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Δημιουργήστε αυτόματα έναν τοπικό λογαριασμό με το καθορισμένο όνομα χρήστη, χρησιμοποιώντας έναν κενό κωδικό πρόσβασης που θα πρέπει να αλλάξει στην επόμενη σύνδεση." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Αντιγράψτε τις ρυθμίσεις περιοχής από αυτόν τον υπολογιστή (πληκτρολόγιο, ζώνη ώρας, νόμισμα) αντί να ζητηθεί από τον χρήστη." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Μην κρυπτογραφείτε τον δίσκο συστήματος, εκτός εάν σας το ζητήσει ρητά ο χρήστης." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Χρησιμοποιήστε αυτήν την επιλογή μόνο εάν γνωρίζετε τι είναι η λειτουργία S-Mode και κατανοείτε ότι το σύστημά σας ενδέχεται να είναι κλειδωμένο σε αυτήν ακόμα και μετά την πλήρη διαγραφή και επανεγκατάσταση των Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Χρησιμοποιήστε αυτήν την επιλογή εάν το σύστημα στο οποίο σκοπεύετε να εγκαταστήσετε τα Windows χρησιμοποιεί πλήρως ενημερωμένα πιστοποιητικά Secure Boot. Εάν χρειάζεται, μπορείτε να εξετάσετε το ενδεχόμενο χρήσης του 'Mosby' για την ενημέρωση του συστήματός σας." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Χρησιμοποιήστε αυτήν την επιλογή εάν θέλετε να ανακαλέσετε επιπλέον ενδεχομένως μη ασφαλή προγράμματα εκκίνησης των Windows, αλλά με την πιθανότητα να αποτρέψετε και την εκκίνηση τυπικών μέσων των Windows." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Βελτιώσεις «ποιότητας ζωής»: Απενεργοποιήστε τις περισσότερες ανεπιθύμητες λειτουργίες που η Microsoft προσπαθεί να επιβάλλει στους χρήστες." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Εάν χρησιμοποιήσετε αυτήν την επιλογή, βεβαιωθείτε ότι έχετε αποσυνδέσει κάθε δίσκο από τον υπολογιστή, εκτός από αυτόν στον οποίο θέλετε να εγκαταστήσετε τα Windows, και μην αφήνετε το μέσο συνδεδεμένο σε κάποιο υπολογιστή που δεν θέλετε να διαγράψετε." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/es-ES.po b/res/loc/po/es-ES.po index 3dfb16cb..6f3d5b3e 100644 --- a/res/loc/po/es-ES.po +++ b/res/loc/po/es-ES.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-09 12:54-0300\n" -"PO-Revision-Date: 2024-05-09 12:58-0300\n" +"POT-Creation-Date: 2026-04-07 17:57-0300\n" +"PO-Revision-Date: 2026-04-07 18:56-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_ES\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Spanish (Español)\n" "X-Rufus-LCID: 0x040a, 0x080a, 0x0c0a, 0x100a, 0x140a, 0x180a, 0x1c0a, 0x200a, 0x240a, 0x280a, 0x2c0a, 0x300a, 0x340a, 0x380a, 0x3c0a, 0x400a, 0x440a, 0x480a, 0x4c0a, 0x500a, 0x540a, 0x580a\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -849,7 +849,7 @@ msgstr "No persistente" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Establece el tamaño de la partición persistente para el medio USB autoarrancable. Estableciendo un valor 0 deshabilita la partición persistente." @@ -891,17 +891,17 @@ msgstr "Otro programa o proceso está accediendo a esta unidad. ¿Deseas formate #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus ha detectado que estás intentando crear un medio en Windows To Go basado en la ISO 1809.\n" +"Rufus ha detectado que estás intentando crear un medio Windows To Go basado en la ISO 1809.\n" "\n" -"Debido a un *FALLO DE MICROSOFT*, este medio no arrancará al iniciar Windows (Pantallazo Azul de la Muerte), a no ser que manualmente reemplaces el fichero 'WppRecorder.sys' con la versión 1803.\n" +"Debido a un *FALLO DE MICROSOFT*, este medio se bloqueará durante el arranque de Windows (Pantalla Azul de la Muerte), a menos que reemplaces manualmente el archivo 'WppRecorder.sys' con la versión 1803.\n" "\n" -"Ten en cuenta que el motivo por el que Rufus no puede arreglar esto automáticamente es debido a que el fichero 'WppRecorder.sys' es un fichero con copyright, por lo que legalmente no podemos añadir una copia del fichero en la aplicación..." +"Ten en cuenta que el motivo por el que Rufus no puede corregir esto automáticamente es que 'WppRecorder.sys' es un archivo con derechos de autor de Microsoft, por lo que legalmente no podemos incluir una copia en la aplicación..." #. • MSG_134 msgid "" @@ -1798,6 +1798,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "No se puede abrir o leer '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Aplicar SkuSiPolicy.p7b durante la instalación (ver KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Mejoras \"QoL\" (no forzar Copilot, OneDrive, Outlook, Inicio rápido, etc.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Aplicando personalización de Windows: %s" @@ -1848,17 +1856,17 @@ msgstr "Registro persistente" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Se debe descargar un archivo adicional ('diskcopy.dll') de Microsoft para instalar MS-DOS:\n" +"Se debe descargar un archivo adicional ('%s') de Microsoft para usar esta función:\n" "- Seleccione 'Sí' para conectarse a Internet y descargarlo\n" -"- Seleccione 'No' para cancelar la operación.\n" +"- Seleccione 'No' para cancelar la operación\n" "\n" -"Nota: El archivo se descargará en el directorio de la aplicación y se reutilizará automáticamente si está presente." +"Nota: El archivo se descargará en la carpeta de la aplicación y se reutilizará automáticamente si está presente." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1922,6 +1930,118 @@ msgstr "Extrayendo archivos comprimidos: %s" msgid "Use Rufus MBR" msgstr "Utilice Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Usar cargadores de arranque firmados con 'Windows CA 2023' (requiere una PC de destino compatible)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Comprobando la revocación del cargador de arranque UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Comprobando actualizaciones de UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Actualización de DBX disponible" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus ha encontrado una versión actualizada de los archivos DBX utilizados para realizar comprobaciones de revocación de Secure Boot en UEFI. ¿Desea descargar esta actualización?\n" +"- Seleccione 'Sí' para conectarse a Internet y descargar este contenido\n" +"- Seleccione 'No' para cancelar la operación\n" +"\n" +"Nota: Los archivos se descargarán en la carpeta de la aplicación y se reutilizarán automáticamente si están presentes." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠EN SILENCIO⚠ borrar el disco e instalar:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Ha seleccionado usar la opción de instalación \"silenciosa\" de Windows.\n" +"\n" +"Esta es una opción avanzada, reservada para personas que desean crear un medio que no solicite interacción del usuario durante la instalación de Windows y que, por lo tanto, BORRA INCONDICIONALMENTE el primer disco detectado en el sistema de destino. Si no tiene cuidado, usar esta opción puede resultar en UNA PÉRDIDA DE DATOS IRREVERSIBLE.\n" +"\n" +"Si esto no es lo que desea, seleccione 'No' para volver atrás y desmarcar la opción.\n" +"De lo contrario, si selecciona 'Sí', usted acepta que toda la responsabilidad por cualquier pérdida de datos recaerá únicamente en USTED." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Ubicación de imagen no compatible" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"No puede usar una imagen que esté ubicada en la unidad de destino, ya que esa unidad va a ser completamente borrada. Es lo mismo que intentar serrar la rama en la que está sentado.\n" +"\n" +"Por favor, mueva la imagen a una ubicación diferente e inténtelo de nuevo." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Es seguro dejar esta opción habilitada incluso si tiene un TPM o más memoria RAM, ya que esta opción solo omite los requisitos de instalación y no impide que Windows utilice todo el hardware disponible." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Para que esta opción funcione, la red/Internet DEBE estar desconectada durante la instalación." + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Responder automáticamente 'No' a las preguntas de instalación de Windows relacionadas con el uso compartido de datos con Microsoft, en lugar de solicitárselo al usuario." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Debe dejar esta opción habilitada, a menos que esté de acuerdo con que 'Windows To Go' acceda a los discos internos y realice en silencio actualizaciones irreversibles del sistema de archivos." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Crear automáticamente una cuenta local con el nombre de usuario especificado, utilizando una contraseña vacía que deberá cambiarse en el próximo inicio de sesión." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Duplicar la configuración regional de esta PC (teclado, zona horaria, moneda), en lugar de solicitársela al usuario." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "No cifrar el disco del sistema, a menos que el usuario lo solicite explícitamente." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Use esta opción solo si sabe qué es el Modo S y entiende que su sistema puede quedar bloqueado en Modo S incluso después de borrar completamente e reinstalar Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Use esta opción si el sistema en el que planea instalar Windows utiliza certificados de Secure Boot completamente actualizados. Si es necesario, puede considerar usar 'Mosby' para actualizar su sistema." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Use esta opción si desea revocar cargadores de arranque adicionales de Windows que puedan ser inseguros, pero con la posibilidad de que también se impida que los medios estándar de Windows arranquen." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Mejoras de \"Calidad de Vida\": Deshabilitar la mayoría de las funciones no deseadas que Microsoft intenta imponer a los usuarios finales." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Si usa esta opción, asegúrese de desconectar todos los discos de la PC de destino, excepto aquel en el que desea instalar Windows, así como de no dejar el medio conectado en ninguna PC que no desee borrar." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/fa-IR.po b/res/loc/po/fa-IR.po index 0db1fd2c..591021df 100644 --- a/res/loc/po/fa-IR.po +++ b/res/loc/po/fa-IR.po @@ -1,10 +1,10 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-29 19:24+0300\n" -"PO-Revision-Date: 2025-02-13 12:00+0000\n" -"Last-Translator: MasterVito \n" +"POT-Creation-Date: 2026-03-22 07:20+0300\n" +"PO-Revision-Date: 2026-04-09 21:48+0330\n" +"Last-Translator: \n" "Language-Team: \n" "Language: fa_IR\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Persian (پارسی)\n" "X-Rufus-LCID: 0x0429\n" -"X-Generator: Poedit 3.5\n" +"X-Generator: Poedit 3.8\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -319,7 +319,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -858,7 +858,7 @@ msgstr "غیرفعال" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "برای ایجاد live USB با قابلیت ذخیره‌سازی اطلاعات، اندازه پارتیشن پایدار را تعیین کنید. در این حالت، اطلاعات با راه‌اندازی مجدد (ریست) از بین نخواهد رفت. برای غیرفعال کردن عدد صفر (۰) را وارد کنید." @@ -900,15 +900,15 @@ msgstr "برنامه دیگری در حال استفاده از این درای #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" "Rufus تشخیص داده است که شما می‌خواهید با ISO ورژن 1809 درایوی با قابلیت «Windows To Go» ایجاد کنید.\n" -"به دلیل باگی که شرکت مایکروسافت در این مورد دارد؛ در هنگام راه‌اندازی ویندوز به خطای «Blue Screen Of Death» خواهید خورد. برای رفع این مشکل می‌توانید فایل 'WppRecorder.sys' را با ورژن 1803 جایگزین کنید.\n" -"همچنین در نظر داشته باشید به دلیل اینکه کپی‌رایت فایل 'WppRecorder.sys' برای مایکروسافت است؛ Rufus نمی‌تواند به صورت خودکار این مشکل را برای شما برطرف کند و این فایل را در برنامه خود قرار دهد." +"به دلیل باگی که شرکت مایکروسافت در این مورد دارد؛ در هنگام راه‌اندازی ویندوز به خطای «Blue Screen Of Death» برخورد خواهید کرد. برای رفع این مشکل می‌توانید فایل 'WppRecorder.sys' را با ورژن 1803 جایگزین کنید.\n" +"همچنین در نظر داشته باشید به دلیل اینکه حق نشر فایل 'WppRecorder.sys' برای مایکروسافت است؛ Rufus نمی‌تواند به صورت خودکار این مشکل را برای شما برطرف کند و این فایل را در برنامه خود قرار دهد." #. • MSG_134 msgid "" @@ -1094,7 +1094,7 @@ msgstr "نسخه %d.%d (Build %d)" #. • MSG_176 msgid "English translation: Pete Batard " -msgstr "ترجمه فارسی:\\line‏ •مستر ویتو \\line‏ •ضیاءالدین عظیمی " +msgstr "ترجمه فارسی:\\line‏ •روبی \\line‏ •ضیاءالدین عظیمی " #. • MSG_177 msgid "Report bugs or request enhancements at:" @@ -1800,6 +1800,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "باز کردن یا خواندن %s ممکن نیست" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "اعمال کردن SkuSiPolicy.p7b در هنگام نصب کردن (نگاه کردن به KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "بهبود های QoL (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "اعمال سفارشی سازی ویندوز: %s" @@ -1850,17 +1858,17 @@ msgstr "لیست مداوم" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"فایل دیگری ('diskcopy.dll:) نیاز است دانلود شود از مایکروسافت برای نصب MS-DOS:\n" +"برای استفاده از این ویژگی، باید یک فایل اضافی ('%s') از مایکروسافت دانلود شود:\n" "- انتخاب :'بله' برای وصل شدن به اینترنت و دانلود آن\n" "- انتخاب 'نه' برای کنسل کردن این کار\n" "\n" -"نکته: فایل در مکان نرم افزار دانلود میشود و دوباره استفاده میشود درصورت انجام مجدد این کار." +"نکته: فایل در مکان نرم افزار دانلود میشود و درصورت نیاز دوباره استفاده خواهد شد." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1922,6 +1930,119 @@ msgstr "استراج کردن فایل های آرشیو: %s" msgid "Use Rufus MBR" msgstr "استفاده از Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "استفاده از بوتلودر امضا شده 'Windows CA 2023' (نیازمند به یک کامپیوتر سازگار است)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "درحال بررسی برای بوتلودر UEFI باطل." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "درحال بررسی بروزرسانی برای UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "آپدیت DBX موجود است" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus یک نسخه بروزرسانی شده از فایل های DBX که در ابطال بررسی های UEFI Secure Boot استفاده میشوند پیدا کرده است, آیا میخواهید این بروزرسانی را بارگیری کنید؟ \n" +"- انتخاب 'بله' برای وصل شدن به اینترنت و دانلود آن\n" +"- انتخاب 'نه' برای کنسل این عملیات\n" +"\n" +"نکته: فایل در مکان نرم افزار دانلود میشود و درصورت نیاز دوباره استفاده خواهد شد." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠مخفیانه⚠ دیسک را پاک کن و نصب کن:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"شما انتخاب کرده‌اید که از گزینه نصب ویندوز «مخفیانه» استفاده کنید.\n" +"\n" +"این یک گزینه پیشرفته است که برای افرادی در نظر گرفته شده است که می‌خواهند مدیا ایجاد کنند که در حین نصب ویندوز به کاربر اطلاع ندهد و بنابراین بدون قید و شرط اولین دیسک شناسایی شده روی سیستم هدف را پاک کند. اگر مراقب نباشید، استفاده از این گزینه می‌تواند منجر به از دست رفتن غیرقابل برگشت داده‌ ها شود!\n" +"\n" +"اگر این چیزی نیست که می‌خواهید، لطفاً برای بازگشت و برداشتن تیک گزینه، «خیر» را انتخاب کنید.\n" +"\n" +"در غیر این صورت، اگر «بله» را انتخاب کنید، موافقید که تمام مسئولیت هرگونه از دست رفتن داده‌ ها کاملاً بر عهده شما خواهد بود." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "محل پشتیبانی نشده ایمیج (Image)" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"شما نمیتوانید از این ایمیج که در درایو موردنظر است استفاده کنید. زیرا این درایو قرار است کاملا پاک شود, مثل این میماند که میخواهید شاخه درختی که بر روی آن نشسته اید را ببرید! \n" +"\n" +"لطفا ایمیج را به یه محل دیگه منتقل کنید و دوباره تلاش کنید." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "روشن گزاشتن این گزینه امن است زیرا حتی اگر TPM و یا RAM بیشتر داشته باشید, زیرا که این گزینه فقط باعث دور زدن الزامات نصب میباشد و باعث جلوگیری ویندوز از استفاده نکردن از تمامی سخت افزار موجود نمیشود." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "برای اینکه این گزینه کار کند, باید اینترنت/شبکه در هنگام نصب قطع باشد!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "بصورت خودکار به سوالات ارسال داده به مایکروسافت 'نه' بگو, بجای اینکه از کاربر درخواست کنی." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "شما باید این گزینه را فعال بگزارید, مگراینکه میخواهید 'Windows To Go' به دیسک داخلی دسترسی داشته باشد و بصورت مخفیانه بروزرسانی غیرقابل برگشت در File System انجام دهد." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "به طور خودکار یک حساب محلی با نام کاربری مشخص شده ایجاد می‌کند، با استفاده از یک رمز عبور خالی که باید در ورود بعدی تغییر کند." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "تنظیمات منطقه ای را از همین کامپیوتر (کیبورد, وقت منطقه ای, واحد پول), بجای اینکه از کاربر پرسیده شود." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "هارد سیستم را رمزگزاری نکن, مگر اینکه کاربر صریحاً درخواست کرده باشد." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "از این گزینه فقط در صورتی که میدانید S-Mode چیست و میدانید که ممکن است سیستم شما در حالت S-Mode قفل شود حتی بعد از اینکه شما کاملا ویندوز را پاک و دوباره نصب کردید استفاده کنید." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "از این گزینه درصورتی استفاده کنید که سیستمی که میخواهید بر روی آن ویندوز نصب کنید از آخرین گواهینامه های Secure Boot دارا است, درصورت نیاز, میتواند با استفاده از 'Mosby' سیستم خود را بروزرسانی کنید." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "از این گزینه فقط درصورتی که میخواهید بوتلودر های ناامن ویندوز را لغو کنید, اما با پتانسیل جلوگیری از بوت شدن ویندوز مدیا استاندارد." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"Quality of Life\"" + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "اگر میخواهید از این گزینه استفاده کنید, لطفا تمامی دیسک ها از کامپیوتر موردنظر قطع کنید, بجز آنکه میخواهید ویندوز را در آن نصب کنید, و همچنین فلش را به کامپیوتری که نمی‌خواهید اطلاعاتش پاک شود، متصل نگذارید." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/fi-FI.po b/res/loc/po/fi-FI.po index 48ef3427..958f4ebc 100644 --- a/res/loc/po/fi-FI.po +++ b/res/loc/po/fi-FI.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-14 12:47+0300\n" -"PO-Revision-Date: 2024-05-14 14:07+0300\n" +"POT-Creation-Date: 2026-04-19 21:57+0300\n" +"PO-Revision-Date: 2026-04-19 23:58+0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: fi_FI\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Finnish (Suomi)\n" "X-Rufus-LCID: 0x040B\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -846,7 +846,7 @@ msgstr "Ei pysyvää osiota" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Aseta pysyvän osion koko 'live USB' -tietovälineitä varten. Koon asettaminen arvoon 0 poistaa pysyvän osion käytöstä." @@ -888,17 +888,17 @@ msgstr "Jokin toinen ohjelma tai prosessi käyttää tätä levyä parhaillaan. #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus on havainnut, että yrität luoda Windows to Go -tietovälinettä joka pohjautuu 1809 ISO-levykuvaan.\n" +"Rufus on havainnut, että yrität luoda 'Windows To Go' -tietovälinettä joka pohjautuu 1809 ISO-levykuvaan.\n" "\n" -"*MICROSOFTIN OHJELMOINTIVIRHEEN* vuoksi tämä tietoväline kaatuu Windowsin käynnistyksen aikana (Blue Screen Of Death), ellet manuaalisesti korvaa 'WppRecorder.sys' -tiedostoa 1803-versiolla.\n" +"*MICROSOFTIN OHJELMOINTIVIRHEEN* vuoksi tämä tietoväline kaatuu Windowsin käynnistyksen aikana (keskeytysvirhe), ellet manuaalisesti korvaa 'WppRecorder.sys' -tiedostoa 1803-versiolla.\n" "\n" -"Huomaathan, että 'WppRecorder.sys' on Microsoftin tekijänoikeudellinen tiedosto ja täten Rufus ei voi automaattisesti korjata tätä virhettä, sillä emme voi tarjota kyseistä tiedostoa sovelluksemme kautta lakiteknisistä syistä..." +"Huomaathan, että 'WppRecorder.sys' on Microsoftin tekijänoikeudellinen tiedosto. Rufus ei voi automaattisesti korjata tätä virhettä, sillä emme voi tarjota kyseistä tiedostoa sovelluksen kautta lakiteknisistä syistä..." #. • MSG_134 msgid "" @@ -1795,6 +1795,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Ei voitu avata tai lukea kohdetta '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Ota käyttöön SkuSiPolicy.p7b-käytäntö asennuksen yhteydessä (Katso KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "QoL-parannukset (Älä pakota ominaisuuksia Copilot, OneDrive, Outlook, Fast Startup jne.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Asetetaan Windowsin mukautusasetuksia: %s" @@ -1845,17 +1853,17 @@ msgstr "Pysyvä lokitiedosto" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Uusi tiedosto ('diskcopy.dll') on ladattava Microsoftilta MS-DOSin asennusta varten:\n" +"Tämän ominaisuuden käyttö vaatii Microsoftilta ladattavan lisätiedoston ('%s'):\n" "- Valitse 'Kyllä' yhdistääksesi internetiin ja ladataksesi sen\n" "- Valitse 'Ei' peruuttaaksesi toiminnon\n" "\n" -"Huomio: Tiedosto ladataan sovelluksen kansioon ja sitä uudelleenkäytetään automaattisesti, jos se on jo olemassa." +"Huomio: Tiedosto ladataan sovelluskansioon ja sitä voidaan uudelleenkäyttää automaattisesti." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1905,7 +1913,7 @@ msgstr "" #. • MSG_346 msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" -msgstr "Rajoita Windows S Mode-tilaan (EI YHTEENSOPIVA verkkotilin ohituksen kanssa)" +msgstr "Rajoita Windows käyttämään S Mode -tilaa (EI YHTEENSOPIVA verkkotilin ohituksen kanssa)" #. • MSG_347 msgid "Expert Mode" @@ -1919,6 +1927,118 @@ msgstr "Puretaan tiedostoarkistoja: %s" msgid "Use Rufus MBR" msgstr "Rufusin MBR:n käyttö" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Käytä 'Windows CA 2023' -allekirjoitettuja käynnistyslataajia (Vaatii yhteensopivan kohdetietokoneen)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Tarkistetaan, onko UEFI-käynnistyslataaja mitätöity..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Tarkistetaan UEFI DBX-tietokannan päivityksiä..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "DBX-päivitys saatavilla" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus on havainnut päivitetyn version DBX-tiedostoista, joita käytetään UEFI Secure Boot -mitätöintitarkistuksissa. Haluatko ladata päivityksen?\n" +"- Valitse 'Kyllä' yhdistääksesi internetiin ja ladataksesi sisällön\n" +"- Valitse 'Ei' peruuttaaksesi toiminnon\n" +"\n" +"Huomio: Tiedostot ladataan sovelluskansioon ja niitä voidaan uudelleenkäyttää automaattisesti." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "Tyhjennä levy ja suorita asennus ⚠VALVOMATTA⚠:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes', you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Olet valinnut Windows-asennustavan, joka tapahtuu \"valvomatta\".\n" +"\n" +"Tämä on edistyneille käyttäjille suunnattu toiminto luoden tietovälineen, joka ei vaadi mitään käyttäjän syötettä asennuksen aikana ja täten TYHJENTÄÄ VAROITUKSETTA ensimmäisen havaitun levyn kohdejärjestelmässä. Jos et ole tarkkana, voi tämä valinta johtaa PERUUTTAMATTOMAAN TIEDON MENETYKSEEN!\n" +"\n" +"Jos et halua käyttää tätä ominaisuutta, valitse 'Ei' palataksesi ja poista valintaruudun valinta.\n" +"Valitsemalla 'Kyllä' hyväksyt, että mahdollinen tietojen menetys on täysin SINUN vastuullasi." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Levykuvan sijaintia ei tueta" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Et voi käyttää kohdeasemalle tallennettua levykuvaa, sillä tämä asema tyhjennetään kokonaisuudessaan. Se on vähän kuin omaa oksaansa sahaisi!\n" +"\n" +"Siirrä levykuva eri sijaintiin ja yritä uudelleen." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Voit turvallisesti käyttää tätä valintaa, vaikka sinulta löytyisi TPM tai enemmän keskusmuistia, sillä se sivuuttaa ainoastaan asennusvaatimuksen eikä rajoita Windowsia käyttämästä saatavilla olevaa laitteistoa." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Tämän valinnan toiminta VAATII verkon/internetin kytkemisen pois päältä asennuksen ajaksi!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Vastaa automaattisesti käyttäjältä kysymättä 'ei' Windowsin asennusvalintoihin, jotka liittyvät tiedon jakamiseen Microsoftin kanssa." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Tämä valinta kannattaa pitää valittuna, ellet halua sallia 'Windows to Go' -asennukselle pääsyä sisäisiin levyihin ja valvomatonta, peruuttamatonta tiedostojärjestelmien päivitystä." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Luo automaattisesti paikallinen tili määritetyllä käyttäjänimellä ja tyhjällä salasanalla, joka tulee vaihtaa seuraavan sisäänkirjautumisen yhteydessä." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Kopioi alueelliset asetukset (näppäimistö, aikavyöhyke, valuutta) tästä tietokoneesta käyttäjältä kysymisen sijaan." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Älä salaa järjestelmälevyä, ellei käyttäjä sitä erikseen pyydä." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Käytä tätä valintaa vain, jos tiedät mitä S Mode -tila tarkoittaa ja ymmärrät, että järjestelmäsi voi lukittua S Mode -tilaan vaikka poistaisit ja uudelleenasentaisit Windowsin kokonaan." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Käytä tätä valintaa, jos Windows-asennuksen kohdetietokoneesta löytyy täysin ajan tasalla olevat Secure Boot -sertifikaatit. Voit halutessasi tutustua 'Mosby'-ohjelmaan päivitystä varten." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Käytä tätä valintaa, jos haluat mitätöidä useampia mahdollisesti vaarallisia Windows-käynnistyslataajia, mutta samalla mahdollisesti estäen myös joidenkin normaalien Windows-tietovälineiden käynnistymisen." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"Quality of Life\" -parannukset: Poista käytöstä useimmat ei-halutut ominaisuudet, joita Microsoft yrittää pakottaa käyttäjiä väkisin käyttämään." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Jos käytät tätä valintaa, varmistathan, että kaikki levyt on irroitettu kohdetietokoneesta lukuunottamatta haluttua Windows-asennuksen kohdelevyä. Älä myöskään jätä tietovälinettä yhdistetyksi sellaiseen tietokoneeseen, jonka levyjä et halua tyhjennettävän." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/fr-FR.po b/res/loc/po/fr-FR.po index bb06d746..4aa3a941 100644 --- a/res/loc/po/fr-FR.po +++ b/res/loc/po/fr-FR.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2025-04-02 11:34+0100\n" -"PO-Revision-Date: 2025-04-02 11:51+0100\n" +"POT-Creation-Date: 2026-06-15 16:25+0100\n" +"PO-Revision-Date: 2026-06-15 23:57+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: fr_FR\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: French (Français)\n" "X-Rufus-LCID: 0x040c, 0x080c, 0x0c0c, 0x100c, 0x140c, 0x180c, 0x1c0c, 0x200c, 0x240c, 0x280c, 0x2c0c, 0x300c, 0x340c, 0x380c, 0xe40c\n" -"X-Generator: Poedit 3.6\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -309,7 +309,7 @@ msgstr "To" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "Po" @@ -844,7 +844,7 @@ msgstr "Désactivée" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Etablit la taille de la partition persistente pour media USB de type \"live\". Une taille de 0 désactive l’utilisation d’une partition persistente." @@ -886,7 +886,7 @@ msgstr "Ce lecteur est utilisé par une autre application ou un autre processus. #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -1790,6 +1790,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Impossible d'ouvrir ou de lire '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Appliquer SkuSiPolicy.p7b après installation (Consultez KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Améliorations 'QoL' (Ne force pas Copilot, OneDrive, Outlook, Fast Startup, etc.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Application des options de personnalisation de Windows: %s" @@ -1820,7 +1828,7 @@ msgstr "Désactiver la collecte de données (Supprime les questions de confident #. • MSG_332 msgid "Prevent Windows To Go from accessing internal disks" -msgstr "Empêcher Windows To Go d'accéder aux disques internes" +msgstr "Empêcher 'Windows To Go' d'accéder aux disques internes" #. • MSG_333 msgid "Create a local account with username:" @@ -1832,7 +1840,7 @@ msgstr "Définir les options régionales avec les mêmes valeurs que celles de c #. • MSG_335 msgid "Disable BitLocker automatic device encryption" -msgstr "Désactiver le cryptage automatique BitLocker" +msgstr "Désactiver le chiffrement automatique BitLocker" #. • MSG_336 msgid "Persistent log" @@ -1840,13 +1848,13 @@ msgstr "Log persistent" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Un fichier supplémentaire ('diskcopy.dll') doit être téléchargé depuis Microsoft pour installer MS-DOS :\n" +"Un fichier supplémentaire ('%s') doit être téléchargé depuis Microsoft pour utiliser cette fonctionalité :\n" "- Sélectionnez 'Oui' pour vous connecter à Internet et le télécharger\n" "- Sélectionnez 'Non' pour annuler l’opération\n" "\n" @@ -1915,8 +1923,8 @@ msgid "Use Rufus MBR" msgstr "Utilisation du MBR Rufus" #. • MSG_350 -msgid "Use 'Windows UEFI CA 2023' signed bootloaders [EXPERIMENTAL]" -msgstr "Utiliser les bootloaders signés par 'Windows UEFI CA 2023' [EXPÉRIMENTAL]" +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Utiliser les bootloaders signés par 'Windows CA 2023' (nécessite un PC cible compatible)" #. • MSG_351 msgid "Checking for UEFI bootloader revocation..." @@ -1944,6 +1952,98 @@ msgstr "" "\n" "Note : Ces fichiers seront téléchargés dans le répertoire de l'application et réutilisés automatiquement si ils sont présent." +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "Effacer le disque ⚠SILENCIEUSEMENT⚠ et installer:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"You MUST read and accept all of the following propositions to proceed:" +msgstr "" +"Vous avez sélectionné l'option d'installation de Windows dite \"silencieuse\".\n" +"\n" +"Il s'agit d'une option avancée, réservée à ceux qui souhaitent créer un média d'installation qui ne posera aucune question à l'utilisateur pendant l'installation de Windows et qui EFFACERA SANS CONDITION le premier disque détecté sur le système cible. Si vous n'y prenez pas garde, l'utilisation de cette option peut résulter en une PERTE DE DONNÉES IRREVERSIBLE !\n" +"\n" +"VOUS DEVEZ lire et accepter toutes les propositions suivantes afin de procéder :" + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Placement d'image non supporté" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Vous ne pouvez pas utiliser une image située sur le périphérique cible, puisque ce dernier va être complètement effacé. Cela revient au même qu'essayer de scier la branche sur laquelle vous êtes assis !\n" +"\n" +"Veuillez déplacer l'image sur un autre disque et réessayez." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Vous pouvez laisser cette option activée même si vous avez une puce TPM ou plus de RAM, car l'option contourne simplement les prérequis du programme d'installation et n'empêche absolument pas Windows d'utiliser toutes ces ressources si disponibles." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Pour que cette option fonctionne, vous DEVEZ déconnecter le réseau/Internet pendant l'installation !" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Répond automatiquement 'non' aux questions du programme d'installation de Windows en ce qui concerne l'autorisation du partage de données avec Microsoft, au lieu de demander à l'utilisateur." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Laissez cette option activée à moins que vous acceptiez que 'Windows To Go' puisse accéder aux disques internes pour effectuer des mises à jour, silencieuses et irréversible, des systèmes de fichiers." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Crée un compte local automatiquement, pour le nom spécifié, et avec un mot de passe vide qui devra être changé à la prochaine session." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Réplique les options régionales de ce PC (clavier, fuseau horaire, monnaie), au lieu de demander à l'utilisateur." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Ne chiffre pas le disque système, sauf si l'utilisateur le demande explicitement." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Activez cette option seulement si vous savez ce qu'est S-Mode et comprenez que votre système pourra être restreint au S-Mode même si vous supprimez Windows et le réinstallez complètement." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Activez cette option si le système que vous installez utilise des certificats Secure Boot complètement à jour. Si nécessaire, vous pouvez utiliser 'Mosby' pour mettre votre système à jour." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Activez cette option pour révoquer des bootloaders supplémentaires de Windows, mais avec le risque de ne plus pouvoir démarrer depuis des media Windows standard." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Améliorations \"Quality of Life\" : Désactive la plupart des fonctionnalités que Microsoft essaie de pousser, contre leur gré, aux utilisateurs." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Si vous utilisez cette option, veuillez-vous assurer que tous les disques, sauf celui sur lequel vous voulez installer Windows, est déconnecté du PC cible, et aussi que vous ne laisserez pas le média connecté sur un PC que vous ne voulez pas réinstaller." + +#. • MSG_372 +msgid "I WILL ensure that all disks, except the one I want to install Windows on, are disconnected." +msgstr "JE VEILLERAI à déconnecter tout les disques, sauf celui où j'installe Windows." + +#. • MSG_373 +msgid "I WILL ensure that I don't leave this media plugged on a PC I do not plan to erase." +msgstr "JE VEILLERAI de ne pas laisser ce media connecté à un PC que je ne compte pas effacer." + +#. • MSG_374 +msgid "I AGREE that any data loss resulting from the use of this option lies entirely with me." +msgstr "J'ACCEPTE que toute perte de données liée à cette option m'incombe entièrement." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/he-IL.po b/res/loc/po/he-IL.po index a448c58d..0929a986 100644 --- a/res/loc/po/he-IL.po +++ b/res/loc/po/he-IL.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-25 21:07+0300\n" -"PO-Revision-Date: 2024-04-26 01:31+0300\n" +"POT-Creation-Date: 2026-03-25 13:31+0000\n" +"PO-Revision-Date: 2026-03-25 13:32+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: he_IL\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Hebrew (עברית)\n" "X-Rufus-LCID: 0x040d\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -577,7 +577,7 @@ msgstr "" "- יש לבחור 'לא' כדי להשאיר את קובץ ה־ISO ללא שינויים\n" "אם לא ברור לך מה לעשות, כדאי לבחור באפשרות 'כן'.\n" "\n" -"הערה: הקובץ החדש יירד לספרייה בה ממוקם היישום וכל עוד ש־'%s' קיים שם, Rufus ישתמש בו באופן אוטומטי במידת הצורך." +"הערה: הקובץ החדש יורד לספרייה בה ממוקם היישום וכל עוד ש־'%s' קיים שם, Rufus ישתמש בו באופן אוטומטי במידת הצורך." #. • MSG_085 msgid "Downloading %s" @@ -771,7 +771,7 @@ msgstr "" "- יש לבחור 'כן' כדי להתחבר לאינטרנט ולהוריד את הקבצים האלו\n" "- יש לבחור 'לא' כדי לבטל את הפעולה\n" "\n" -"הערה: הקבצים יירדו לספרייה בה ממוקם היישום וכל עוד קבצים אלו יהיו שם, Rufus ישתמש בהם באופן אוטומטי במידת הצורך." +"הערה: הקבצים יורדו לספרייה בה ממוקם היישום וכל עוד הקבצים יהיו שם, Rufus ישתמש בהם באופן אוטומטי במידת הצורך." #. • MSG_115 msgid "Download required" @@ -798,7 +798,7 @@ msgstr "" "- יש לבחור 'לא' כדי להשתמש בגרסת ברירת המחדל מ־Rufus\n" "- יש לבחור 'ביטול' כדי לבטל את הפעולה\n" "\n" -"הערה: הקובץ יירד לספרייה בה ממוקם היישום ו־Rufus ישתמש בו באופן אוטומטי במידת הצורך. אם לא תימצא התאמה באינטרנט, Rufus ישתמש בגרסה ברירת המחדל." +"הערה: הקובץ יורד לספרייה בה ממוקם היישום ו־Rufus ישתמש בו באופן אוטומטי במידת הצורך. אם לא תימצא התאמה באינטרנט, Rufus ישתמש בגרסה ברירת המחדל." #. • MSG_117 msgid "Standard Windows installation" @@ -847,7 +847,7 @@ msgstr "ללא" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "הגדרת גודל המחיצה הקבועה עבור מדיית Live USB. הגדרת הגודל ל־0 מבטלת את המחיצה הקבועה." @@ -889,7 +889,7 @@ msgstr "יישום או תהליך אחר משתמש בכונן זה. האם ב #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -1137,7 +1137,7 @@ msgstr "קובץ תמונה שגוי עבור אפשרות האתחול שנבח #. • MSG_188 msgid "The current image doesn't match the boot option selected. Please use a different image or choose a different boot option." -msgstr "קובץ התמונה הנוכחי אינו מתאים לאפשרות האתחול שנבחרה. נא להשתמש בקובץ תמונה אחר או לבחור באפשרות אתחול אחרת.." +msgstr "קובץ התמונה הנוכחי אינו מתאים לאפשרות האתחול שנבחרה. נא להשתמש בקובץ תמונה אחר או לבחור באפשרות אתחול אחרת." #. • MSG_189 msgid "This ISO image is not compatible with the selected filesystem" @@ -1804,6 +1804,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "לא ניתן לפתוח או לקרוא את '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "החלת SkuSiPolicy.p7b בזמן ההתקנה (יש לעיין ב־KB5042562 למידע נוסף)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "שיפורי QoL (לא לכפות Copilot, OneDrive, Outlook, Fast Startup וכו')" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "מחיל התאמה אישית של Windows‏: %s" @@ -1846,7 +1854,7 @@ msgstr "הגדרת אפשרויות האזור לאותם ערכים כמו של #. • MSG_335 msgid "Disable BitLocker automatic device encryption" -msgstr "השבתת הצפנת מכשיר אוטומטית של BitLocker" +msgstr "השבתת הצפנה אוטומטית של המכשיר באמצעות BitLocker" #. • MSG_336 msgid "Persistent log" @@ -1854,17 +1862,17 @@ msgstr "יומן קבוע" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"יש להוריד קובץ נוסף ('diskcopy.dll') מ־Microsoft על מנת להתקין MS-DOS:\n" +"יש להוריד קובץ נוסף ('%s') מ־Microsoft כדי להשתמש בתכונה זו:\n" "- יש לבחור 'כן' כדי להתחבר לאינטרנט ולהוריד אותו\n" "- יש לבחור 'לא' כדי לבטל את הפעולה\n" "\n" -"הערה: הקובץ יירד לספרייה בה ממוקם היישום וכל עוד הקובץ יהיה שם, Rufus ישתמש בו באופן אוטומטי במידת הצורך." +"הערה: הקובץ יורד לספרייה בה ממוקם היישום וכל עוד הקובץ יהיה שם, Rufus ישתמש בו באופן אוטומטי במידת הצורך." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1928,6 +1936,118 @@ msgstr "מחלץ קובצי ארכיון: %s" msgid "Use Rufus MBR" msgstr "שימוש ב־MBR של Rufus" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "שימוש במנהלי אתחול חתומים 'Windows CA 2023' (דורש מחשב יעד נתמך)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "בודק אחר ביטול תוקף של מנהל אתחול UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "בודק אחר עדכונים ל־UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "עדכון DBX זמין" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus איתר גרסה מעודכנת של קובצי DBX המשמשים לבצע בדיקות ביטול תוקף של UEFI Secure Boot. האם ברצונך להוריד את העדכון הזה?\n" +"- יש לבחור 'כן' כדי להתחבר לאינטרנט ולהוריד את התוכן הזה\n" +"- יש לבחור 'לא' כדי לבטל פעולה זו\n" +"\n" +"הערה: הקבצים יורדו לספרייה בה ממוקם היישום וכל עוד הקבצים יהיו שם, Rufus ישתמש בהם באופן אוטומטי במידת הצורך." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "איפוס הדיסק והתקנה ⚠באופן שקט⚠:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"בחרת להשתמש באפשרות התקנת Windows באופן \"שקט\".\n" +"\n" +"זוהי אפשרות מתקדמת, המיועדת לאנשים שרוצים ליצור מדיה שלא מציגה שום בקשות או שאלות מהמשתמש במהלך התקנת Windows, ולכן *מוחקת ומאפסת ללא התראה מוקדמת* את הדיסק הראשון שמזוהה במערכת היעד. אם לא נזהרים, שימוש באפשרות זו עלול לגרום *לאובדן נתונים בלתי הפיך*!\n" +"\n" +"אם זה לא מה שרצית, נא לבחור 'לא' כדי לחזור אחורה ולבטל הסימון של האפשרות הזאת.\n" +"אחרת, אם האפשרות 'כן' תיבחר, מקובל עליך שכל האחריות לכל אובדן הנתונים יהיה *עליך בלבד*." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "מיקום קובץ תמונה לא נתמך" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"לא ניתן לבחור בקובץ תמונה הממוקם בכונן היעד, מכיוון שכונן זה עומד להימחק ולהתאפס לחלוטין. זה אותו הדבר כמו לנסות לנסר את הענף שעליו יושבים!\n" +"\n" +"נא להעביר את קובץ התמונה למיקום שונה ולנסות שוב." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "אפשר להשאיר את האפשרות הזו מופעלת בבטחה גם אם יש לך TPM או יותר זיכרון RAM, מכיוון שהיא רק עוקפת את דרישות ההתקנה ואינה מונעת מ־Windows להשתמש בכל החומרה הזמינה." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "כדי שאפשרות זו תעבוד, *חייבים* להתנתק מהרשת/אינטרנט במהלך ההתקנה!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "עונה באופן אוטומטי 'לא' לשאלות ההתקנה של Windows הנוגעות לשיתוף נתונים עם Microsoft, במקום לבקש קלט מהמשתמש." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "כדאי להשאיר אפשרות זו מופעלת, אלא אם כן מקובל עליך ש־Windows To Go יקבל גישה לדיסקים פנימיים ויבצע שדרוגי מערכת קבצים בלתי הפיכים באופן שקט." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "יצירה אוטומטית של חשבון מקומי עם שם משתמש שמצוין מראש, תוך שימוש בסיסמה ריקה שתצטרך להיות מוחלפת בהתחברות הבאה." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "שכפול הגדרות האזור מהמחשב הזה (מקלדת, אזור זמן, מטבע), במקום לבקש קלט מהמשתמש." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "לא להצפין את דיסק המערכת, אלא אם המשתמש מבקש זאת באופן מפורש." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "יש להשתמש באפשרות זו רק אם ידוע לך מהו S-Mode, ומובן לך שהמערכת שלך עשויה להישאר נעולה ב־S-Mode גם לאחר מחיקה מלאה והתקנה מחדש של Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "יש להשתמש באפשרות זו אם המערכת שבה מתוכננת ההתקנה של Windows משתמשת בתעודות Secure Boot מעודכנות לחלוטין. אם יש צורך, ניתן לנסות להשתמש ב־Mosby כדי לעדכן את המערכת." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "יש להשתמש באפשרות זו אם ברצונך לאסור את השימוש במנהלי אתחול נוספים של Windows שעשויים להיות לא בטוחים, בידיעה שיש בכך גם סיכון שמדיות סטנדרטיות של Windows לא ייטענו." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "שיפורי \"Quality of Life\": השבתת רוב התכונות הבלתי רצויות ש־Microsoft מנסה לכפות על משתמשי קצה." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "אם משתמשים באפשרות זו, יש לוודא שכל הכוננים במחשב היעד מנותקים, מלבד הכונן שבו רוצים להתקין את Windows, וכן לא להשאיר את המדיה מחוברת למחשב שאותו לא רוצים למחוק." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/hr-HR.po b/res/loc/po/hr-HR.po index 66124d36..eaac4486 100644 --- a/res/loc/po/hr-HR.po +++ b/res/loc/po/hr-HR.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-09 18:57+0200\n" -"PO-Revision-Date: 2024-05-09 19:30+0200\n" +"POT-Creation-Date: 2026-03-29 14:57+0200\n" +"PO-Revision-Date: 2026-03-29 15:44+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: hr_HR\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Croatian (Hrvatski)\n" "X-Rufus-LCID: 0x041a, 0x081a, 0x101a\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -306,7 +306,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -844,7 +844,7 @@ msgstr "Bez trajne particije" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Zadaj veličinu trajne particije za \"live\" USB medij. Ako je zadana veličina 0, isključuje se trajna particija." @@ -886,17 +886,17 @@ msgstr "Drugi program ili proces pristupa pogonu. Da li ipak želiš formatirati #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus je otkrio da pokušavate kreirati \"Windows To Go\" medij baziran na verziji 1809 ISO.\n" +"Rufus je otkrio da pokušavate stvoriti 'Windows To Go' medij na temelju 1809 ISO datoteke.\n" "\n" -"Zbog *MICROSOFT BUG-a*, doći će do fatalne greške kod podizanja Windows-a (Blue Screen Of Death), osim ako ne zamijenite datoteku 'WppRecorder.sys' s verzijom 1803.\n" +"Zbog *MICROSOFTOVE GREŠKE*, ovaj medij će se srušiti tijekom pokretanja sustava Windows (BSOD), osim ako ručno zamijenite datoteku 'WppRecorder.sys' s verzijom 1803.\n" "\n" -"Rufus nije u mogućnosti ispraviti problem jer datoteka 'WppRecorder.sys' podliježe Microsoft \"copyright-u\", tako da bi to bilo ilegalno." +"Rufus ne može automatski popraviti ovo za vas jer je 'WppRecorder.sys' datoteka zaštićena autorskim pravima tvrtke Microsoft, pa ne možemo legalno ugraditi kopiju datoteke u aplikaciju..." #. • MSG_134 msgid "" @@ -1793,6 +1793,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Nije moguće otvoriti ili pročitati '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Primijenite SkuSiPolicy.p7b prilikom instalacije (vidi KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "QoL poboljšanja (Nemojte forsirati Copilot, OneDrive, Outlook, Fast Startup, itd.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Primjena prilagodbe sustava Windows: %s" @@ -1843,17 +1851,17 @@ msgstr "Stalni zapisnik" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Dodatnu datoteku ('diskcopy.dll') potrebno je preuzeti s Microsofta da biste instalirali MS-DOS:\n" -"- Odaberite 'Da' za spajanje na Internet i preuzimanje\n" +"Za korištenje ove značajke potrebno je preuzeti dodatnu datoteku ('%s') od Microsofta:\n" +"- Odaberite 'Da' za povezivanje s internetom i preuzimanje\n" "- Odaberite 'Ne' za poništavanje operacije\n" "\n" -"Napomena: Datoteka će se preuzeti u imenik aplikacije i automatski će se ponovno koristiti ako postoji." +"Napomena: Datoteka će se preuzeti u direktorij aplikacije i automatski će se ponovno koristiti ako postoji." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1917,6 +1925,118 @@ msgstr "Izdvajanje arhivskih datoteka: %s" msgid "Use Rufus MBR" msgstr "Koristiti Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Koristi 'Windows CA 2023' potpisane bootloadere (potrebno je kompatibilno ciljno računalo)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Provjera za opoziva UEFI bootloadera..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Provjera ažuriranja za UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "DBX ažuriranje dostupno" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus je pronašao ažuriranu verziju DBX datoteka koje se koriste za izvođenje provjera opoziva UEFI Secure Boot-a. Želite li preuzeti ovo ažuriranje?\n" +"- Odaberite 'Da' za povezivanje s internetom i preuzimanje ovog sadržaja\n" +"- Odaberite 'Ne' za otkazivanje operacije\n" +"\n" +"Napomena: Datoteke će se preuzeti u direktorij aplikacije i automatski će se ponovno koristiti ako postoje." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠TIHO⚠ izbriši disk i instaliraj:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Odabrali ste korištenje \"tihe\" opcije instalacije sustava Windows.\n" +"\n" +"Ovo je napredna opcija, rezervirana za ljude koji žele stvoriti medij koji ne obavještava korisnika tijekom instalacije sustava Windows i stoga BEZUVJETNO BRIŠE prvi otkriveni disk na sustavu. Ako niste oprezni, korištenje ove opcije može rezultirati NEPOVRATNIM GUBITKOM PODATAKA!\n" +"\n" +"Ako to ne želite, molim odaberite 'Ne' za povratak i poništite odabir opcije.\n" +"Suprotno, ako odaberete 'Da', slažete se da će sva odgovornost za bilo kakav gubitak podataka biti isključivo na VAMA." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Nepodržana lokacija slike" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Ne možete koristiti sliku koja se nalazi na ciljnom disku, jer će taj disk biti potpuno izbrisan. To je isto kao da pokušavate prepiliti granu na kojoj sjedite!\n" +"\n" +"Premjestite sliku na drugu lokaciju i pokušajte ponovno." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Sigurno je ostaviti ovu opciju omogućenu čak i ako imate TPM ili više RAM-a, jer ova opcija samo zaobilazi zahtjeve za postavljanje i zapravo ne sprječava Windows da koristi sav dostupan hardver." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Da bi ova opcija radila, mreža/internet MORA biti isključeni tijekom instalacije!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Automatski odgovori s 'ne' na pitanja tijekom postavljanju sustava Windowsa koja se odnose na dijeljenje podataka s Microsoftom, umjesto da to pita korisnika." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Ovu opciju biste trebali ostaviti omogućenu, osim ako vam ne smeta da 'Windows To Go' pristupa internim diskovima i tiho izvršava nepovratne nadogradnje datotečnog sustava." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Automatski stvori lokalni račun s navedenim korisničkim imenom, koristeći praznu lozinku koju će trebati promijeniti pri prvoj prijavi." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Duplicirajte regionalne postavke s ovog računala (tipkovnica, vremenska zona, valuta), umjesto da pita korisnika." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Ne šifrirajte sistemski disk, osim ako to korisnik izričito zatraži." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Koristite ovu opciju samo ako znate što je S-Mode i razumijete da vaš sustav možda bude zaključan u S-Modeu čak i nakon što potpuno izbrišete i ponovno instalirate Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Koristite ovu opciju ako sustav na koji planirate instalirati Windows koristi potpuno ažurirane Secure Boot certifikate. Ako je potrebno, možete pogledati u korištenje 'Mosby' za ažuriranje sustava." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Koristite ovu opciju ako želite opozvati dodatne potencijalno nesigurne Windows bootloadere, ali s mogućnošću sprječavanja pokretanja standardnih Windows medija." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"kvalitete života\" poboljšanja: Onemogućite većinu neželjenih značajki koje Microsoft pokušava forcirati na korisnicima." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Ako koristite ovu opciju, obavezno odspojite svaki disk od ciljnog računala, osim onog na koji želite instalirati Windows, i ne ostavljajte medij priključen u bilo koj računalo koje ne želite izbrisati." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/hu-HU.po b/res/loc/po/hu-HU.po index 3a571227..58a58d8b 100644 --- a/res/loc/po/hu-HU.po +++ b/res/loc/po/hu-HU.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-09 13:01+0200\n" -"PO-Revision-Date: 2024-05-10 10:46+0100\n" +"POT-Creation-Date: 2026-03-26 23:05+0100\n" +"PO-Revision-Date: 2026-03-27 00:00+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: hu_HU\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Hungarian (Magyar)\n" "X-Rufus-LCID: 0x040e\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -111,7 +111,7 @@ msgstr "A Rufus névjegye" #. • IDD_ABOUTBOX → IDC_ABOUT_LICENSE msgid "License" -msgstr "Licensz" +msgstr "Licenc" #. • IDD_ABOUTBOX → IDOK msgid "OK" @@ -119,7 +119,7 @@ msgstr "" #. • IDD_LICENSE → IDD_LICENSE msgid "Rufus License" -msgstr "Rufus Licensz" +msgstr "Rufus Licenc" #. • IDD_NOTIFICATION → IDC_MORE_INFO msgid "More information" @@ -309,7 +309,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -847,7 +847,7 @@ msgstr "Kikapcsolva" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Állítsd be a tartós partíció méretét a Live USB adathordozóhoz. A méret 0-ra állításával letiltod a tartós partíciót." @@ -889,13 +889,13 @@ msgstr "Egy másik alkalmazás vagy folyamat használja ezt az eszközt. Így is #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"A Rufus észlelte, hogy egy 1809-es verziójú ISO alapján kíséreltél meg egy Windows To Go meghajtót készíteni\n" +"A Rufus észlelte, hogy egy 1809-es verziójú ISO alapján kíséreltél meg egy Windows To Go meghajtót készíteni.\n" "\n" "Egy *MICROSOFT HIBA* miatt ez a meghajtó a Windows indulása során össze fog omlani (kék halál), hacsak nem cseréled ki manuálisan a 'WppRecorder.sys' fájlt egy 1803-as verzióra.\n" "\n" @@ -1797,6 +1797,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Nem lehet megnyitni vagy olvasni ezt: '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "SkuSiPolicy.p7b alkalmazása a telepítésen (Lásd: KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "QoL fejlesztések (Ne erőltesse ezeket: Copilot, OneDrive, Outlook, Gyors rendszerindítás stb.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Windows testreszabás alkalmazása: %s" @@ -1847,17 +1855,17 @@ msgstr "Tartós naplózás" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Az MS-DOS telepítéséhez egy további fájlt ('diskcopy.dll') kell letölteni a Microsofttól:\n" +"A funkció használatához egy további fájlt ('%s') kell letölteni a Microsofttól:\n" "- Válaszd az 'Igen' gombot az internethez történő kapcsolódáshoz, és a fájl letöltéséhez\n" "- Válaszd a 'Nem' gombot a művelet megszakításához\n" "\n" -"Megjegyzés: A fájl a program mappájába lesz letöltve, és automatikusan újra lesz használva, ha létezik." +"Megjegyzés: A fájl az alkalmazás mappájába lesz letöltve, és automatikusan újra lesz használva, ha létezik." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1921,6 +1929,118 @@ msgstr "Archív fájlok kibontása: %s" msgid "Use Rufus MBR" msgstr "Rufus MBR használata" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "A 'Windows CA 2023' tanúsítvánnyal aláírt rendszerbetöltők használata (Kompatibilis célszámítógép szükséges)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "UEFI rendszerbetöltő visszavonásának ellenőrzése..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "UEFI DBX frissítések keresése..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "DBX frissítés elérhető" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"A Rufus talált frissített verziót az UEFI Secure Boot visszavonási ellenőrzéséhez használt DBX fájlokból. Szeretnéd letölteni ezt a frissítést?\n" +"- Válaszd az 'Igen' gombot az internethez történő kapcsolódáshoz, és a fájlok letöltéséhez\n" +"- Válaszd a 'Nem' gombot a művelet megszakításához\n" +"\n" +"Megjegyzés: A fájlok az alkalmazás mappájába lesznek letöltve, és automatikusan újra lesznek használva, ha léteznek." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠CSENDESEN⚠ törölje a lemezt és telepítse ezt:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"A \"csendes\" Windows telepítési beállítást választottad.\n" +"\n" +"Ez egy haladó szintű beállítás azok számára, akik olyan adathordozót szeretnének készíteni, ami nem tesz fel kérdéseket a Windows telepítése során, ezért FELTÉTEL NÉLKÜL TÖRLI az elsőként észlelt lemezt a célrendszeren. Ha nem vagy elővigyázatos, ennek a beállításnak a használata VISSZAFORDÍTHATATLAN ADATVESZTÉST okozhat!\n" +"\n" +"Ha nem ezt szeretnéd, akkor válaszd a 'Nem' gombot a visszalépéshez, és töröld ezt a beállítást.\n" +"Egyébként, ha az 'Igen' gombot választod, akkor beleegyezel abba, hogy bármilyen adatvesztésért teljes mértékben TÉGED fog terhelni a felelősség." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Nem támogatott kép hely" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Nem használhatsz célmeghajtón lévő képet, mivel az a meghajtó teljesen törölve lesz. Ez ugyanaz, mint magad alatt vágni a fát!\n" +"\n" +"Kérlek, helyezd át a képet egy másik helyre, és próbáld újra." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Ezt a beállítást biztonságosan engedélyezve hagyhatod akkor is, ha rendelkezel TPM-mel vagy több RAM-mal, mivel ez a beállítás csak a telepítési követelményeket kerüli meg, és valójában nem akadályozza meg, hogy a Windows az összes elérhető hardvert használja." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Ezen funkció működéséhez a hálózatot/internetet le KELL választanod a telepítés idejére!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Automatikus 'nem' válasz a Windows telepítő azon kérdéseire, amelyek az adatok Microsoft számára történő adatmegosztással kapcsolatosak, a felhasználó megkérdezése helyett." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Hagyd bekapcsolva ezt a beállítást, kivéve, ha beleegyezel abba, hogy a 'Windows To Go' hozzáférjen a belső lemezekhez és csendben visszafordíthatatlan fájlrendszer-frissítéseket hajtson végre." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Automatikusan létrehoz egy helyi fiókot a megadott felhasználónévvel, üres jelszót használva, amit a következő belépéskor meg kell változtatni." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "A területi beállítások másolása erről a számítógépről (billentyűzet, időzóna, pénznem), a felhasználó megkérdezése helyett." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Ne titkosítsa a rendszerlemezt amíg a felhasználó kifejezetten nem kéri." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Csak akkor használd ezt a beállítást, ha tudod, mi az az S mód, és megértetted, hogy a rendszered beragadhat az S módba még a Windows teljes törlése és újratelepítése esetén is." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Használd ezt a beállítást, ha olyan rendszerre szeretnéd telepíteni a Windows-t, ami teljesen naprakész Secure Boot tanúsítványokat használ. Szükség esetén a 'Mosby' segítségével frissítheted a rendszeredet." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Használd ezt a beállítást, ha szeretnél visszavonni további, potenciálisan nem biztonságos Windows rendszerbetöltőket. Emiatt előfordulhat, hogy a sztenderd Windows adathordozó sem fog elindulni." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"Quality of Life\" fejlesztések: Letiltja a legtöbb nem kívánt funkciót, amit a Microsoft próbál ráerőltetni a végfelhasználókra." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Ha ezt a beállítást használod, győződj meg arról, hogy minden lemezt leválasztottál a célszámítógépről, kivéve azt az egyet, amelyikre a Windows telepítését szeretnéd, és ne hagyd az adathordozót csatlakoztatva olyan számítógéphez, amit nem akarsz törölni." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/id-ID.po b/res/loc/po/id-ID.po index cbb61a28..104a7a29 100644 --- a/res/loc/po/id-ID.po +++ b/res/loc/po/id-ID.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 3.22\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2023-03-16 16:28+0700\n" -"PO-Revision-Date: 2023-03-17 14:13+0000\n" +"POT-Creation-Date: 2026-04-05 13:10+0700\n" +"PO-Revision-Date: 2026-04-05 22:37+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: id_ID\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Indonesian (Bahasa Indonesia)\n" "X-Rufus-LCID: 0x0421\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -54,13 +54,11 @@ msgstr "Daftar USB Hard Drives" msgid "Add fixes for old BIOSes (extra partition, align, etc.)" msgstr "Tambah perbaikan untuk BIOS lama (partisi ekstra, penyesuaian, dll.)" -#. • IDD_DIALOG → IDC_RUFUS_MBR +#. • IDD_DIALOG → IDC_UEFI_MEDIA_VALIDATION #. -#. 'MBR': See http://en.wikipedia.org/wiki/Master_boot_record -#. Rufus can install it's own custom MBR (the Rufus MBR), which also allows users to -#. specify a custom disk ID for the BIOS. The tooltip for this control is MSG_167. -msgid "Use Rufus MBR with BIOS ID" -msgstr "Gunakan MBR Rufus dengan ID BIOS" +#. It is acceptable to drop the "runtime" if you are running out of space +msgid "Enable runtime UEFI media validation" +msgstr "Aktifkan validasi media UEFI runtime" #. • IDD_DIALOG → IDS_FORMAT_OPTIONS_TXT msgid "Format Options" @@ -72,7 +70,7 @@ msgstr "Sistem berkas" #. • IDD_DIALOG → IDS_CLUSTER_SIZE_TXT msgid "Cluster size" -msgstr "Ukuran klatser" +msgstr "Ukuran klaster" #. • IDD_DIALOG → IDS_LABEL_TXT msgid "Volume label" @@ -310,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -698,7 +696,7 @@ msgid "" "\n" "Note: The file will be downloaded in the current directory and once a '%s' exists there, it will be reused automatically." msgstr "" -"%s atau yang lebih baru memerlukan berkas '%s' untuk diinstal.\n" +"%s atau yang lebih baru memerlukan berkas '%s' untuk diinstal.\n" "Karena berkas ini berukuran lebih dari 100 KB, dan selalu ada pada ISO images %s, berkas ini tidak tersematkan didalam Rufus.\n" "\n" "Rufus dapat mengunduh berkas yang hilang ini untuk Anda:\n" @@ -848,7 +846,7 @@ msgstr "Tanpa persisten" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Atur ukuran partisi persisten untuk media USB live. Mengatur ukuran ke 0 akan menonaktifkan partisi persisten." @@ -890,7 +888,7 @@ msgstr "Program atau proses lain sedang mengakses drive ini. Apakah Anda tetap i #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -1043,16 +1041,8 @@ msgid "Check this box to allow the display of international labels and set a dev msgstr "Centang kotak ini untuk menampilkan label internasional dan menyetel ikon perangkat (membuat autorun.inf)" #. • MSG_167 -msgid "Install an MBR that allows boot selection and can masquerade the BIOS USB drive ID" -msgstr "Menginstal MBR memungkinkan untuk boot dan dapat memanipulasi ID perangkat USB di BIOS" - -#. • MSG_168 -msgid "" -"Try to masquerade first bootable USB drive (usually 0x80) as a different disk.\n" -"This should only be necessary if you install Windows XP and have more than one disk." -msgstr "" -"Mencoba menyamarkan perangkat USB bootable pertama (biasanya 0x80) sebagai disk yang berbeda.\n" -"Biasanya hanya diperlukan jika Anda memasang Windows XP dan memiliki lebih dari satu disk." +msgid "Install a UEFI bootloader, that will perform MD5Sum file validation of the media" +msgstr "Instal bootloader UEFI yang akan memvalidasi MD5Sum dari media" #. • MSG_169 msgid "" @@ -1802,6 +1792,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Tidak dapat membuka atau membaca '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Aktifkan SkuSiPolicy.p7b ketika instalasi (lihat KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Peningkatan QoL (Tidak memaksakan Copilot, OneDrive, Outlook, Fast Startup, dll.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Menerapkan kustomisasi Windows: %s" @@ -1850,6 +1848,192 @@ msgstr "Matikan enkripsi perangkat otomatis BitLocker" msgid "Persistent log" msgstr "Catatan yang tetap/persistent" +#. • MSG_337 +msgid "" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" +"- Select 'Yes' to connect to the Internet and download it\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The file will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Berkas tambahan ('%s') dari Microsoft diperlukan untuk menggunakan fitur tersebut\n" +"- Pilih 'Ya' untuk mengunduh\n" +"- Pilih 'Tidak' untuk membatalkan\n" +"\n" +"Catatan: Berkas tersebut akan disimpan pada folder aplikasi dan akan digunakan di kemudian hari secara otomatis." + +#. • MSG_338 +msgid "Revoked UEFI bootloader detected" +msgstr "Terdeteksi pembatalan bootloader UEFI" + +#. • MSG_339 +msgid "" +"Rufus detected that the ISO you have selected contains a UEFI bootloader that has been revoked and that will produce %s, when Secure Boot is enabled on a fully up to date UEFI system.\n" +"\n" +"- If you obtained this ISO image from a non reputable source, you should consider the possibility that it might contain UEFI malware and avoid booting from it.\n" +"- If you obtained it from a trusted source, you should try to locate a more up to date version, that will not produce this warning." +msgstr "" +"Rufus mendeteksi bahwa ISO yang dipilih terdapat bootloader UEFI yang dibatalkan dan dapat memberikan peringatan %s, ketika Secure Boot diaktifkan pada UEFI system terbaru.\n" +"\n" +"- Kalau berkas ISO ini didapatkan dari sumber yang tidak terpercaya, terdapat kemungkinan ada malware UEFI dan hindarilah menggunakan image ini.\n" +"- Kalau berkas ISO ini didapatkan dari sumber yang terpercaya, carilah versi yang lebih baru yang tidak memberikan peringatan ini." + +#. • MSG_340 +msgid "a \"Security Violation\" screen" +msgstr "layar \"Security Violation\"" + +#. • MSG_341 +msgid "a Windows Recovery Screen (BSOD) with '%s'" +msgstr "Windows Recovery Screen (BSOD) dengan '%s'" + +#. • MSG_342 +msgid "Compressed VHDX Image" +msgstr "VHDX Image terkompresi" + +#. • MSG_343 +msgid "Uncompressed VHD Image" +msgstr "VHDX Image tidak terkompresi" + +#. • MSG_344 +msgid "Full Flash Update Image" +msgstr "Full Flash Update Image" + +#. • MSG_345 +msgid "" +"Some additional data must be downloaded from Microsoft to use this functionality:\n" +"- Select 'Yes' to connect to the Internet and download it\n" +"- Select 'No' to cancel the operation" +msgstr "" +"Data tambahan perlu diunduh dari Microsoft untuk menggunakan fungsi ini:\n" +"- Pilih 'Ya' untuk menyambungkan ke Internet dan mencoba untuk mengunduhnya\n" +"- Pilih 'Tidak' untuk membatalkan operasi" + +#. • MSG_346 +msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" +msgstr "Batasi Windows menjadi S-Mode (TIDAK KOMPATIBEL dengan bypass akun online)" + +#. • MSG_347 +msgid "Expert Mode" +msgstr "Mode Expert" + +#. • MSG_348 +msgid "Extracting archive files: %s" +msgstr "Mengekstrak berkas arsip: %s" + +#. • MSG_349 +msgid "Use Rufus MBR" +msgstr "Gunakan Rufus MBR" + +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Gunakan bootloader 'Windows CA 2023' (Membutuhkan PC yang kompatibel)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Sedang cek pembatalan bootloader UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Sedang cek pembaruan UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Pembaruan DBX tersedia" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus menemukan pembaruan berkas DBX yang digunakan untuk mengecek pembatalan UEFI Secure Boot. Apakah anda ingin mengunduhnya?\n" +"- Pilih 'Ya' untuk menyambungkan ke Internet dan mencoba untuk mengunduhnya\n" +"- Pilih 'Tidak' untuk membatalkan operasi" + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "Hapus disk secara ⚠SILENT⚠ dan instal:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Anda memilih untuk menggunakan opsi instalasi Windows secara \"silent\".\n" +"\n" +"Ini adalah pilihan lanjutan, yang diperuntukkan untuk membuat media yang tidak memberikan pilihan ketika instalasi Windows dan akan MENGHAPUS TANPA TERKECUALI disk yang terdeteksi pertama kali pada system. Kalau tidak berhati-hati, menggunakan pilihan ini akan menyebabkan KEHILANGAN DATA PERMANEN!\n" +"\n" +"Kalau Anda tidak menginginkan ini, pilih 'Tidak' untuk kembali dan membatalkan pilihan tersebut.\n" +"Kalau Anda memilih 'Ya', Anda yakin dan bertanggungjawab untuk kehilangan data yang terjadi." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Anda tidak dapat menggunakan berkas image yang terletak pada penyimpanan tujuan, karena penyimpanan tersebut akan dihapus seluruhnya.\n" +"\n" +"Tolong pindahkan berkas image tersebut ke lokasi yang lain dan coba lagi." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Pilihan ini aman untuk digunakan walaupun terdapat TPM atau RAM berlebih, karena pilihan ini hanya melewati persyaratan awal dan tidak menghentikan Windows untuk menggunakan seluruh hardware yang tersedia." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Supaya pilihan ini dapat digunakan, Anda HARUS memutuskan Internet ketika instalasi~" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Secara otomatis akan memilih 'Tidak' pada pertanyaan setup Windows terkait dengan pembagian data dengan Microsoft, tanpa menanyakan pada user." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Anda sebaiknya menyalakan opsi ini, kecuali jika Anda ingin 'Windows To Go' untuk mengakses disk internal dan melakukan pembaruan sistem yang tidak dapat diubah secara diam-diam." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Buat akun local dengan nama user pilihan, menggunakan password kosong yang perlu diubah di proses logon selanjutnya." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Gunakan pengaturan regional dari PC ini (keyboard, zona waktu, mata uang), tanpa menanyakan kepada user." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Tidak mengenkripsi disk sistem, kecuali diminta oleh user." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Gunakan pilihan ini jika Anda mengetahui S-Mode dan mengerti bahwa sistem Anda akan dikunci menjadi S-Mode walaupun sudah menghapus dan instal ulang Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Gunakan pilihan ini jika Anda ingin menginstal Windows menggunakan sertifikat Secure Boot terbaru. Jika dibutuhkan, Anda dapat menggunakan 'Mosby\" untuk memperbarui sistem." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Gunakan pilihan ini jika Anda ingin membatalkan penggunaan bootloader Windows yang tidak aman, tapi dengan potensi mencegah media Windows standar untuk booting." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Peningkatan \"Quality of Life\": menonaktifkan fitur Microsoft yang tidak diinginkan." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Jika Anda menggunakan pilihan ini, mohon untuk mencabut semua disk dari PC tujuan agar tidak terjadi kehilangan data, kecuali disk yang digunakan untuk menginstal Windows." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/it-IT.po b/res/loc/po/it-IT.po index 911eb83a..9bfc8fd9 100644 --- a/res/loc/po/it-IT.po +++ b/res/loc/po/it-IT.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-12 12:06+0100\n" -"PO-Revision-Date: 2024-05-12 12:12+0100\n" +"POT-Creation-Date: 2026-04-18 11:43-0700\n" +"PO-Revision-Date: 2026-04-18 13:50-0700\n" "Last-Translator: \n" "Language-Team: \n" "Language: it_IT\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Italian (Italiano)\n" "X-Rufus-LCID: 0x0410, 0x0810\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -66,7 +66,7 @@ msgstr "Opzioni formattazione" #. • IDD_DIALOG → IDS_FILE_SYSTEM_TXT msgid "File system" -msgstr "" +msgstr "Sistema di file" #. • IDD_DIALOG → IDS_CLUSTER_SIZE_TXT msgid "Cluster size" @@ -115,7 +115,7 @@ msgstr "Licenza" #. • IDD_ABOUTBOX → IDOK msgid "OK" -msgstr "" +msgstr "OK" #. • IDD_LICENSE → IDD_LICENSE msgid "Rufus License" @@ -133,7 +133,7 @@ msgstr "Sì" #. • IDD_NOTIFICATION → IDNO #. • MSG_009 msgid "No" -msgstr "" +msgstr "No" #. • IDD_LOG → IDD_LOG msgid "Log" @@ -187,7 +187,7 @@ msgstr "Informazioni versione" #. • IDD_NEW_VERSION → IDC_DOWNLOAD #. • MSG_040 msgid "Download" -msgstr "" +msgstr "Scarica" #. • MSG_001 msgid "Other instance detected" @@ -286,31 +286,31 @@ msgstr "byte" #. #. *Short* version of the kilobyte size suffix msgid "KB" -msgstr "" +msgstr "KB" #. • MSG_022 #. #. *Short* version of the megabyte size suffix msgid "MB" -msgstr "" +msgstr "MB" #. • MSG_023 #. #. *Short* version of the gigabyte size suffix msgid "GB" -msgstr "" +msgstr "GB" #. • MSG_024 #. #. *Short* version of the terabyte size suffix msgid "TB" -msgstr "" +msgstr "TB" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" -msgstr "" +msgstr "PB" #. • MSG_027 msgid "kilobytes" @@ -336,7 +336,7 @@ msgstr "BIOS (o UEFI CSM)" #. • MSG_032 msgid "UEFI (non CSM)" -msgstr "" +msgstr "UEFI (senza CSM)" #. • MSG_033 msgid "BIOS or UEFI" @@ -769,8 +769,7 @@ msgstr "" "Poiché le nuove versioni di Syslinux non sono compatibili con le precedenti e non sarebbe possibile per Rufus includerle tutte, devono essere scaricati da internet due file aggiuntivi ('ldlinux.sys' e 'ldlinux.bss'):\n" "- Seleziona 'Sì' per collegarti a internet e scaricare questi due file\n" "- Seleziona 'No' per annullare l'operazione\n" -"\n" -"Nota: questi file verranno scaricati nella cartella corrente dell'applicazione e se presenti verranno riusati automaticamente." +"Nota: i file verranno scaricati nella cartella attuale dell'applicazione e verranno riusati automaticamente se presenti." #. • MSG_115 msgid "Download required" @@ -790,14 +789,14 @@ msgid "" "\n" "Note: The file will be downloaded in the current application directory and will be reused automatically if present. If no match can be found online, then the default version will be used." msgstr "" -"Questa immagine usa Grub %s ma l'applicazione include solo i file di installazione per Grub %s.\n" +"Questa immagine utilizza Grub %s, ma l'applicazione include solo i file di installazione per Grub %s.\n" "\n" -"Questa differente versione di Grub potrebbe non essere compatibile con l'altra, e non è possibile includere i file di installazione. Rufus tenterà di trovare una versione dei file di installazione di Grub ('core.img') che corrisponda a quella dell'immagine.\n" -"- Seleziona 'Sì' per collegarti a internet e tentare il download\n" -"- Seleziona 'No' per usare la versione predefinita di Rufus\n" -"- Seleziona 'Annulla' per interrompere l'operazione.\n" +"Poiché le diverse versioni di Grub potrebbero non essere compatibili tra loro e non è possibile includerle tutte, Rufus tenterà di individuare una versione del file di installazione di Grub (\"core.img\") che corrisponda a quella presente nella tua immagine:\n" +"- Seleziona “Sì” per connetterti a Internet e tentare di scaricarlo\n" +"- Seleziona “No” per utilizzare la versione predefinita di Rufus\n" +"- Seleziona “Annulla” per interrompere l'operazione\n" "\n" -"Note: i file verranno scaricati nella cartella attuale dell'applicazione e verranno riusati automaticamente se presenti. Se non sarà trovata online nessuna corrispondenza, verrà usata la versione predefinita." +"Nota: il file verrà scaricato nella directory corrente dell'applicazione e verrà riutilizzato automaticamente se presente. Se online non viene trovata alcuna corrispondenza, verrà utilizzata la versione predefinita." #. • MSG_117 msgid "Standard Windows installation" @@ -809,7 +808,7 @@ msgstr "Installazione Windows standard" #. http://en.wikipedia.org/wiki/Windows_To_Go in your language. #. Otherwise, you may add a parenthesis eg. "Windows To Go ()" msgid "Windows To Go" -msgstr "" +msgstr "Windows To Go" #. • MSG_119 msgid "advanced drive properties" @@ -846,7 +845,7 @@ msgstr "No persistenza" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "" "Imposta la dimensione della partizione persistente per il media USB live.\n" @@ -893,17 +892,17 @@ msgstr "" #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus ha rilevato che stai tentando di creare un media 'Windows To Go' basato su una ISO 1809.\n" +"Rufus ha rilevato che stai tentando di creare un supporto “Windows To Go” basato su un'immagine ISO della versione Windows 10 1809.\n" "\n" -"A causa di un *BUG MICROSOFT*, questo supporto si arresta in modo anomalo durante l'avvio di Windows (Blue Screen Of Death), a meno che non si sostituisca manualmente il file 'WppRecorder.sys' con una versione 1803.\n" +"A causa di un *BUG DI MICROSOFT*, questo supporto andrà in crash durante l'avvio di Windows (BSOD), a meno che non sostituisca manualmente il file “WppRecorder.sys” con una versione 1803.\n" "\n" -"Nota inoltre che il motivo per cui Rufus non può risolvere automaticamente questo problema è che 'WppRecorder.sys' è un file protetto da copyright di Microsoft, quindi non è possibile incorporare legalmente una copia del file nell'applicazione..." +"Tieni inoltre presente che il motivo per cui Rufus non può risolvere automaticamente questo problema è che “WppRecorder.sys” è un file protetto da copyright di Microsoft, quindi non possiamo legalmente incorporarne una copia nell'applicazione..." #. • MSG_134 msgid "" @@ -921,7 +920,7 @@ msgstr "Versione" #. • MSG_136 msgid "Release" -msgstr "" +msgstr "Pubblicazione" #. • MSG_137 msgid "Edition" @@ -1800,6 +1799,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Impossibile aprire o leggere '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Applicare SkuSiPolicy.p7b all'inizio dell'installazione (vedere KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Miglioramenti della QoL (Non forzare Copilot, OneDrive, Outlook, avvio rapido, ecc.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Applicando personalizzazione Windows: %s" @@ -1850,17 +1857,17 @@ msgstr "Log persistente" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Per installare MS-DOS è necessario scaricare da Microsoft un file aggiuntivo (\"diskcopy.dll\"):\n" +"Per utilizzare questa funzionalità, è necessario scaricare un file aggiuntivo ('%s') da Microsoft:\n" "- Seleziona 'Sì' per connettersi ad internet e scaricarlo\n" "- Seleziona 'No' per annullare l'operazione\n" "\n" -"Nota: il file verrà scaricato nella cartella dell'applicazione e se presente verrà riutilizzato automaticamente." +"Nota: il file verrà scaricato nella directory dell'applicazione e, se presente, verrà riutilizzato automaticamente." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1924,6 +1931,118 @@ msgstr "Estrazione file archivio: %s" msgid "Use Rufus MBR" msgstr "Usa MBR Rufus" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Utilizza bootloader firmati 'Windows CA 2023' (Richiede PC compatibile)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Verifica della revoca del bootloader UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Verifica degli aggiornamenti UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Aggiornamento DBX disponibile" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus ha trovato una verzione aggiornamentato dei fili DBX usati per eseguire la verifica di revoca per UEFI Secure Boot. Vuoi scaricare questo aggiornamento?\n" +"- Seleziona \"Sì\" per connettere all'Internet e scaricare questo contenuto\n" +"- Seleziona \"No\" per cancellare l'operazione\n" +"\n" +"Nota: " + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "Cancella disco e installa ⚠SILENZIOSA⚠:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes', you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Hai scelto di utilizzare l'opzione di installazione “silenziosa” di Windows.\n" +"\n" +"Si tratta di un'opzione avanzata, riservata a chi desidera creare un supporto che non richieda l'intervento dell'utente durante l'installazione di Windows e che, di conseguenza, CANCELLI INCONDIZIONATAMENTE il primo disco rilevato sul sistema di destinazione. Se non presti la dovuta attenzione, l'utilizzo di questa opzione può causare una PERDITA IRREVERSIBILE DI DATI!\n" +"\n" +"Se non è questo ciò che desideri, seleziona “No” per tornare indietro e deselezionare l'opzione.\n" +"Altrimenti, selezionando “Sì”, accetti che l'intera responsabilità per qualsiasi perdita di dati ricada interamente su di TE." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Percorso immagine non sopportato." + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Non puoi usare un'immagine che si trova nell'unità di destinazione, poiché tale unità verrà completamente formattata. È come cercare di segare il ramo su cui sei seduto!\n" +"\n" +"Sposta l'immagine in una posizione diversa e riprova." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "È consigliabile lasciare questa opzione attivata anche se si dispone di un TPM o di più RAM, poiché essa si limita a ignorare i requisiti di configurazione e non impedisce effettivamente a Windows di utilizzare tutto l'hardware disponibile." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Affinché questa opzione funzioni, è NECESSARIO disconnettere la rete/Internet durante l'installazione!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Rispondere automaticamente “no” alle domande della procedura di installazione di Windows relative alla condivisione dei dati con Microsoft, invece di chiedere conferma all'utente." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Ti consigliamo di lasciare questa opzione abilitata, a meno che tu non abbia nulla in contrario al fatto che \"Windows To Go\" acceda ai dischi interni ed esegua in modo silenzioso aggiornamenti irreversibili del file system." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Crea automaticamente un account locale con il nome utente specificato, utilizzando una password vuota che dovrà essere modificata al prossimo accesso." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Duplica le impostazioni regionali di questo PC (tastiera, fuso orario, valuta), invece di chiedere conferma all'utente." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Don't encrypt the system disk, unless explicitly requested by the user." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Utilizza questa opzione solo se sai cos'è la modalità S e sei consapevole del fatto che il tuo sistema potrebbe rimanere bloccato in modalità S anche dopo aver cancellato completamente e reinstallato Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Utilizza questa opzione se il sistema su cui intendi installare Windows utilizza certificati Secure Boot completamente aggiornati. Se necessario, puoi valutare l'utilizzo di \"Mosby\" per aggiornare il tuo sistema." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Utilizza questa opzione se desideri revocare ulteriori bootloader di Windows potenzialmente non sicuri, tenendo presente che ciò potrebbe impedire l'avvio anche dei supporti standard di Windows." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Miglioramenti alla “QoL”: disattiva la maggior parte delle funzionalità indesiderate che Microsoft sta cercando di imporre agli utenti finali." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Se si utilizza questa opzione, assicurarsi di scollegare tutti i dischi dal PC di destinazione, tranne quello su cui si desidera installare Windows, e di non lasciare il supporto collegato a nessun PC che non si desidera cancellare." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/ja-JP.po b/res/loc/po/ja-JP.po index 751de4f9..a49b2727 100644 --- a/res/loc/po/ja-JP.po +++ b/res/loc/po/ja-JP.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-09 21:04+0900\n" -"PO-Revision-Date: 2024-05-09 22:07+0900\n" +"POT-Creation-Date: 2026-04-03 17:56+0900\n" +"PO-Revision-Date: 2026-04-10 21:59+0900\n" "Last-Translator: \n" "Language-Team: \n" "Language: ja_JP\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Japanese (日本語)\n" "X-Rufus-LCID: 0x0411\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -847,7 +847,7 @@ msgstr "保存領域なし" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "ライブ USB メディアの保存領域のサイズを設定します。 サイズを 0 に設定すると保存領域が無効になります。保存領域は「Persistent パーティション」「Persistence 機能」とも言われます。" @@ -889,13 +889,13 @@ msgstr "別のプログラムまたはプロセスがこのドライブにアク #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"1809 バージョンの ISO を使用して Windows To Go のメディアを作成しようとしていることを検出しました。\n" +"Rufusは1809 バージョンの ISO を使用して Windows To Go のメディアを作成しようとしていることを検出しました。\n" "\n" "このメディアは、“WppRecorder.sys” を 1803 バージョンのファイルに手動で置き換えない限り、Windowsのブート中にクラッシュ (ブルースクリーン) します。これは * Microsoftのバグ * によるものです。\n" "\n" @@ -1799,6 +1799,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "'%s'の読み取り" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "インストール時にSkuSiPolicy.p7bを適応する(KB5042562を参照)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "利便性向上パッチ(Microsoftの各種ソフトウェアの無効化)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Windowsカスタムを適応: %s" @@ -1849,13 +1857,13 @@ msgstr "永続ログ" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"MS-DOSをインストールするにはMicrosoftから追加のファイル(diskcopy.dll)をダウンロードする必要があります。\n" +"この機能を使用するには、Microsoft から追加のファイル ('%s') をダウンロードする必要があります:\n" "- はいを選択すると、インターネットに接続しダウンロードします。\n" "- いいえを選択すると、キャンセルします\n" "\n" @@ -1923,6 +1931,118 @@ msgstr "ファイルを展開中: %s" msgid "Use Rufus MBR" msgstr "Rufus MBRを使用する" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Windows CA 2023署名のブートローダーを使用する (対応するPCが必要です)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "UEFIブートローダーの有効性を確認中..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "UEFI DBXのアップデートをチェック中..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "DBXのアップデートが利用可能です。" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"UEFIセキュアブートの有効性チェックに使用するDBXファイルの新しいバージョンを発見しました。ダウンロードしますか?\n" +"- はいを選択すると、インターネットに接続しダウンロードします。\n" +"- いいえを選択すると、キャンセルします\n" +"\n" +"注意:ファイルはアプリケーションのディレクトリへダウンロードされ、今後自動的に再利用されます。" + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠サイレント⚠ ディスクの削除とインストール:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Windowsのサイレントインストールオプションを選択しました。\n" +"\n" +"これはWindowsのインストールを完全自動化するための高度なオプションであり、システムが最初に検知したディスクを無条件に削除します。操作を誤ると予期せぬデータ喪失を引き起こす可能性があります!\n" +"\n" +"このオプションを選択したことによるいかなるデータの喪失も自己責任となることに同意する場合、[はい]を選択してください。\n" +"同意しない場合は[いいえ]を選択し、このオプションのチェックを外してください。" + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "サポートされていないイメージのロケーション" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"ターゲットドライブに配置されたファイルは書き込み時に完全に削除されるため、このファイルを使用することはできません。\n" +"\n" +"ファイルを移動し再試行してください。" + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "このオプションはセットアップの要件のみをスキップし、Windowsの機能には影響を与えないため、TPMや十分なRAMがある場合でも有効化しておくことが推奨されます。" + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "このオプションを利用するためにはインストール時にネットワークから確実に接続解除されなければなりません!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Windowsのインストール時にMicrosoftのデータ収集オプションに自動的に[いいえ]と回答します。" + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Windows To Goが内部ディスクにアクセスし不可逆なアップグレードを行うことを了承しない限りこのオプションを有効にすることが推奨されます。" + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "指定されたユーザー名で自動的にローカルアカウントを作成します。パスワードは空欄の為、ログイン時に変更が必要です。" + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "このPCの地域設定(キーボード、タイムゾーン、通貨設定)をコピーすることでユーザー入力を省略します。" + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "ユーザーの明示的な操作がない限りシステムディスクを暗号化しません。" + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Sモードの仕組みとWindowsをクリーンインストールしてもSモードが残る可能性を理解している場合のみこのオプションを有効にしてください。" + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "最新のセキュアブート証明でWindowsを使用する場合はこのオプションを有効化してください。必要に応じてMosbyを使ってシステムを更新することもできます。" + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "危険な可能性のあるWindowsブートローダーを無効化したい場合このオプションを有効化してください。ただし、通常のWindowsメディアが起動しなくなる可能性があります。" + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Microsoftが強制する不要な機能の大半を無効化することにより利便性を向上します。" + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "このオプションを使用する場合はWindowsをインストールするディスク以外を全て取り外して、削除しないメディアを残さないでください。" + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/ko-KR.po b/res/loc/po/ko-KR.po index c066dbca..b69391fe 100644 --- a/res/loc/po/ko-KR.po +++ b/res/loc/po/ko-KR.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-29 04:19+0900\n" -"PO-Revision-Date: 2024-04-29 05:50+0900\n" +"POT-Creation-Date: 2026-04-12 03:37+0900\n" +"PO-Revision-Date: 2026-04-12 03:58+0900\n" "Last-Translator: \n" "Language-Team: \n" "Language: ko_KR\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Korean (한국어)\n" "X-Rufus-LCID: 0x0412\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -133,7 +133,7 @@ msgstr "예" #. • IDD_NOTIFICATION → IDNO #. • MSG_009 msgid "No" -msgstr "아니오" +msgstr "아니요" #. • IDD_LOG → IDD_LOG msgid "Log" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -574,7 +574,7 @@ msgstr "" "\n" "Rufus는 이 문제를 해결하기 위해 최신 버전을 다운로드할 수 있습니다:\n" "- 인터넷에 연결하고 파일을 다운로드하려면 '예'를 선택합니다\n" -"- 기존 ISO 파일을 수정하지 않은 상태로 두려면 '아니오'를 선택합니다\n" +"- 기존 ISO 파일을 수정하지 않은 상태로 두려면 '아니요'를 선택합니다\n" "무엇을 해야 할지 모르면 '예'를 선택해야 합니다.\n" "\n" "참고: 새 파일이 현재 디렉터리에 다운로드되고 '%s'가 있으면 자동으로 재사용됩니다." @@ -701,7 +701,7 @@ msgstr "" "\n" "Rufus가 누락된 파일을 다운로드할 수 있습니다:\n" "- 인터넷에 연결하고 파일을 다운로드하려면 '예'를 선택합니다\n" -"- 나중에 드라이브에 이 파일을 수동으로 복사하려면 '아니오'를 선택합니다\n" +"- 나중에 드라이브에 이 파일을 수동으로 복사하려면 '아니요'를 선택합니다\n" "\n" "참고: 파일이 현재 디렉터리에 다운로드되고 '%s'가 있으면 자동으로 재사용됩니다." @@ -711,7 +711,7 @@ msgid "" "If you are sure you want to cancel, click YES. Otherwise, click NO." msgstr "" "취소하면 장치를 사용할 수 없는 상태가 될 수 있습니다.\n" -"취소하려면 예를 클릭합니다. 그렇지 않으면 아니오를 클릭합니다." +"취소하려면 예를 클릭합니다. 그렇지 않으면 아니요를 클릭합니다." #. • MSG_106 msgid "Please select folder" @@ -748,7 +748,7 @@ msgstr "호환되지 않는 클러스터 크기" #. #. "%d:%02d" is a duration (mins:secs) msgid "Formatting a large UDF volumes can take a lot of time. At USB 2.0 speeds, the estimated formatting duration is %d:%02d, during which the progress bar will appear frozen. Please be patient!" -msgstr "대용량 UDF 볼륨을 포맷하는 데 많은 시간이 걸릴 수 있습니다. USB 2.0 속도에서 예상 포맷 지속 시간은 %d:%02d이며, 이 기간 동안 진행률 표시줄이 고정된 것처럼 보입니다. 기다려주십시오!" +msgstr "대용량 UDF 볼륨을 포맷하는 데 많은 시간이 걸릴 수 있습니다. USB 2.0 속도에서 예상 포맷 지속 시간은 %d:%02d이며, 이 기간 동안 진행률 표시줄이 고정된 것처럼 보입니다. 기다려주세요!" #. • MSG_113 msgid "Large UDF volume" @@ -768,7 +768,7 @@ msgstr "" "\n" "새 버전의 Syslinux는 서로 호환되지 않으므로 Rufus가 모두 포함할 수 없으므로 인터넷에서 두 개의 추가 파일 ('ldlinux.sys' 및 'ldlinux.bss')을 다운로드해야 합니다:\n" "- 인터넷에 연결하고 이러한 파일을 다운로드하려면 '예'를 선택합니다\n" -"- 작업을 취소하려면 '아니오'를 선택합니다\n" +"- 작업을 취소하려면 '아니요'를 선택합니다\n" "\n" "참고: 파일은 현재 응용 프로그램 디렉터리에 다운로드되며 있는 경우 자동으로 재사용됩니다." @@ -794,7 +794,7 @@ msgstr "" "\n" "다른 버전의 Grub은 서로 호환되지 않을 수 있으며, 모두 포함할 수 없기 때문에 Rufus는 이미지에서 일치하는 Grub 설치 파일 ('core.img')의 버전을 찾으려고 시도합니다:\n" "- 인터넷에 연결하고 다운로드하려면 '예'를 선택합니다\n" -"- Rufus의 기본 버전을 사용하려면 '아니오'를 선택합니다\n" +"- Rufus의 기본 버전을 사용하려면 '아니요'를 선택합니다\n" "- 작업을 중단하려면 '취소'를 선택합니다\n" "\n" "참고: 파일은 현재 응용 프로그램 디렉터리에 다운로드되며 있는 경우 자동으로 재사용됩니다. 일치하는 항목을 온라인으로 찾을 수 없는 경우 기본 버전이 사용됩니다." @@ -846,7 +846,7 @@ msgstr "영구적 아님" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "라이브 USB 미디어의 영구 파티션 크기를 설정합니다. 크기를 0으로 설정하면 영구 파티션이 비활성화됩니다." @@ -888,17 +888,17 @@ msgstr "다른 프로그램 또는 프로세스가 이 드라이브에 액세스 #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus가 1809 ISO를 기반으로 Windows To Go 미디어를 만들려고 하는 것을 감지했습니다.\n" +"Rufus에서 현재 1809 버전 ISO를 기반으로 'Windows To Go' 미디어를 생성하려는 것을 감지했습니다.\n" "\n" -"*MICROSOFT BUG*로 인해 수동으로 'WppRecorder.sys' 파일을 1803 버전으로 교체하지 않으면 Windows 부팅 중 이 미디어가 충돌합니다.\n" +"\"Microsoft의 버그\"로 인해, 사용자가 직접 'WppRecorder.sys' 파일을 1803 버전으로 교체하지 않으면 이 미디어는 Windows 부팅 중에 충돌(블루스크린)을 일으킵니다.\n" "\n" -"또한 Rufus가 이 문제를 자동으로 해결할 수 없는 이유는 'WppRecorder.sys'가 Microsoft의 저작권이 있는 파일이기 때문에 해당 파일의 복사본을 응용 프로그램에 법적으로 포함할 수 없기 때문입니다..." +"또한 Rufus가 이를 자동으로 수정해 드리지 못하는 이유는 'WppRecorder.sys' 파일이 Microsoft의 저작권 보호를 받는 파일이기 때문입니다. 따라서 법적으로 해당 파일의 복사본을 애플리케이션에 포함할 수 없음을 양해 바랍니다." #. • MSG_134 msgid "" @@ -940,7 +940,7 @@ msgstr "뒤로" #. • MSG_142 msgid "Please wait..." -msgstr "기다려주십시오..." +msgstr "기다려주세요..." #. • MSG_143 msgid "Download using a browser" @@ -1085,7 +1085,7 @@ msgstr "버전 %d.%d (빌드 %d)" #. • MSG_176 msgid "English translation: Pete Batard " -msgstr "한국어 번역:\\line• 비너스걸 (VᴇɴᴜsGɪʀʟ♥) " +msgstr "한국어 번역:\\line• 세상사는이야기-나두 \\line• Uk-Jin Jang \\line• 비너스걸 (VᴇɴᴜsGɪʀʟ♥) " #. • MSG_177 msgid "Report bugs or request enhancements at:" @@ -1199,7 +1199,7 @@ msgstr "이 플랫폼에서는 이 기능을 사용할 수 없습니다." #. • MSG_201 msgid "Cancelling - Please wait..." -msgstr "취소 중 - 잠시 기다려 주십시오..." +msgstr "취소 중 - 잠시 기다려 주세요..." #. • MSG_202 msgid "Scanning image..." @@ -1354,7 +1354,7 @@ msgstr "Win7 EFI 부팅 설정 (%s)..." #. • MSG_233 msgid "Finalizing, please wait..." -msgstr "마무리 중, 기다려 주십시오..." +msgstr "마무리 중, 기다려 주세요..." #. • MSG_234 #. @@ -1795,6 +1795,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "'%s'을(를) 열거나 읽을 수 없습니다" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "설치 시 SkuSiPolicy.p7b 적용 (KB5042562 참조)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "QoL 개선 사항 (Copilot, OneDrive, Outlook, Fast Startup 등을 강제하지 않음)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Windows 사용자 지정 적용 중: %s" @@ -1845,17 +1853,17 @@ msgstr "영구 로그" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"MS-DOS를 설치하려면 Microsoft에서 추가 파일 ('diskcopy.dll')을 다운로드해야 합니다:\n" -"- 인터넷에 연결하여 다운로드하려면 '예'를 선택합니다\n" -"- 작업을 취소하려면 '아니오'를 선택합니다\n" +"이 기능을 사용하려면 Microsoft에서 추가 파일('%s')을 다운로드해야 합니다:\n" +"- 인터넷에 연결하여 다운로드하려면 '예'를 선택하세요.\n" +"- 작업을 취소하려면 '아니요'를 선택하세요.\n" "\n" -"참고: 해당 파일은 응용 프로그램의 디렉터리에 다운로드되며 존재하는 경우 자동으로 재사용됩니다." +"참고: 파일은 프로그램 실행 디렉토리에 다운로드되며, 파일이 존재하면 자동으로 재사용됩니다." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1901,7 +1909,7 @@ msgid "" msgstr "" "이 기능을 사용하려면 Microsoft에서 몇 가지 추가 데이터를 다운로드해야 합니다:\n" "- 인터넷에 연결하여 다운로드하려면 '예'를 선택합니다\n" -"- 작업을 취소하려면 '아니오'를 선택합니다" +"- 작업을 취소하려면 '아니요'를 선택합니다" #. • MSG_346 msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" @@ -1919,6 +1927,118 @@ msgstr "압축 파일 추출 중: %s" msgid "Use Rufus MBR" msgstr "Rufus MBR 사용" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "'Windows CA 2023' 서명 부트로더 사용 (호환되는 대상 PC 필요)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "UEFI 부트로더 취소 여부 확인 중..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "UEFI DBX 업데이트 확인 중..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "DBX 업데이트 사용 가능" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus가 UEFI 보안 부팅 취소 확인에 사용되는 최신 버전의 DBX 파일을 찾았습니다. 이 업데이트를 다운로드하시겠습니까?\n" +"- 인터넷에 연결하여 파일을 다운로드하려면 '예'를 선택하세요.\n" +"- 작업을 취소하려면 '아니오'를 선택하세요.\n" +"\n" +"참고: 파일은 프로그램 실행 디렉토리에 다운로드되며, 파일이 존재하면 자동으로 재사용됩니다." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠경고⚠ 묻지 않고 디스크 삭제 및 설치:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"\"무경고(silent)\" Windows 설치 옵션을 선택하셨습니다.\n" +"\n" +"이것은 고급 옵션으로, Windows 설치 중에 사용자에게 확인 과정을 거치지 않고 대상 시스템에서 처음 감지된 디스크를 \"무조건 삭제\"하는 미디어를 만들려는 분들을 위한 기능입니다. 주의하지 않으면 이 옵션 사용으로 인해 \"되돌릴 수 없는 데이터 손실\"이 발생할 수 있습니다!\n" +"\n" +"이것을 원치 않으시면 '아니오'를 선택하여 돌아가서 해당 옵션의 체크를 해제하십시오.\n" +"반대로 '예'를 선택하신다면, 발생하는 모든 데이터 손실에 대한 전적인 책임은 \"사용자 본인\"에게 있음에 동의하는 것으로 간주합니다." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "지원되지 않는 이미지 위치" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"대상 드라이브가 완전히 삭제될 예정이므로, 해당 드라이브에 있는 이미지는 사용할 수 없습니다. 이는 마치 본인이 앉아 있는 나뭇가지를 톱질하는 것과 같습니다!\n" +"\n" +"이미지 파일을 다른 위치로 이동한 후 다시 시도해 주세요." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "TPM이나 넉넉한 RAM을 보유하고 있더라도 이 옵션을 활성화된 상태로 두는 것이 안전합니다. 이 옵션은 설치 요구 사항을 우회할 뿐이며, Windows가 사용 가능한 모든 하드웨어를 사용하는 것을 실제로 방해하지는 않기 때문입니다." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "이 옵션이 작동하려면 설치 중에 반드시 네트워크/인터넷 연결을 해제해야 합니다!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Microsoft와의 데이터 공유에 관한 Windows 설정 질문에 사용자에게 묻는 대신 자동으로 '아니오'라고 응답합니다." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "'Windows To Go'가 내부 디스크에 액세스하여 예고 없이 되돌릴 수 없는 파일 시스템 업그레이드를 수행하는 것에 동의하지 않는다면, 이 옵션을 활성화된 상태로 두어야 합니다." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "지정된 사용자 이름으로 로컬 계정을 자동으로 생성합니다. 암호는 빈 값으로 설정되며 다음 로그온 시 변경해야 합니다." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "사용자에게 묻는 대신 이 PC의 지역 설정(키보드, 시간대, 통화)을 그대로 복제합니다." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "사용자가 명시적으로 요청하지 않는 한 시스템 디스크를 암호화하지 않습니다." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "S-Mode가 무엇인지 알고 있으며, Windows를 완전히 삭제하고 재설치한 후에도 시스템이 S-Mode로 고정될 수 있음을 이해하는 경우에만 이 옵션을 사용하십시오." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Windows를 설치하려는 시스템이 최신 보안 부팅 인증서를 사용 중인 경우 이 옵션을 사용하십시오. 필요한 경우 'Mosby'를 사용하여 시스템을 업데이트할 수 있습니다." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "잠재적으로 안전하지 않은 추가 Windows 부트로더를 차단하려는 경우 이 옵션을 사용하십시오. 단, 표준 Windows 미디어의 부팅도 차단될 가능성이 있습니다." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"Quality of Life(QoL)\" 개선 사항: Microsoft가 사용자에게 강제하려는 원치 않는 기능 대부분을 비활성화합니다." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "이 옵션을 사용하는 경우, Windows를 설치할 디스크를 제외한 대상 PC의 모든 디스크를 분해(연결 해제)했는지 확인하십시오. 또한, 데이터 삭제를 원치 않는 PC에는 미디어를 연결된 상태로 두지 마십시오." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application @@ -1946,7 +2066,7 @@ msgid "" "See https://www.gnu.org/licenses/gpl-3.0.en.html for details." msgstr "" "이 응용 프로그램은 GNU Public License (GPL) 버전 3의 조건에 따라 라이선스가 부여됩니다.\n" -"자세한 내용은 https://www.gnu.org/licenses/gpl-3.0.html 을 참조하십시오." +"자세한 내용은 https://www.gnu.org/licenses/gpl-3.0.html 을 참조하세요." #. • MSG_905 #. diff --git a/res/loc/po/lt-LT.po b/res/loc/po/lt-LT.po index e4ee34f9..e450eeff 100644 --- a/res/loc/po/lt-LT.po +++ b/res/loc/po/lt-LT.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 3.22\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2023-04-25 13:16+0100\n" -"PO-Revision-Date: 2023-04-25 13:48+0100\n" +"POT-Creation-Date: 2026-04-17 17:59+0300\n" +"PO-Revision-Date: 2026-04-18 00:01+0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: lt_LT\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Lithuanian (Lietuvių)\n" "X-Rufus-LCID: 0x0427\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -54,13 +54,12 @@ msgstr "Išvardinti USB kietuosius diskus" msgid "Add fixes for old BIOSes (extra partition, align, etc.)" msgstr "Pataisos seniems BIOS (papildomas skaidinys, ir kt.)" -#. • IDD_DIALOG → IDC_RUFUS_MBR +#. • IDD_DIALOG → IDC_UEFI_MEDIA_VALIDATION #. -#. 'MBR': See http://en.wikipedia.org/wiki/Master_boot_record -#. Rufus can install it's own custom MBR (the Rufus MBR), which also allows users to -#. specify a custom disk ID for the BIOS. The tooltip for this control is MSG_167. -msgid "Use Rufus MBR with BIOS ID" -msgstr "Naudoti Rufus MBR su BIOS ID" +#. It is acceptable to drop the "runtime" if you are running out of space +#, fuzzy +msgid "Enable runtime UEFI media validation" +msgstr "Įgalinti vykdymo laiko UEFI laikmenos patvirtinimą" #. • IDD_DIALOG → IDS_FORMAT_OPTIONS_TXT msgid "Format Options" @@ -310,7 +309,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -848,7 +847,7 @@ msgstr "Be išlikimo" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Nustatykite išliekamojo skaidinio dydį gyvai USB laikmenai. Nustačius 0 dydį, išliekamasis skaidinys išjungiamas." @@ -889,8 +888,9 @@ msgid "Another program or process is accessing this drive. Do you want to format msgstr "Kita programa arba procesas kreipiasi į šį diską. Ar vis tiek norite jį formatuoti?" #. • MSG_133 +#, fuzzy msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -1043,17 +1043,10 @@ msgid "Check this box to allow the display of international labels and set a dev msgstr "Pažymėkite šį langelį, norėdami įgalinti tarptautinių žymių rodymą ir įrenginio piktogramos nustatymą (sukuria autorun.inf)" #. • MSG_167 -msgid "Install an MBR that allows boot selection and can masquerade the BIOS USB drive ID" +#, fuzzy +msgid "Install a UEFI bootloader, that will perform MD5Sum file validation of the media" msgstr "Įdiegia MBR, kuris įgalina įkrovos pasirinkimą ir gali maskuoti BIOS USB disko ID" -#. • MSG_168 -msgid "" -"Try to masquerade first bootable USB drive (usually 0x80) as a different disk.\n" -"This should only be necessary if you install Windows XP and have more than one disk." -msgstr "" -"Bandyti maskuoti pirmą įkraunamą USB diską (paprastai 0x80) kaip kitą diską.\n" -"To turėtų prireikti tik jei diegsite Windows XP ir bus daugiau nei vienas diskas." - #. • MSG_169 msgid "" "Create an extra hidden partition and try to align partitions boundaries.\n" @@ -1805,6 +1798,16 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Nepavyksta atidaryti arba perskaityti \"%s\"" +#. • MSG_323 +#, fuzzy +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Diegimo metu pritaikykite SkuSiPolicy.p7b (žr. KB5042562)" + +#. • MSG_324 +#, fuzzy +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "QoL patobulinimai (Neverskite Copilot, OneDrive, Outlook, Greitas Paleidimas, etc.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Windows tinkinimo taikymas: %s" @@ -1853,6 +1856,228 @@ msgstr "BitLocker automatinio įrenginių šifravimo išjungimas" msgid "Persistent log" msgstr "Nuolatinis žurnalas" +#. • MSG_337 +#, fuzzy +msgid "" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" +"- Select 'Yes' to connect to the Internet and download it\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The file will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Papildomas failas ('%s') turi būti atsisiųstas iš Microsoft, kad naudotis šią funkcija:\n" +"- Pasirinkite 'Taip' kad prisijungtumėte prie Interneto ir atsisiųstumėte jį\n" +"- Pasirinkite 'Ne' kad atšaukti operacija\n" +"\n" +"Pastaba: Failas bus atsisiųstas į programos katalogą ir, jei ten jau yra, bus automatiškai panaudotas." + +#. • MSG_338 +#, fuzzy +msgid "Revoked UEFI bootloader detected" +msgstr "Aptikta panaikinta UEFI įkrovos tvarkyklė" + +#. • MSG_339 +#, fuzzy +msgid "" +"Rufus detected that the ISO you have selected contains a UEFI bootloader that has been revoked and that will produce %s, when Secure Boot is enabled on a fully up to date UEFI system.\n" +"\n" +"- If you obtained this ISO image from a non reputable source, you should consider the possibility that it might contain UEFI malware and avoid booting from it.\n" +"- If you obtained it from a trusted source, you should try to locate a more up to date version, that will not produce this warning." +msgstr "" +"Rufus aptiko, kad šis pasirinktas ISO tūri UEFI įkrovos programa kuris buvo panaikintas ir kuris kurs %s, kai visiškai atnaujintoje EUFI sistemoje yra įjungtas saugus įkrovimas.\n" +"\n" +"- Jei ši ISO atvaizdą gavote iš nepatikimo šaltinio, turėtumėte apsvarstyti galimybę, kad jame gali būti UEFI kenkėjiška programa, ir vengti paleisti sistemą iš jos.\n" +"- Jei gavote iš patikimo šaltinio, turėtumėte pabandyti rasti naujesnę versiją, kuri nesukels šio įspėjimo." + +#. • MSG_340 +#, fuzzy +msgid "a \"Security Violation\" screen" +msgstr "ekranas \"Saugumo pažeidimas\"" + +#. • MSG_341 +#, fuzzy +msgid "a Windows Recovery Screen (BSOD) with '%s'" +msgstr "Windows atkūrimo ekranas (BSOD) su pranešimu '%s'" + +#. • MSG_342 +#, fuzzy +msgid "Compressed VHDX Image" +msgstr "Suspaustas VHDX Atvaizdas" + +#. • MSG_343 +#, fuzzy +msgid "Uncompressed VHD Image" +msgstr "Nesuspaustas VHD Atvaizdas" + +#. • MSG_344 +#, fuzzy +msgid "Full Flash Update Image" +msgstr "Pilnas Flash Atnaujinimo Atvaizdas" + +#. • MSG_345 +#, fuzzy +msgid "" +"Some additional data must be downloaded from Microsoft to use this functionality:\n" +"- Select 'Yes' to connect to the Internet and download it\n" +"- Select 'No' to cancel the operation" +msgstr "" +"Reikia atsisiųsti papildomų duomenų iš Microsoft, kad naudotis šią funkciją:\n" +"- Pasirinkite 'Taip' kad prisijungtumėte prie Interneto ir atsisiųstumėte jį\n" +"- Pasirinkite 'Ne' kad atšaukti operacija" + +#. • MSG_346 +#, fuzzy +msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" +msgstr "Apriboti Windows iki S-režimo (NESUDERINAMA su internetinės paskyros apėjimu)" + +#. • MSG_347 +#, fuzzy +msgid "Expert Mode" +msgstr "Eksperto režimas" + +#. • MSG_348 +#, fuzzy +msgid "Extracting archive files: %s" +msgstr "Išskleiskite failus iš čia: %s" + +#. • MSG_349 +#, fuzzy +msgid "Use Rufus MBR" +msgstr "Naudokit Rufus MBR" + +#. • MSG_350 +#, fuzzy +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Naudokite 'Windows CA 2023' pasirašytus įkrovos tvarkyklės (Reikalingas suderinamas tikslinis kompiuteris)" + +#. • MSG_351 +#, fuzzy +msgid "Checking for UEFI bootloader revocation..." +msgstr "Tikrinama, ar nėra UEFI įkrovos tvarkyklės atšaukimo..." + +#. • MSG_352 +#, fuzzy +msgid "Checking for UEFI DBX updates..." +msgstr "Ieškoma UEFI DBX atnaujinimų..." + +#. • MSG_353 +#, fuzzy +msgid "DBX update available" +msgstr "DBX atnaujinimas pasiekimas" + +#. • MSG_354 +#, fuzzy +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus rado atnaujintą DBX failų versija, naudojamų UEFI saugaus įkrovimo atšaukimo patikrinimams atlikti. Ar norite atsisiųsti šį atnaujinimą?\n" +"- Pasirinkite 'Taip' kad prisijungtumėte prie Interneto ir atsisiųstumėte jį\n" +"- Pasirinkite 'Ne' kad atšaukti operacija\n" +"\n" +"Pastaba: Failas bus atsisiųstas į programos katalogą ir, jei ten jau yra, bus automatiškai panaudotas." + +#. • MSG_355 +#, fuzzy +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠TYLIAI⚠ ištrinti diską ir įdiegti:" + +#. • MSG_356 +#, fuzzy +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes', you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Jūs pasirinkote naudotis \"tylioji\" Windows diegimo parinkti.\n" +"\n" +"Tai išplėstinė parinktis, skirta žmonėms, norintiems sukurti laikmeną, kuri neragina vartotojo diegiant „Windows“ ir todėl BE SĄLYGŲ IŠTRINA pirmąjį aptiktą diską tikslinėje sistemoje. Jei nebūsite atsargūs, naudodami šią parinktį galite NEATGRĄŽINAMAI PRARASTI DUOMENIS!\n" +"\n" +"Jei to nenorite, pasirinkite 'Ne', kad grįžtumėte ir panaikintumėte parinkties žymėjimą.\n" +"Priešingu atveju, jei pasirinksite 'Taip', sutinkate, kad visa atsakomybė už bet kokį duomenų praradimą teks JUMS." + +#. • MSG_358 +#, fuzzy +msgid "Unsupported image location" +msgstr "Nepalaikoma atvaizdo vieta" + +#. • MSG_359 +#, fuzzy +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Negalite naudoti atvaizdo, esančio paskirties diske, nes tas diskas bus visiškai ištrintas. Tai tas pats, kas bandyti pjauti šaką, ant kurios sėdite!\n" +"\n" +"Perkelkite atvaizdą į kitą vietą ir bandykite dar kartą." + +#. • MSG_360 +#, fuzzy +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Šią parinktį galima palikti įjungtą, net jei turite TPM ar daugiau RAM, nes ši parinktis tik apeina sąrankos reikalavimus ir iš tikrųjų netrukdo „Windows“ naudoti visos turimos aparatinės įrangos." + +#. • MSG_361 +#, fuzzy +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Kad ši parinktis veiktų, diegimo metu BŪTINA atjungti tinklą/Internetą!" + +#. • MSG_362 +#, fuzzy +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Automatiškai atsakyti 'Ne' į Windows sąrankos klausimus, susijusius su duomenų bendrinimu su Microsoft, užuot raginus vartotoją tai padaryti." + +#. • MSG_363 +#, fuzzy +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Šią parinktį turėtumėte palikti įjungtą, nebent sutinkate, kad 'Windows To Go' pasiektų vidinius diskus ir tyliai atliktų nepakeičiama failų sistemos atnaujinimą." + +#. • MSG_364 +#, fuzzy +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Automatiškai sukurti vietinę paskyrą su nurodytu vartotojo vardu, naudojant tuščią slaptažodį, kurį reikės pakeisti kito prisijungimo metu." + +#. • MSG_365 +#, fuzzy +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Nukopijuokite regioninius nustatymus iš šio kompiuterio (klaviatūrą, laiko juostą, valiutą), užuot raginę vartotoją juos pakeisti." + +#. • MSG_366 +#, fuzzy +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Nešifruokite sistemos disko, nebent to aiškiai paprašytų vartotojas." + +#. • MSG_367 +#, fuzzy +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Šią parinktį naudokite tik tuo atveju, jei žinote, kas yra S-režimas, ir suprantate, kad jūsų sistema gali būti užrakinta S-režime net ir visiškai ištrynus ir iš naujo įdiegus 'Windows'." + +#. • MSG_368 +#, fuzzy +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Naudokite šią parinktį, jei sistema, kurioje planuojate įdiegti Windows, naudoja visiškai atnaujintus „Saugaus Įkrovimo“ sertifikatus. Jei reikia, galite apsvarstyti galimybę atnaujinti sistemą naudodami 'Mosby'." + +#. • MSG_369 +#, fuzzy +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Naudokite šią parinktį, jei norite atšaukti papildomus potencialiai nesaugius Windows įkrovos tvarkykles, tačiau taip pat galite neleisti paleisti standartinės Windows laikmenos." + +#. • MSG_370 +#, fuzzy +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"Quality of Life\" patobulinimai: Išjunkite daugumą nepageidaujamų funkcijų, kurias Microsoft bando primesti galutiniams vartotojams." + +#. • MSG_371 +#, fuzzy +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Jei naudojate šią parinktį, būtinai atjunkite visus diskus nuo tikslinio kompiuterio, išskyrus tą, kuriame norite įdiegti Windows, ir nepalikite laikmenos prijungtos prie kompiuterio, kurio nenorite ištrinti." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/lv-LV.po b/res/loc/po/lv-LV.po index 7c9f0c59..de54ea2b 100644 --- a/res/loc/po/lv-LV.po +++ b/res/loc/po/lv-LV.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-14 16:22+0100\n" -"PO-Revision-Date: 2024-05-14 16:22+0100\n" +"POT-Creation-Date: 2026-03-23 18:24+0000\n" +"PO-Revision-Date: 2026-03-23 18:25+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: lv_LV\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Latvian (Latviešu)\n" "X-Rufus-LCID: 0x0426\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -846,7 +846,7 @@ msgstr "Nav sadaļas" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Fiksētās sadaļas apjoma izvēle uz USB nesēja. Ja nav fiksētās sadaļas ievadiet 0." @@ -888,13 +888,13 @@ msgstr "Citai programmai vai procesam ir piekļuve šai ierīcei. Vienalga vēla #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus noteica, ka mēģinat veidot Windows To Go disku formātā 1809 ISO\n" +"Rufus noteica, ka mēģinat veidot 'Windows To Go' disku formātā 1809 ISO\n" "\n" "Atsaucoties uz *MICROSOFT BUG*, šis nesējs var izsaukt Windows ielādes kļūdu (BSOD), šādā gadījumā nepieciešams manuāli samainīt 'WppRecorder.sys' failu uz 1803 versiju.\n" "\n" @@ -1796,6 +1796,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Neizdevās atvērt vai izlasīt '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Instalēšanas laikā izmantojiet SkuSiPolicy.p7b (skatiet KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "QoL uzlabojumi (attiecas uz Copilot, OneDrive, Outlook, Fast Startup utt.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Pielietot Windows kastomizāciju: %s" @@ -1846,15 +1854,15 @@ msgstr "Pastāvīgs žurnāls" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Lai instalēt MS-DOS no Microsoft vietnes nepieciešams lejuplādēt papildus failu («diskcopy.dll»):\n" -"- Izvēlieties «Jā», lai pieslēgties pie Interneta un failu lejuplādēt.\n" -"- Izvēlieties «Nē», lai atcelt darbību.\n" +"Lai izmantotu šo funkciju, no Microsoft ir jālejupielādē papildu fails ('%s'):\n" +"- Izvēlieties 'Jā', lai pieslēgties pie Interneta un failu lejuplādēt.\n" +"- Izvēlieties 'Nē', lai atcelt darbību.\n" "\n" "Piezīme. Fails tiks lejuplādēts programmas mapē, ja tas jau eksistē, tiks izmantots atkārtoti." @@ -1920,6 +1928,118 @@ msgstr "Atpakot arhīva failus: %s" msgid "Use Rufus MBR" msgstr "Izmantot Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Izmantojiet Windows CA 2023' parakstītus ielādētājus (nepieciešams saderīgs dators)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Notiek UEFI ielādētāja atsaukšanas pārbaude..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Notiek UEFI DBX atjauninājumu pārbaude..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Pieejams DBX atjauninājums" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus ir atradis atjauninātu DBX failu versiju, ko izmanto, lai veiktu UEFI Secure Boot atsaukšanas pārbaudes. Vai vēlaties lejupielādēt šo atjauninājumu?\n" +"- Izvēlieties 'Jā', lai pieslēgties internetam un lejupielādēt šo saturu\n" +"- Izvēlieties 'Nē', lai atceltu darbību\n" +"\n" +"Piezīme. Faili tiks lejupielādēti programmas direktorijā un ja tādi jau ir, tie tiks automātiski izmantoti atkārtoti." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠KLUSĀ⚠ diska dzēšana un instalācija:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Ir izvēlēta \"klusā\" Windows instalēšanas opcija.\n" +"\n" +"Šī ir uzlabota opcija, kas paredzēta tiem, kuri vēlas izveidot datu nesēju, kas lietotājam Windows instalēšanas laikā neko neprasa un BEZNOSACĪJUMĀ DZĒŠ pirmo atrasto disku. Ja neesat piesardzīgs, šīs opcijas izmantošana var izraisīt NEATGRIEZENISKU DATU ZAUDĒJUMU!\n" +"\n" +"Ja tas nav tas, ko vēlaties, izvēlieties 'Nē', lai atgrieztos un noņemiet atzīmi no opcijas.\n" +"Pretējā gadījumā, ja izvēlaties 'Jā', tad PIEKRĪTAT atbildībai par iespējamo datu zudumu." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Neatbalstīta instalācijas atrašanās vieta" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Nevar izmantot instalāciju, kas atrodas mērķa diskā, jo šis disks tiks pilnībā izdzēsts. Tas ir tas pats, kas mēģināt zāģēt zaru, uz kura sēdi!\n" +"\n" +"Pārvietojiet instalāciju uz citu vietu un mēģiniet vēlreiz." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Šo opciju var atstāt iespējotu pat tad, ja ir TPM vai vairāk RAM, jo šī opcija tikai apiet iestatīšanas prasības un faktiski neliedz OS Windows izmantot visu pieejamo aparatūru." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Lai šī opcija darbotos, instalēšanas laikā OBLIGĀTI jāatvieno tīkls/internets!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Automātiski uz Windows iestatīšanas jautājumiem, kas saistīti datu koplietošanai ar Microsoft, atbilde būs 'nē' tā vietā, lai prasīt lietotājam." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Šī opcija ir jāatstāj iespējota, ja vien 'Windows To Go' nevar piekļūt iekšējiem diskiem un klusi veikt neatgriezeniskus failu sistēmas jauninājumus." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Automātiski izveidos lokālo kontu ar norādīto lietotājvārdu, izmantojot tukšu paroli, kas būs jāmaina nākamajā pieteikšanās reizē." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Dublēs reģionālos iestatījumus no šī datora (tastatūra, laika josla, valūta), tā vietā, lai prasīt lietotājam." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Nešifrēs sistēmas disku, ja vien to neaktivizēs lietotājs." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Izmantojiet šo opciju tikai tad, ja zināt, kas ir S-Mode, un saprotat, ka sistēma var tikt bloķēta S-režīmā pat pēc pilnīgas Windows dzēšanas un atkārtotas instalēšanas." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Izmantojiet šo opciju, ja sistēma, kurā plānojat instalēt sistēmu Windows, izmanto pilnībā atjauninātus Secure Boot sertifikātus. Ja nepieciešams, sistēmas atjaunināšanai varat izmantot Mosby." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Izmantojiet šo opciju, ja vēlaties atsaukt papildu potenciāli nedrošos Windows ielādētājus, taču var arī novērst standarta Windows multivides palaišanu." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"Quality of Life\" uzlabojumi: Tiks atspējota lielākā daļu nevēlamo funkciju, ko Microsoft mēģina uzspiest lietotājiem." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Ja izmantojat šo opciju, atvienojiet visus diskus no mērķa datora, izņemot to, kurā vēlaties instalēt OS Windows, kā arī neatstājiet multividi, kuru nevēlaties dzēst, pievienotu nevienam no datoriem." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/ms-MY.po b/res/loc/po/ms-MY.po index 5f387d4a..8ac35f44 100644 --- a/res/loc/po/ms-MY.po +++ b/res/loc/po/ms-MY.po @@ -1,1947 +1,2131 @@ -msgid "" -msgstr "" -"Project-Id-Version: 3.22\n" -"Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2023-04-25 13:26+0100\n" -"PO-Revision-Date: 2023-04-25 13:33+0100\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: ms_MY\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Rufus-LanguageName: Malay (Bahasa Malaysia)\n" -"X-Rufus-LCID: 0x043e, 0x083e\n" -"X-Generator: Poedit 3.2.2\n" - -#. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT -msgid "Drive Properties" -msgstr "Sifat cakera" - -#. • IDD_DIALOG → IDS_DEVICE_TXT -msgid "Device" -msgstr "Peranti" - -#. • IDD_DIALOG → IDS_BOOT_SELECTION_TXT -msgid "Boot selection" -msgstr "Jenis boot" - -#. • IDD_DIALOG → IDC_SELECT -msgid "Select" -msgstr "Pilih" - -#. • IDD_DIALOG → IDS_IMAGE_OPTION_TXT -msgid "Image Option" -msgstr "Pilihan Imej" - -#. • IDD_DIALOG → IDS_PARTITION_TYPE_TXT -msgid "Partition scheme" -msgstr "Skema partisyen" - -#. • IDD_DIALOG → IDS_TARGET_SYSTEM_TXT -msgid "Target system" -msgstr "Sistem yang akan dipasang" - -#. • IDD_DIALOG → IDC_LIST_USB_HDD -msgid "List USB Hard Drives" -msgstr "Senaraikan Cakera Keras USB" - -#. • IDD_DIALOG → IDC_OLD_BIOS_FIXES -#. -#. It is acceptable to drop the parenthesis () if you are running out of space -#. as there is a tooltip (MSG_169) providing these details. -msgid "Add fixes for old BIOSes (extra partition, align, etc.)" -msgstr "Tambah pembaikan untuk BIOS lama" - -#. • IDD_DIALOG → IDC_RUFUS_MBR -#. -#. 'MBR': See http://en.wikipedia.org/wiki/Master_boot_record -#. Rufus can install it's own custom MBR (the Rufus MBR), which also allows users to -#. specify a custom disk ID for the BIOS. The tooltip for this control is MSG_167. -msgid "Use Rufus MBR with BIOS ID" -msgstr "Guna MBR Rufus dengan BIOS ID" - -#. • IDD_DIALOG → IDS_FORMAT_OPTIONS_TXT -msgid "Format Options" -msgstr "Pilihan format" - -#. • IDD_DIALOG → IDS_FILE_SYSTEM_TXT -msgid "File system" -msgstr "Sistem fail" - -#. • IDD_DIALOG → IDS_CLUSTER_SIZE_TXT -msgid "Cluster size" -msgstr "Saiz gugusan" - -#. • IDD_DIALOG → IDS_LABEL_TXT -msgid "Volume label" -msgstr "Label jilid baharu" - -#. • IDD_DIALOG → IDC_QUICK_FORMAT -msgid "Quick format" -msgstr "Format pantas" - -#. • IDD_DIALOG → IDC_BAD_BLOCKS -msgid "Check device for bad blocks" -msgstr "Semak peranti untuk blok rosak" - -#. • IDD_DIALOG → IDC_EXTENDED_LABEL -msgid "Create extended label and icon files" -msgstr "Cipta label lanjut dan fail ikon" - -#. • IDD_DIALOG → IDS_STATUS_TXT -msgid "Status" -msgstr "" - -#. • IDD_DIALOG → IDCANCEL -#. • IDD_LICENSE → IDCANCEL -#. • IDD_LOG → IDCANCEL -#. • IDD_UPDATE_POLICY → IDCANCEL -#. • IDD_NEW_VERSION → IDCANCEL -#. • MSG_006 -msgid "Close" -msgstr "Tutup" - -#. • IDD_DIALOG → IDC_START -msgid "Start" -msgstr "Mula" - -#. • IDD_ABOUTBOX → IDD_ABOUTBOX -msgid "About Rufus" -msgstr "Mengenai Rufus" - -#. • IDD_ABOUTBOX → IDC_ABOUT_LICENSE -msgid "License" -msgstr "Lesen" - -#. • IDD_ABOUTBOX → IDOK -msgid "OK" -msgstr "" - -#. • IDD_LICENSE → IDD_LICENSE -msgid "Rufus License" -msgstr "Lesen Rufus" - -#. • IDD_NOTIFICATION → IDC_MORE_INFO -msgid "More information" -msgstr "Maklumat lanjut" - -#. • IDD_NOTIFICATION → IDYES -#. • MSG_008 -msgid "Yes" -msgstr "Ya" - -#. • IDD_NOTIFICATION → IDNO -#. • MSG_009 -msgid "No" -msgstr "Tidak" - -#. • IDD_LOG → IDD_LOG -msgid "Log" -msgstr "" - -#. • IDD_LOG → IDC_LOG_CLEAR -msgid "Clear" -msgstr "Padam" - -#. • IDD_LOG → IDC_LOG_SAVE -msgid "Save" -msgstr "Simpan" - -#. • IDD_UPDATE_POLICY → IDD_UPDATE_POLICY -msgid "Update policy and settings" -msgstr "Kemaskini dasar dan tetapan" - -#. • IDD_UPDATE_POLICY → IDS_UPDATE_SETTINGS_GRP -msgid "Settings" -msgstr "Tetapan" - -#. • IDD_UPDATE_POLICY → IDS_UPDATE_FREQUENCY_TXT -msgid "Check for updates" -msgstr "Semak untuk versi baharu" - -#. • IDD_UPDATE_POLICY → IDS_INCLUDE_BETAS_TXT -msgid "Include beta versions" -msgstr "Termasuk versi beta" - -#. • IDD_UPDATE_POLICY → IDC_CHECK_NOW -msgid "Check Now" -msgstr "Semak sekarang" - -#. • IDD_NEW_VERSION → IDD_NEW_VERSION -msgid "Check For Updates - Rufus" -msgstr "Semak untuk versi baharu - Rufus" - -#. • IDD_NEW_VERSION → IDS_NEW_VERSION_AVAIL_TXT -msgid "A newer version is available. Please download the latest version!" -msgstr "Terdapat versi Rufus yang baharu. Sila muat turun versi yang terkini!" - -#. • IDD_NEW_VERSION → IDC_WEBSITE -msgid "Click here to go to the website" -msgstr "Klik di sini untuk ke laman sesawang Rufus" - -#. • IDD_NEW_VERSION → IDS_NEW_VERSION_NOTES_GRP -msgid "Release Notes" -msgstr "Maklumat versi terbaharu" - -#. • IDD_NEW_VERSION → IDS_NEW_VERSION_DOWNLOAD_GRP -#. • IDD_NEW_VERSION → IDC_DOWNLOAD -#. • MSG_040 -msgid "Download" -msgstr "Muat turun" - -#. • MSG_001 -msgid "Other instance detected" -msgstr "Proses Rufus lain dikesan" - -#. • MSG_002 -msgid "" -"Another Rufus application is running.\n" -"Please close the first application before running another one." -msgstr "" -"Terdapat aplikasi Rufus sedang berjalan.\n" -"Sila tutup aplikasi tersebut sebelum melancarkan aplikasi Rufus baharu." - -#. • MSG_003 -msgid "" -"WARNING: ALL DATA ON DEVICE '%s' WILL BE DESTROYED.\n" -"To continue with this operation, click OK. To quit click CANCEL." -msgstr "" -"AMARAN: SEMUA DATA DI DALAM PERANTI '%s' AKAN DIPADAM.\n" -"Jika hendak teruskan, klik OK. Untuk berhenti, klik BATAL." - -#. • MSG_004 -msgid "Rufus update policy" -msgstr "Dasar kemas kini Rufus" - -#. • MSG_005 -msgid "Do you want to allow Rufus to check for application updates online?" -msgstr "Adakah anda mahu membenarkan Rufus menyemak untuk versi baharu dalam talian?" - -#. • MSG_007 -msgid "Cancel" -msgstr "Batal" - -#. • MSG_010 -msgid "Bad blocks found" -msgstr "Blok rosak dijumpai" - -#. • MSG_011 -msgid "" -"Check completed: %d bad block(s) found\n" -" %d read error(s)\n" -" %d write error(s)\n" -" %d corruption error(s)" -msgstr "" -"Semak selesai: %d blok rosak dijumpai\n" -" %d ralat membaca\n" -" %d ralat menulis\n" -" %d ralat korupsi" - -#. • MSG_012 -#. -#. This contains the formatted message from MSG_001 as well as the name of the bad blocks logfile -msgid "" -"%s\n" -"A more detailed report can be found in:\n" -"%s" -msgstr "" -"%s\n" -"Laporan lebih terperinci boleh dijumpai di:\n" -"%s" - -#. • MSG_013 -msgid "Disabled" -msgstr "Nyahaktif" - -#. • MSG_014 -msgid "Daily" -msgstr "Harian" - -#. • MSG_015 -msgid "Weekly" -msgstr "Mingguan" - -#. • MSG_016 -msgid "Monthly" -msgstr "Bulanan" - -#. • MSG_017 -msgid "Custom" -msgstr "Tetapan sendiri" - -#. • MSG_018 -msgid "Your version: %d.%d (Build %d)" -msgstr "Versi anda: %d.%d (Binaan %d)" - -#. • MSG_019 -msgid "Latest version: %d.%d (Build %d)" -msgstr "Versi terkini: %d.%d (Binaan %d)" - -#. • MSG_020 -#. • MSG_026 -msgid "bytes" -msgstr "bait" - -#. • MSG_021 -#. -#. *Short* version of the kilobyte size suffix -msgid "KB" -msgstr "" - -#. • MSG_022 -#. -#. *Short* version of the megabyte size suffix -msgid "MB" -msgstr "" - -#. • MSG_023 -#. -#. *Short* version of the gigabyte size suffix -msgid "GB" -msgstr "" - -#. • MSG_024 -#. -#. *Short* version of the terabyte size suffix -msgid "TB" -msgstr "" - -#. • MSG_025 -#. -#. *Short* version of the pentabyte size suffix -msgid "PB" -msgstr "" - -#. • MSG_027 -msgid "kilobytes" -msgstr "kilobait" - -#. • MSG_028 -msgid "megabytes" -msgstr "megabait" - -#. • MSG_029 -msgid "Default" -msgstr "Tetapan asal" - -#. • MSG_030 -#. -#. This gets appended to the file system, cluster size, etc. -msgid "%s (Default)" -msgstr "%s (Tetapan asal)" - -#. • MSG_031 -msgid "BIOS (or UEFI-CSM)" -msgstr "BIOS (atau UEFI-CSM)" - -#. • MSG_032 -msgid "UEFI (non CSM)" -msgstr "UEFI (bukan CSM)" - -#. • MSG_033 -msgid "BIOS or UEFI" -msgstr "BIOS atau UEFI" - -#. • MSG_034 -#. -#. Number of bad block check passes (singular for 1 pass) -msgid "%d pass" -msgstr "%d kali lulus" - -#. • MSG_035 -#. -#. Number of bad block check passes (plural for 2 or more passes). -#. See MSG_087 for the message that %s gets replaced with. -msgid "%d passes %s" -msgstr "%d kali lulus %s" - -#. • MSG_036 -msgid "ISO Image" -msgstr "Imej ISO" - -#. • MSG_037 -msgid "Application" -msgstr "Aplikasi" - -#. • MSG_038 -msgid "Abort" -msgstr "Batal" - -#. • MSG_039 -msgid "Launch" -msgstr "Mula" - -#. • MSG_041 -msgid "Operation cancelled by the user" -msgstr "Operasi dibatalkan oleh pengguna" - -#. • MSG_042 -msgid "Error" -msgstr "Ralat" - -#. • MSG_043 -msgid "Error: %s" -msgstr "Ralat: %s" - -#. • MSG_044 -msgid "File download" -msgstr "Muat turun fail" - -#. • MSG_045 -msgid "USB Storage Device (Generic)" -msgstr "Peranti storan USB (Generik)" - -#. • MSG_046 -msgid "%s (Disk %d) [%s]" -msgstr "%s (Cakera %d) [%s]" - -#. • MSG_047 -#. -#. Used when a drive is detected that contains more than one partition -msgid "Multiple Partitions" -msgstr "Beberapa Partisyen" - -#. • MSG_048 -msgid "Rufus - Flushing buffers" -msgstr "Rufus - 'Flush' penimbal" - -#. • MSG_049 -msgid "Rufus - Cancellation" -msgstr "Rufus - Pembatalan" - -#. • MSG_050 -msgid "Success." -msgstr "Berjaya." - -#. • MSG_051 -msgid "Undetermined error while formatting." -msgstr "Ralat yang tidak dapat ditentukan ketika memformat." - -#. • MSG_052 -msgid "Cannot use the selected file system for this media." -msgstr "Tidak boleh menggunakan sistem fail yang dipilih untuk media ini." - -#. • MSG_053 -msgid "Access to the device is denied." -msgstr "Akses kepada peranti dinafikan." - -#. • MSG_054 -msgid "Media is write protected." -msgstr "Tidak boleh menulis data ke peranti (Dilindungi)" - -#. • MSG_055 -msgid "The device is in use by another process. Please close any other process that may be accessing the device." -msgstr "Peranti ini digunakan oleh proses lain. Sila tutup mana-mana program yang mungkin menggunakan peranti ini." - -#. • MSG_056 -msgid "Quick format is not available for this device." -msgstr "Format pantas tidak boleh digunakan pada peranti ini." - -#. • MSG_057 -msgid "The volume label is invalid." -msgstr "Label jilid tidak sah." - -#. • MSG_058 -msgid "The device handle is invalid." -msgstr "Pengendali peranti tidak sah." - -#. • MSG_059 -msgid "The selected cluster size is not valid for this device." -msgstr "Saiz gugusan yang dipilih tidak boleh digunakan pada peranti ini." - -#. • MSG_060 -msgid "The volume size is invalid." -msgstr "Saiz jilid tidak sah." - -#. • MSG_061 -msgid "Please insert a removable media in drive." -msgstr "Sila masukkan media boleh alih ke dalam pemacu." - -#. • MSG_062 -msgid "An unsupported command was received." -msgstr "Arahan yang tidak disokong diterima." - -#. • MSG_063 -msgid "Memory allocation error." -msgstr "Kesilapan peruntukkan memori." - -#. • MSG_064 -msgid "Read error." -msgstr "Kesilapan membaca." - -#. • MSG_065 -msgid "Write error." -msgstr "Kesilapan menulis." - -#. • MSG_066 -msgid "Installation failure" -msgstr "Kegagalan memasang" - -#. • MSG_067 -msgid "Could not open media. It may be in use by another process. Please re-plug the media and try again." -msgstr "Media tidak boleh dibuka. Ia mungkin digunakan dalam proses yang lain. Sila cabut dan masukkan semula dan cuba sekali lagi." - -#. • MSG_068 -msgid "Could not partition drive." -msgstr "Tidak boleh partition drive." - -#. • MSG_069 -msgid "Could not copy files to target drive." -msgstr "Tidak boleh meyalin fail kepada pemacu." - -#. • MSG_070 -msgid "Cancelled by user." -msgstr "Dibatalkan oleh pengguna." - -#. • MSG_071 -#. -#. See http://en.wikipedia.org/wiki/Thread_%28computing%29 -msgid "Unable to start thread." -msgstr "Proses-proses kecil tidak boleh dimulakan." - -#. • MSG_072 -msgid "Bad blocks check didn't complete." -msgstr "Penyemakan blok rosak tidak dapat diselesaikan." - -#. • MSG_073 -msgid "ISO image scan failure." -msgstr "Kegagalan imbasan imej ISO." - -#. • MSG_074 -msgid "ISO image extraction failure." -msgstr "Pengekstrakan imej ISO gagal." - -#. • MSG_075 -msgid "Unable to remount volume." -msgstr "Tidak dapat melekap semula jilid." - -#. • MSG_076 -msgid "Unable to patch/setup files for boot." -msgstr "Tidak dapat menyediakan fail-fail untuk boot." - -#. • MSG_077 -msgid "Unable to assign a drive letter." -msgstr "Tidak dapat menetapkan huruf pemacu." - -#. • MSG_078 -msgid "Can't mount GUID volume." -msgstr "Tidak boleh lekap jilid GUID." - -#. • MSG_079 -msgid "The device is not ready." -msgstr "Peranti ini tidak sedia untuk digunakan." - -#. • MSG_080 -msgid "" -"Rufus detected that Windows is still flushing its internal buffers onto the USB device.\n" -"\n" -"Depending on the speed of your USB device, this operation may take a long time to complete, especially for large files.\n" -"\n" -"We recommend that you let Windows finish, to avoid corruption. But if you grow tired of waiting, you can just unplug the device..." -msgstr "" -"Rufus mengesan bahawa Windows masih lagi menarik penimbal ke dalam peranti USB.\n" -"\n" -"Bergantung kepada kelajuan peranti USB anda, operasi ini mungkin mengambil masa yang amat lama.Terutamanya untuk fail besar.\n" -"\n" -"Kami cadangkan anda biarkan proses Windows untuk tamat dahulu supaya mengelakkan korupsi.Namun, jika anda kesuntukan masa, anda boleh cabutkan peranti anda..." - -#. • MSG_081 -msgid "Unsupported image" -msgstr "Imej tidak disokong" - -#. • MSG_082 -msgid "This image is either non-bootable, or it uses a boot or compression method that is not supported by Rufus..." -msgstr "Imej ini sama ada tidak boleh boot, atau ia menggunakan kaedah boot atau mampatan yang tidak disokong oleh Rufus..." - -#. • MSG_083 -msgid "Replace %s?" -msgstr "Gantikan %s?" - -#. • MSG_084 -msgid "" -"This ISO image seems to use an obsolete version of '%s'.\n" -"Boot menus may not display properly because of this.\n" -"\n" -"A newer version can be downloaded by Rufus to fix this issue:\n" -"- Choose 'Yes' to connect to the internet and download the file\n" -"- Choose 'No' to leave the existing ISO file unmodified\n" -"If you don't know what to do, you should select 'Yes'.\n" -"\n" -"Note: The new file will be downloaded in the current directory and once a '%s' exists there, it will be reused automatically." -msgstr "" -"Imej ISO ini menggunakan versi '%s' yang telah lapuk.\n" -"Oleh sebab ini, menu boot mungkin tidak dipaparkan dengan betul.\n" -"\n" -"Versi yang lebih baharu boleh dimuat turun oleh Rufus untuk memperbaiki isu ini:\n" -"- Pilih 'Ya' untuk menyambung ke internet dan muat turun fail tersebut\n" -"- Pilih 'Tidak' untuk tidak mengubahsuai fail ISO yang digunakan\n" -"Jika anda tidak pasti apa yang perlu dilakukan, pilih 'Ya'.\n" -"\n" -"Perhatian: Fail yang dimuat turun akan disimpan di dalam direktori bersamaan dengan Rufus dan apabila terdapat '%s' , ia akan digunakan secara automatik." - -#. • MSG_085 -msgid "Downloading %s" -msgstr "Sedang memuat turun %s" - -#. • MSG_086 -msgid "No image selected" -msgstr "Tiada imej yang dipilih" - -#. • MSG_087 -#. -#. This message appears in Advanced format options → Check device for bad blocks → dropdown menu -#. %s will be replaced with SLC, MLC or TLC, which is a type of NAND (or flash memory). In other -#. words, this message should mean "for a flash memory device of type %s". *Please* try to keep -#. the translation as short as possible so that it won't result in an overly large dropdown... -#. If you prefer, it's okay to use "type" or "device" instead of "NAND" (e.g. "for TLC type"). -#. See also MSG_035. -msgid "for %s NAND" -msgstr "untuk %s NAND" - -#. • MSG_088 -msgid "Image is too big" -msgstr "Imej terlalu besar" - -#. • MSG_089 -msgid "The image is too big for the selected target." -msgstr "Imej ini terlalu besar untuk sasaran yang dipilih." - -#. • MSG_090 -msgid "Unsupported ISO" -msgstr "ISO tidak disokong" - -#. • MSG_091 -msgid "When using UEFI Target Type, only EFI bootable ISO images are supported. Please select an EFI bootable ISO or set the Target Type to BIOS." -msgstr "Apabila menggunakan jenis sasaran UEFI , hanya imej boot jenis EFI sahaja disokong. Sila pilih ISO boot jenis EFI atau tukarkan jenis sasaran kepada BIOS." - -#. • MSG_092 -msgid "Unsupported filesystem" -msgstr "Sistem fail tidak disokong" - -#. • MSG_093 -msgid "" -"IMPORTANT: THIS DRIVE CONTAINS MULTIPLE PARTITIONS!!\n" -"\n" -"This may include partitions/volumes that aren't listed or even visible from Windows. Should you wish to proceed, you are responsible for any data loss on these partitions." -msgstr "" -"PENTING: PERANTI INI MEMPUNYAI BEBERAPA PARTISYEN!!\n" -"\n" -"Ini mungkin termasuk partisyen/jilid yang tidak disenaraikan atau tidak boleh dilihat dari Windows. Jika anda mahu meneruskannya, anda bertanggungjawab ke atas kehilangan data dalam partisyen tersebut." - -#. • MSG_094 -msgid "Multiple partitions detected" -msgstr "Beberapa partisyen dikesan" - -#. • MSG_095 -msgid "DD Image" -msgstr "DD Imej" - -#. • MSG_096 -msgid "The file system currently selected can not be used with this type of ISO. Please select a different file system or use a different ISO." -msgstr "Sistem fail yang sedang dipilih tidak boleh digunakan dengan jenis ISO ini. Sila pilih sistem fail berlainan atau gunakan ISO berlainan." - -#. • MSG_097 -msgid "'%s' can only be applied if the file system is NTFS." -msgstr "'Windows To Go' hanya boleh digunakan jika sistem fail adalah NTFS." - -#. • MSG_098 -msgid "" -"IMPORTANT: You are trying to install 'Windows To Go', but your target drive doesn't have the 'FIXED' attribute. Because of this Windows will most likely freeze during boot, as Microsoft hasn't designed it to work with drives that instead have the 'REMOVABLE' attribute.\n" -"\n" -"Do you still want to proceed?\n" -"\n" -"Note: The 'FIXED/REMOVABLE' attribute is a hardware property that can only be changed using custom tools from the drive manufacturer. However those tools are ALMOST NEVER provided to the public..." -msgstr "" -"PENTING: Anda cuba memasang 'Windows To Go', tetapi pemacu sasaran anda tidak mempunyai atribut 'FIXED'. Disebabkan ini Windows akan berkemungkinan besar sangkut sepanjang but, kerana Microsoft tidak merekanya untuk berfungsi dengan pemacu yang sebaliknya mempunyai atribut 'REMOVABLE'.\n" -"\n" -"Adakah anda masih mahu teruskan?\n" -"\n" -"Nota: Atribut 'FIXED/REMOVABLE'adalah sifat perkakasan yang hanya boleh ditukar menggunakan alatan tersuai daripada pengilang pemacu. Bagaimanapun alatan tersebut adalah HAMPIR TIDAK AKAN diberikan kepada umum..." - -#. • MSG_099 -msgid "Filesystem limitation" -msgstr "Had sistem fail" - -#. • MSG_100 -msgid "This ISO image contains a file larger than 4 GB, which is more than the maximum size allowed for a FAT or FAT32 file system." -msgstr "Imej ISO ini mengandungi fail yang lebih besar daripada 4 GB iaitu saiz maksima yang dibenarkan untuk sistem fail FAT atau FAT32." - -#. • MSG_101 -msgid "Missing WIM support" -msgstr "Tiada sokongan WIM" - -#. • MSG_102 -msgid "" -"Your platform cannot extract files from WIM archives. WIM extraction is required to create EFI bootable Windows 7 and Windows Vista USB drives. You can fix that by installing a recent version of 7-Zip.\n" -"Do you want to visit the 7-zip download page?" -msgstr "" -"Platform anda tidak boleh mengekstrak fail daripada arkib WIM. Ini diperlukan untuk mencipta cakera boot EFI Windows 7 dan Windows Vista. Anda boleh membaikinya dengan cara mendapatkan versi 7-Zip terbaharu.\n" -"Adakah anda mahu ke halaman muat turun 7-zip?" - -#. • MSG_103 -msgid "Download %s?" -msgstr "Muat turun %s?" - -#. • MSG_104 -#. -#. Example: "Grub4DOS v0.4 or later requires a 'grldr' file to be installed. Because this -#. file is more than 100 KB in size, and always present on Grub4DOS ISO images (...)" -msgid "" -"%s or later requires a '%s' file to be installed.\n" -"Because this file is more than 100 KB in size, and always present on %s ISO images, it is not embedded in Rufus.\n" -"\n" -"Rufus can download the missing file for you:\n" -"- Select 'Yes' to connect to the internet and download the file\n" -"- Select 'No' if you want to manually copy this file on the drive later\n" -"\n" -"Note: The file will be downloaded in the current directory and once a '%s' exists there, it will be reused automatically." -msgstr "" -"%s atau kemudian memerlukan fail '%s' di komputer anda.\n" -"Oleh sebab fail tersebut lebih besar daripada 100 KB dan sentiasa ada dalam imej %s, Ia tidak termasuk dalam Rufus.\n" -"\n" -"Rufus boleh memuat turun fail tersebut untuk anda:\n" -"- Pilih 'Ya' untuk muat turun fail tersebut\n" -"- Pilih 'Tidak' jika anda mahu menyalin fail tersebut secara manual ke cakera ini pada masa lain\n" -"\n" -"Perhatian: Fail akan dimuat turun ke direktori bersamaan Rufus dan apabila '%s' ada di sana, ia akan digunakan semula secara automatik." - -#. • MSG_105 -msgid "" -"Cancelling may leave the device in an UNUSABLE state.\n" -"If you are sure you want to cancel, click YES. Otherwise, click NO." -msgstr "" -"Pembatalan boleh menyebabkan peranti ini TIDAK BOLEH DIGUNAKAN SEMULA.\n" -"Jika anda pasti anda mahu membatalkannya, klik Ya. Sebaliknya, klik Tidak." - -#. • MSG_106 -msgid "Please select folder" -msgstr "Sila pilih folder" - -#. • MSG_107 -msgid "All files" -msgstr "Semua fail" - -#. • MSG_108 -msgid "Rufus log" -msgstr "Log Rufus" - -#. • MSG_109 -msgid "0x%02X (Disk %d)" -msgstr "0x%02X (Cakera %d)" - -#. • MSG_110 -#. -#. "Cluster size" should be the same as the label for IDS_CLUSTER_SIZE_TXT -#. "kilobytes" should be the same as in MSG_027 -msgid "" -"MS-DOS cannot boot from a drive using a 64 kilobytes Cluster size.\n" -"Please change the Cluster size or use FreeDOS." -msgstr "" -"MS-DOS tidak boleh boot daripada cakera yang menggunakan saiz gugusan 64 kilobait.\n" -"Sila tukarkan saiz gugusan atau gunakan FreeDOS." - -#. • MSG_111 -msgid "Incompatible Cluster size" -msgstr "Saiz gugusan tidak sesuai" - -#. • MSG_112 -#. -#. "%d:%02d" is a duration (mins:secs) -msgid "Formatting a large UDF volumes can take a lot of time. At USB 2.0 speeds, the estimated formatting duration is %d:%02d, during which the progress bar will appear frozen. Please be patient!" -msgstr "Pemformatan jilid UDF yang besar mengambil masa yang amat lama. Pada kelajuan USB 2.0, anggaran masa pemformatan adalah %d:%02d, dimana bar kemajuan akan kelihatan seperti ia tidak bergerak. Sila bersabar!" - -#. • MSG_113 -msgid "Large UDF volume" -msgstr "Jilid UDF besar" - -#. • MSG_114 -msgid "" -"This image uses Syslinux %s%s but this application only includes the installation files for Syslinux %s%s.\n" -"\n" -"As new versions of Syslinux are not compatible with one another, and it wouldn't be possible for Rufus to include them all, two additional files must be downloaded from the Internet ('ldlinux.sys' and 'ldlinux.bss'):\n" -"- Select 'Yes' to connect to the Internet and download these files\n" -"- Select 'No' to cancel the operation\n" -"\n" -"Note: The files will be downloaded in the current application directory and will be reused automatically if present." -msgstr "" -"Imej ini menggunakan Syslinux %s%s tetapi aplikasi ini hanya mempunyai fail pemasangan untukSyslinux %s%s.\n" -"\n" -"Oleh kerana versi-versi baharu Syslinux tidak serasi dengan satu sama lain, maka tidakwajar Rufus menyediakan semuanya, dua fail tambahan perlu dimuat turun dariInternet ('ldlinux.sys' dan 'ldlinux.bss'):\n" -"- Pilih 'Ya' untuk menyambung ke Internet dan memuat turun fail tersebut\n" -"- Pilih 'Tidak' untuk membatalkan operasi\n" -"\n" -"NOTA:Fail akan dimuat turun ke dalam direktori aplikasi ini dan akan digunakan semulasecara automatik sekiranya sedia ada." - -#. • MSG_115 -msgid "Download required" -msgstr "Muat turun diperlukan" - -#. • MSG_116 -#. -#. You should be able to test this message with Super Grub2 Disk ISO: -#. https://sourceforge.net/projects/supergrub2/files/2.00s2/super_grub2_disk_hybrid_2.00s2.iso/download (11.9 MB) -msgid "" -"This image uses Grub %s but the application only includes the installation files for Grub %s.\n" -"\n" -"As different versions of Grub may not be compatible with one another, and it is not possible to include them all, Rufus will attempt to locate a version of the Grub installation file ('core.img') that matches the one from your image:\n" -"- Select 'Yes' to connect to the Internet and attempt to download it\n" -"- Select 'No' to use the default version from Rufus\n" -"- Select 'Cancel' to abort the operation\n" -"\n" -"Note: The file will be downloaded in the current application directory and will be reused automatically if present. If no match can be found online, then the default version will be used." -msgstr "" -"Imej ini menggunakan Grub %s tetapi aplikasi hanya termasuk fail pemasangan untuk Grub %s.\n" -"\n" -"Sepertimana versi Grub berlainan mungkin tidak sesuai antara satu sama lain, dan ianya tidak mungkin untuk memasukkan mereka semua, Rufus akan cuba mengesan versi fail pemasangan Grub ('core.img') yang sepadan dengan salah satu daripada imej anda:\n" -"- Pilih 'Ya' untuk bersambung ke Internet dan cuba memuat turunnya\n" -"- Pilih 'Tidak' untuk menggunakan versi lalai dari Rufus\n" -"- Pilih 'Batal' untuk membatalkan operasi\n" -"\n" -"Nota: Fail akan dimuat turun dalam direktori aplikasi semasa dan akan digunakan semula secara automatik jika ada. Jika tiada padanan boleh dijumpai dalam talian, versi lalai akan digunakan." - -#. • MSG_117 -msgid "Standard Windows installation" -msgstr "Pemasangan Windows biasa" - -#. • MSG_118 -#. -#. Only translate this message *if* Microsoft has a specific name for -#. http://en.wikipedia.org/wiki/Windows_To_Go in your language. -#. Otherwise, you may add a parenthesis eg. "Windows To Go ()" -msgid "Windows To Go" -msgstr "" - -#. • MSG_119 -msgid "advanced drive properties" -msgstr "pilihan tambahan pemacu" - -#. • MSG_120 -msgid "advanced format options" -msgstr "pilihan format tambahan" - -#. • MSG_121 -msgid "Show %s" -msgstr "Tunjuk %s" - -#. • MSG_122 -msgid "Hide %s" -msgstr "Sembunyi %s" - -#. • MSG_123 -#. -#. A persistent partitions can be used with "Live" USB media to store data. -#. It means that data can be preserved across reboots on "Live" USB drives. -#. To test this feature, please download and select 'casper_test.iso' from: -#. https://github.com/pbatard/rufus/raw/master/res/loc/test/casper_test.iso -msgid "Persistent partition size" -msgstr "Saiz pemetakan berterusan (persistence partition)" - -#. • MSG_124 -#. -#. This message appears in the persistence 'Size' control when the slider is set to 0. -#. It is okay to use "No partition" or "None" or "Deactivated" to indicate that a persistent partition will not be -#. created if the width of the control is too small (since the 'Size' edit control is *not* adjusted for width). -msgid "No persistence" -msgstr "Tidak berterusan" - -#. • MSG_125 -#. -#. Tooltips used for the peristence size slider and edit control -msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." -msgstr "Mengeset saiz pemetakan berterusan (persistent partition) untuk media 'live USB'. Setkan saiz kepada 0 untuk melumpuhkan pemetakan berterusan." - -#. • MSG_126 -msgid "Set the partition size units." -msgstr "Set saiz unit pemetakan." - -#. • MSG_127 -msgid "Do not show this message again" -msgstr "Henti papar mesej ini" - -#. • MSG_128 -msgid "Important notice about %s" -msgstr "Notis penting berkenaan %s" - -#. • MSG_129 -msgid "" -"You have just created a media that uses the UEFI:NTFS bootloader. Please remember that, to boot this media, YOU MUST DISABLE SECURE BOOT.\n" -"For details on why this is necessary, see the 'More Information' button below." -msgstr "" -"Anda telah menghasilkan media yang menggunakan bootloader UEFI:NTFS. ANDA PERLU MEMATIKAN PILIHAN SECURE BOOT.\n" -"Untuk mengetahui dengan lebih lanjut, sila klik butang 'Maklumat Lanjut' di bawah." - -#. • MSG_130 -msgid "Windows image selection" -msgstr "Pemilihan imej Windows" - -#. • MSG_131 -msgid "" -"This ISO contains multiple Windows images.\n" -"Please select the image you wish to use for this installation:" -msgstr "" -"ISO ini mengandungi beberapa imej Windows.\n" -"Sila pilih imej yang anda ingin gunakan untuk pemasangan:" - -#. • MSG_132 -msgid "Another program or process is accessing this drive. Do you want to format it anyway?" -msgstr "Terdapat program atau proses lain sedang mencapai pemacu ini. Adakah anda mahu memformatnya juga?" - -#. • MSG_133 -msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" -"\n" -"Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" -"\n" -"Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." -msgstr "" -"Rufus telah mengesan bahawa anda sedang mencuba untuk mencipta media Windows To Go berasaskan imej ISO 1809.\n" -"\n" -"Memandangkan terdapat pepijat dari MICROSOFT, media ini akan menghadapi masalah (Blue Scree Of Death) semasa memulakan Windows, melainkan anda menukar fail 'WppRecorder.sys' kepada versi 1803.\n" -"\n" -"Sila ambil perhatian. Rufus tidak akan membaiki masalah ini kerana 'WppRecorder.sys' adalah hak cipta milik Microsoft dan kami tidak dapat menyertakan salinan fail berkenaan bersama-sama aplikasi ini..." - -#. • MSG_134 -msgid "" -"Because MBR has been selected for the partition scheme, Rufus can only create a partition up to 2 TB on this media, which will leave %s of disk space unavailable.\n" -"\n" -"Are you sure you want to continue?" -msgstr "" -"Memandangkan skema pemetakan MBR telah dipilih, Rufus akan menghasilkan petak storan media dengan saiz maksimum 2 TB, di mana %s ruang cakera adalah tidak tersedia.\n" -"\n" -"Adakah anda pasti ingin meneruskan operasi?" - -#. • MSG_135 -msgid "Version" -msgstr "Versi" - -#. • MSG_136 -msgid "Release" -msgstr "Keluaran" - -#. • MSG_137 -msgid "Edition" -msgstr "Edisi" - -#. • MSG_138 -msgid "Language" -msgstr "Bahasa" - -#. • MSG_139 -msgid "Architecture" -msgstr "Kerangka" - -#. • MSG_140 -msgid "Continue" -msgstr "Terus" - -#. • MSG_141 -msgid "Back" -msgstr "Undur" - -#. • MSG_142 -msgid "Please wait..." -msgstr "Sila tunggu..." - -#. • MSG_143 -msgid "Download using a browser" -msgstr "Muat turun menggunakan pelayar web" - -#. • MSG_144 -msgid "Download of Windows ISOs is unavailable due to Microsoft having altered their website to prevent it." -msgstr "Muat turun ISO Windows tidak tersedia kerana Microsoft telah mengubah laman web mereka untuk menghalangnya." - -#. • MSG_145 -msgid "PowerShell 3.0 or later is required to run this script." -msgstr "PowerShell 3.0 atau versi lebih baru diperlukan untuk menjalankan skrip ini." - -#. • MSG_146 -msgid "Do you want to go online and download it?" -msgstr "Adakah anda ingin ke dalam talian dan memuat turun?" - -#. • MSG_148 -msgid "Running download script..." -msgstr "Menjalankan skrip untuk memuat turun..." - -#. • MSG_149 -msgid "Download ISO Image" -msgstr "Memuat turun imej ISO" - -#. • MSG_150 -msgid "Type of computer you plan to use this bootable drive with. It is your responsibility to determine whether your target is of BIOS or UEFI type before you start creating the drive, as it may fail to boot otherwise." -msgstr "Jenis komputer yang anda merancang untuk menggunakan cakera \"bootable\" ini. Adalah menjadi tanggungjawab anda untuk menentukan sama ada sasaran anda adalah jenis BIOS atau UEFI sebelum anda wujudkan cakera tersebut, kerana ia mungkin gagal untuk boot." - -#. • MSG_151 -#. -#. You shouldn't translate 'Legacy Mode' as this is an option that usually appears in English in the UEFI settings. -msgid "'UEFI-CSM' means that the device will only boot in BIOS emulation mode (also known as 'Legacy Mode') under UEFI, and not in native UEFI mode." -msgstr "'UEFI-CSM' bermaksud peranti hanya akan boot di dalam mod emulasi BIOS (juga dikenali sebagai 'Legacy Mode') dibawah UEFI, dan bukan dalam mod asli UEFI." - -#. • MSG_152 -msgid "'non CSM' means that the device will only boot in native UEFI mode, and not in BIOS emulation mode (also known as 'Legacy Mode')." -msgstr "'bukan CSM' bermaksud peranti hanya akan boot di dalam mod asli UEFI, dan bukan di mod emulasi BIOS (juga dikenali sebagai 'Legacy Mode')." - -#. • MSG_153 -msgid "Test pattern: 0x%02X" -msgstr "Uji corak: 0x%02X" - -#. • MSG_154 -msgid "Test pattern: 0x%02X, 0x%02X" -msgstr "Uji corak: 0x%02X, 0x%02X" - -#. • MSG_155 -msgid "Test pattern: 0x%02X, 0x%02X, 0x%02X" -msgstr "Uji corak: 0x%02X, 0x%02X, 0x%02X" - -#. • MSG_156 -msgid "Test pattern: 0x%02X, 0x%02X, 0x%02X, 0x%02X" -msgstr "Uji corak: 0x%02X, 0x%02X, 0x%02X, 0x%02X" - -#. • MSG_157 -msgid "Sets the target filesystem" -msgstr "Menetapkan sistem fail sasaran" - -#. • MSG_158 -msgid "Minimum size that a block of data will occupy in the filesystem" -msgstr "Saiz minima satu blok data akan gunakan dalam sistem fail" - -#. • MSG_159 -msgid "" -"Use this field to set the drive label.\n" -"International characters are accepted." -msgstr "" -"Gunakan ini untuk tetapkan label cakera.\n" -"Huruf antarabangsa boleh digunakan." - -#. • MSG_160 -msgid "Toggle advanced options" -msgstr "Togel pilihan lanjutan" - -#. • MSG_161 -msgid "Check the device for bad blocks using a test pattern" -msgstr "Semak peranti untuk blok rosak menggunakan corak ujian" - -#. • MSG_162 -msgid "Uncheck this box to use the \"slow\" format method" -msgstr "Nyahtanda kotak ini untuk menggunakan kaedah pemformatan perlahan" - -#. • MSG_163 -msgid "Method that will be used to create partitions" -msgstr "Kaedah yang digunakan untuk mencipta partisyen" - -#. • MSG_164 -msgid "Method that will be used to make the drive bootable" -msgstr "Kaedah yang digunakan untuk membuat cakera boot" - -#. • MSG_165 -msgid "Click to select or download an image..." -msgstr "Klik untuk memilih atau memuat turun imej..." - -#. • MSG_166 -msgid "Check this box to allow the display of international labels and set a device icon (creates an autorun.inf)" -msgstr "Klik kotak ini untuk membenarkan paparan label antarabangsa dan menetapkan ikon cakera (akan membuat fail autorun.inf)" - -#. • MSG_167 -msgid "Install an MBR that allows boot selection and can masquerade the BIOS USB drive ID" -msgstr "Memasang MBR yang membenarkan pilihan boot dan mampu menyamar ID BIOS USB" - -#. • MSG_168 -msgid "" -"Try to masquerade first bootable USB drive (usually 0x80) as a different disk.\n" -"This should only be necessary if you install Windows XP and have more than one disk." -msgstr "" -"Cuba menyamarkan cakera USB boot (biasanya 0x80) sebagai cakera lain.\n" -"Ini hanya diperlukan jika anda memasang Windows XP dan mempunyai lebih daripada satu cakera." - -#. • MSG_169 -msgid "" -"Create an extra hidden partition and try to align partitions boundaries.\n" -"This can improve boot detection for older BIOSes." -msgstr "" -"Ciptakan partisyen tambahan tersembunyi dan cuba melaraskan sempadan partisyen.\n" -"Ini boleh mempertingkatkan pengesanan boot untuk BIOS lama." - -#. • MSG_170 -msgid "Enable the listing of USB Hard Drive enclosures. USE AT YOUR OWN RISKS!!!" -msgstr "Membolehkan penyenaraian pagaran cakera keras USB. GUNAKAN ATAS RISIKO SENDIRI!!!" - -#. • MSG_171 -msgid "" -"Start the formatting operation.\n" -"This will DESTROY any data on the target!" -msgstr "" -"Mulakan operasi pemformatan.\n" -"Ini akan MEMADAMKAN semua data pada sasaran!" - -#. • MSG_172 -#. -#. As of Rufus 3.2, *ALL* downloads from the servers are digitally signed, and their signature is validated using the -#. public key that is embedded in the application. This message appears in an error dialog if the validation fails. -msgid "Invalid download signature" -msgstr "Tandatangan digital muat turun tidak sah" - -#. • MSG_173 -msgid "Click to select..." -msgstr "Klik untuk memilih..." - -#. • MSG_174 -msgid "Rufus - The Reliable USB Formatting Utility" -msgstr "Rufus - Utiliti pemformatan USB yang dipercayai" - -#. • MSG_175 -msgid "Version %d.%d (Build %d)" -msgstr "Versi %d.%d (Build %d)" - -#. • MSG_176 -msgid "English translation: Pete Batard " -msgstr "" -"Terjemahan Bahasa Malaysia:\\line\n" -"• Muhammad Aman \\line\n" -"• VGPlayer \\line\n" -"• Mohamad Ikhwan bin Kori " - -#. • MSG_177 -msgid "Report bugs or request enhancements at:" -msgstr "Laporkan masalah atau cadangan penambahbaikan di:" - -#. • MSG_178 -msgid "Additional Copyrights:" -msgstr "Hak cipta tambahan:" - -#. • MSG_179 -msgid "Update Policy:" -msgstr "Polisi kemaskini:" - -#. • MSG_180 -msgid "If you choose to allow this program to check for application updates, you agree that the following information may be collected on our server(s):" -msgstr "Jika anda pilih untuk membenarkan perisian ini menyemak untuk aplikasi versi baharu, anda bersetuju untuk membenarkan pelayan kami mengumpulkan maklumat berikut:" - -#. • MSG_181 -msgid "Your operating system's architecture and version" -msgstr "Versi dan kerangka sistem operasi" - -#. • MSG_182 -msgid "The version of the application you use" -msgstr "Versi aplikasi yang anda gunakan" - -#. • MSG_183 -msgid "Your IP address" -msgstr "Alamat IP anda" - -#. • MSG_184 -msgid "For the purpose of generating private usage statistics, we may keep the information collected, \\b for at most a year\\b0 . However, we will not willingly disclose any of this individual data to third parties." -msgstr "Untuk tujuan menjana statistik penggunaan peribadi , kami mungkin menyimpan maklumat yang dikumpulkan, \\b untuk sekurang-kurangnya setahun\\b0 . Namun, kami tidak rela untuk mendedahkan maklumat ini kepada mana-mana pihak ketiga." - -#. • MSG_185 -msgid "Update Process:" -msgstr "Proses mengemas kini:" - -#. • MSG_186 -msgid "" -"Rufus does not install or run background services, therefore update checks are performed only when the main application is running.\\line\n" -"Internet access is of course required when checking for updates." -msgstr "" -"Rufus tidak memasang atau menjalankan servis di latar belakang. Oleh itu, semakan kemas kini hanya dijalankan apabila aplikasi utama berjalan.\\line\n" -"Akses internet diperlukan untuk menyemak untuk versi baru." - -#. • MSG_187 -msgid "Invalid image for selected boot option" -msgstr "Imej tidak sah untuk pilihan boot yang dipilih" - -#. • MSG_188 -msgid "The current image doesn't match the boot option selected. Please use a different image or choose a different boot option." -msgstr "Imej\ttidak serasi dengan pilihan boot yang dipilih. Sila gunakan imej lain atau pilih pilihan boot lain." - -#. • MSG_189 -msgid "This ISO image is not compatible with the selected filesystem" -msgstr "Imej ISO ini tidak serasi dengan sistem fail yang dipilih" - -#. • MSG_190 -msgid "Incompatible drive detected" -msgstr "Pemacu tidak serasi dikesan" - -#. • MSG_191 -#. -#. Used in MSG_235 -msgid "Write pass" -msgstr "Melepasi tulisan" - -#. • MSG_192 -#. -#. Used in MSG_235 -msgid "Read pass" -msgstr "Melepasi bacaan" - -#. • MSG_193 -msgid "Downloaded %s" -msgstr "Muat turun %s" - -#. • MSG_194 -msgid "Could not download %s" -msgstr "Tidak boleh muat turun %s" - -#. • MSG_195 -#. -#. Example: "Using embedded version of Grub2 file(s)" -msgid "Using embedded version of %s file(s)" -msgstr "Menggunakan %s fail versi dibenam" - -#. • MSG_196 -msgid "" -"IMPORTANT: THIS DRIVE USES A NONSTANDARD SECTOR SIZE!\n" -"\n" -"Conventional drives use a 512-byte sector size but this drive uses a %d-byte one. In many cases, this means that you will NOT be able to boot from this drive.\n" -"Rufus can try to create a bootable drive, but there is NO WARRANTY that it will work." -msgstr "" -"PENTING: PEMACU INI MENGGUNAKAN SAIZ SEKTOR BUKAN PIAWAIAN!\n" -"\n" -"Pemacu konvensional mengunakan saiz sektor 512 bait tetapi pemacu ini menggunakan %d bait. Dalam banyak kes, ini bermaksud anda TIDAK akan mampu untuk but dari pemacu ini.\n" -"Rufus boleh cuba untuk mencipta pemacu boleh but, tetapi TIDAK ADA JAMINAN ianya akan berfungsi." - -#. • MSG_197 -msgid "Nonstandard sector size detected" -msgstr "Saiz sektor bukan standard dikesan" - -#. • MSG_198 -msgid "'Windows To Go' can only be installed on a GPT partitioned drive if it has the FIXED attribute set. The current drive was not detected as FIXED." -msgstr "'Windows To Go' hanya boleh dipasang dalam pemacu berpartisyen GPT jika ia mempunyai set atribut 'FIXED'. Pemacu semasa tidak dikesan sebagai 'FIXED'." - -#. • MSG_199 -msgid "This feature is not available on this platform." -msgstr "Ciri ini tidak tersedia di platform ini." - -#. • MSG_201 -msgid "Cancelling - Please wait..." -msgstr "Sedang membatalkan - Sila tunggu..." - -#. • MSG_202 -msgid "Scanning image..." -msgstr "Mengimbas imej..." - -#. • MSG_203 -msgid "Failed to scan image" -msgstr "Imbasan imej gagal" - -#. • MSG_204 -#. -#. %s is the name of an obsolete Syslinux .c32 module. Example: "Obsolete vesamenu.c32 detected" -msgid "Obsolete %s detected" -msgstr "%s lapuk dikesan" - -#. • MSG_205 -#. -#. Display the name of the image selected. eg: "Using image: en_win7_x64_sp1.iso" -msgid "Using image: %s" -msgstr "Menggunakan imej: %s" - -#. • MSG_206 -#. -#. Example: "Missing ldlinux.c32 file" -msgid "Missing %s file" -msgstr "Tidak menjumpai fail %s" - -#. • MSG_207 -#. -#. The name proposed by Windows' Computer Management → Disk Management when you try to format -#. a drive with an empty label. For an example, see https://rufus.ie/pics/default_name.png. -msgid "New Volume" -msgstr "Jilid baharu" - -#. • MSG_208 -#. -#. Singular. Example: "1 device found" -msgid "%d device found" -msgstr "%d peranti dijumpai" - -#. • MSG_209 -#. -#. Plural. Example: "3 devices found" -msgid "%d devices found" -msgstr "%d peranti dijumpai" - -#. • MSG_210 -msgid "READY" -msgstr "SEDIA" - -#. • MSG_211 -msgid "Cancelled" -msgstr "DIBATALKAN" - -#. • MSG_212 -msgid "Failed" -msgstr "GAGAL" - -#. • MSG_213 -#. -#. Used when a new update has been downloaded and launched -msgid "Launching new application..." -msgstr "Melancarkan aplikasi baru..." - -#. • MSG_214 -msgid "Failed to launch new application" -msgstr "Gagal untuk melancarkan aplikasi baru" - -#. • MSG_215 -#. -#. Example: "Opened some_file.txt" -msgid "Opened %s" -msgstr "%s dibuka" - -#. • MSG_216 -#. -#. Example: "Saved rufus.log" -msgid "Saved %s" -msgstr "%s disimpan" - -#. • MSG_217 -#. -#. Formatting status -msgid "Formatting: %s" -msgstr "Pemformatan: %s" - -#. • MSG_218 -msgid "Creating file system: Task %d/%d completed" -msgstr "Mencipta sistem fail: Tugas %d/%d selesai" - -#. • MSG_219 -msgid "NTFS Fixup: %d%% completed" -msgstr "Pembaikian NTFS: %d%% selesai" - -#. • MSG_220 -#. -#. Parameter: the file system and an estimated duration in mins and secs. -#. Example: "Formatting (UDF) - Estimated duration 3:21..." -#. If "estimated duration" is too long, just use "estimated" or an abbreviation -msgid "Formatting (%s) - estimated duration %d:%02d..." -msgstr "Pemformatan (%s) - Jangka masa anggaran %d:%02d..." - -#. • MSG_221 -msgid "Setting label (%s)..." -msgstr "Menetapkan Label (%s)..." - -#. • MSG_222 -#. -#. Example: "Formatting (FAT32)..." -msgid "Formatting (%s)..." -msgstr "Pemformatan (%s)..." - -#. • MSG_223 -msgid "NTFS Fixup (Checkdisk)..." -msgstr "Pembaikian NTFS (Periksa cakera)..." - -#. • MSG_224 -msgid "Clearing MBR/PBR/GPT structures..." -msgstr "Memadam struktur MBR/PBR/GPT..." - -#. • MSG_225 -msgid "Requesting disk access..." -msgstr "Meminta akses cakera..." - -#. • MSG_226 -msgid "Analyzing existing boot records..." -msgstr "Menganalisis rekod boot sedia ada..." - -#. • MSG_227 -msgid "Closing existing volume..." -msgstr "Menutup jilid sedia ada..." - -#. • MSG_228 -msgid "Writing Master Boot Record..." -msgstr "Menulis \"Rekod master boot\"..." - -#. • MSG_229 -msgid "Writing Partition Boot Record..." -msgstr "Menulis \"Rekod boot partisyen\"..." - -#. • MSG_230 -msgid "Copying DOS files..." -msgstr "Menyalin fail DOS..." - -#. • MSG_231 -msgid "Copying ISO files: %s" -msgstr "Menyalin fail ISO: %s" - -#. • MSG_232 -msgid "Win7 EFI boot setup (%s)..." -msgstr "Persediaan boot EFI Win7 (%s)..." - -#. • MSG_233 -msgid "Finalizing, please wait..." -msgstr "Menyiapkan, sila tunggu..." - -#. • MSG_234 -#. -#. Takes a Syslinux version as parameter. -#. Example: "Installing Syslinux v5.10..." -msgid "Installing Syslinux %s..." -msgstr "Memasang Syslinux %s..." - -#. • MSG_235 -#. -#. Bad blocks status. Example: "Bad Blocks: Write pass 1/2 - 12.34% (0/0/1 errors)" -#. See MSG_191 & MSG_192 for "Write pass"/"Read pass" translation. -msgid "Bad Blocks: %s %d/%d - %0.2f%% (%d/%d/%d errors)" -msgstr "Blok rosak: %s %d/%d - %0.2f%% (%d/%d/%d kesilapan)" - -#. • MSG_236 -msgid "Bad Blocks: Testing with random pattern" -msgstr "Blok rosak: menguji dengan corak rawak" - -#. • MSG_237 -msgid "Bad Blocks: Testing with pattern 0x%02X" -msgstr "Blok rosak: Menguji dengan corak 0x%02X" - -#. • MSG_238 -#. -#. Example: "Partitioning (MBR)..." -msgid "Partitioning (%s)..." -msgstr "Mempartisyenkan (%s)..." - -#. • MSG_239 -msgid "Deleting partitions (%s)..." -msgstr "Memadam partisyen (%s)..." - -#. • MSG_240 -#. -#. This message has to do with the signature validation that Rufus uses when downloading an update. -msgid "" -"The signature for the downloaded update can not be validated. This could mean that your system is improperly configured for signature validation or indicate a malicious download.\n" -"\n" -"The download will be deleted. Please check the log for more details." -msgstr "" -"Tandatangan untuk pengemaskinian telah dimuat turun tidak dapat disahkan. Ini boleh bermakna bahawa sistem anda dikonfigurasi dengan salah untuk pengesahan tandatangan atau menunjukkan fail yang dimuat turun berisi dengan virus\n" -"\n" -"Fail yang dimuat turun akan dihapuskan. Sila periksa log untuk maklumat lanjut." - -#. • MSG_241 -msgid "Downloading: %s" -msgstr "Memuat turun: %s" - -#. • MSG_242 -msgid "Failed to download file." -msgstr "Gagal memuat turun fail." - -#. • MSG_243 -msgid "Checking for Rufus updates..." -msgstr "Memeriksa untuk kemas kini Rufus..." - -#. • MSG_244 -msgid "Updates: Unable to connect to the internet" -msgstr "Kemas kini: Tidak dapat menyambung ke internet" - -#. • MSG_245 -msgid "Updates: Unable to access version data" -msgstr "Kemas kini: Tidak dapat mengakses data versi" - -#. • MSG_246 -msgid "A new version of Rufus is available!" -msgstr "Versi baru Rufus boleh didapati!" - -#. • MSG_247 -msgid "No new version of Rufus was found" -msgstr "Tiada versi baru Rufus didapati" - -#. • MSG_248 -msgid "Application registry keys successfully deleted" -msgstr "Kekunci daftar aplikasi berjaya dipadam" - -#. • MSG_249 -msgid "Failed to delete application registry keys" -msgstr "Gagal memadam kekunci daftar aplikasi" - -#. • MSG_250 -#. -#. Example: "Fixed disk detection enabled", "ISO size check disabled", etc. -msgid "%s enabled" -msgstr "%s dibolehkan" - -#. • MSG_251 -msgid "%s disabled" -msgstr "%s tidak dibolehkan" - -#. • MSG_252 -msgid "Size checks" -msgstr "Menyemak saiz" - -#. • MSG_253 -msgid "Hard disk detection" -msgstr "Pengesanan cakera keras" - -#. • MSG_254 -msgid "Force large FAT32 formatting" -msgstr "Memaksa pemformatan FAT32 besar" - -#. • MSG_255 -msgid "NoDriveTypeAutorun will be deleted on exit" -msgstr "NoDriveTypeAutorun akan dipadam apabila keluar" - -#. • MSG_256 -msgid "Fake drive detection" -msgstr "Pengesanan cakera palsu" - -#. • MSG_257 -msgid "Joliet support" -msgstr "Sokongan Joliet" - -#. • MSG_258 -msgid "Rock Ridge support" -msgstr "Sokongan Rock Ridge" - -#. • MSG_259 -msgid "Force update" -msgstr "Paksa kemas kini" - -#. • MSG_260 -msgid "NTFS compression" -msgstr "Mampatan NTFS" - -#. • MSG_261 -msgid "Writing image: %s" -msgstr "Menulis imej: %s" - -#. • MSG_262 -#. -#. Cheat mode message to disable ISO Support, so that only DD images can be opened -msgid "ISO Support" -msgstr "Sokongan ISO" - -#. • MSG_263 -#. -#. Cheat mode to force legacy size units, where 1 KB is 1024 bytes and NOT that fake 1000 bytes abomination! -msgid "Use PROPER size units" -msgstr "Guna saiz seunit yang BETUL" - -#. • MSG_264 -msgid "Deleting directory '%s'" -msgstr "Memadam direktori '%s'" - -#. • MSG_265 -msgid "VMWare disk detection" -msgstr "Pengesanan cakera VMWare" - -#. • MSG_266 -msgid "Dual UEFI/BIOS mode" -msgstr "Mod dwi UEFI/BIOS" - -#. • MSG_267 -msgid "Applying Windows image: %s" -msgstr "Menggunakan imej Windows: %s" - -#. • MSG_268 -msgid "Applying Windows image..." -msgstr "Menggunakan imej Windows..." - -#. • MSG_269 -msgid "Preserve timestamps" -msgstr "Mengekalkan cap masa" - -#. • MSG_270 -msgid "USB debug" -msgstr "Nyahpijat USB" - -#. • MSG_271 -msgid "Computing image checksums: %s" -msgstr "Mengira semak tambah imej: %s" - -#. • MSG_272 -msgid "Compute the MD5, SHA1 and SHA256 checksums for the selected image" -msgstr "Mengira semak tambah MD5, SHA1 dan SHA256 imej dipilih" - -#. • MSG_273 -msgid "Change the application language" -msgstr "Menukar bahasa aplikasi" - -#. • MSG_274 -msgid "%s image detected" -msgstr "%s imej dikesan" - -#. • MSG_275 -#. -#. '%s' will be replaced with your translations for MSG_036 ("ISO Image") and MSG_095 ("DD Image") -msgid "" -"The image you have selected is an 'ISOHybrid' image. This means it can be written either in %s (file copy) mode or %s (disk image) mode.\n" -"Rufus recommends using %s mode, so that you always have full access to the drive after writing it.\n" -"However, if you encounter issues during boot, you can try writing this image again in %s mode.\n" -"\n" -"Please select the mode that you want to use to write this image:" -msgstr "" -"Imej yang anda telah pilih adalah imej 'ISOHybrid'. Ini bermaksud ia boleh ditulis sama ada dalam %s mod (salinan fail) atau %s mod (imej cakera).\n" -"Rufus galakkan menggunakan mod %s, jadi anda selalu mempunyai akses penuh ke pemacu selepas menulisnya.\n" -"Bagaimanapun, jika anda menghadapi isu-isu semasa boot, anda boleh cuba menulis imej ini lagi dalam mod %s.\n" -"\n" -"Sila pilih mod yang anda mahu guna untuk menulis imej ini:" - -#. • MSG_276 -#. -#. '%s' will be replaced with your translation for MSG_036 ("ISO Image") -msgid "Write in %s mode (Recommended)" -msgstr "Menulis dalam mod %s (Digalakkan)" - -#. • MSG_277 -#. -#. '%s' will be replaced with your translation for MSG_095 ("DD Image") -msgid "Write in %s mode" -msgstr "Menulis dalam mod %s" - -#. • MSG_278 -msgid "Checking for conflicting processes..." -msgstr "Menyemak proses yang berkonflik." - -#. • MSG_279 -msgid "Non bootable" -msgstr "Tidak boleh boot" - -#. • MSG_280 -msgid "Disk or ISO image" -msgstr "Cakera atau imej ISO" - -#. • MSG_281 -msgid "%s (Please select)" -msgstr "%s (Sila pilih)" - -#. • MSG_282 -msgid "Exclusive USB drive locking" -msgstr "Penguncian pemacu USB eksklusif" - -#. • MSG_283 -msgid "Invalid signature" -msgstr "Tandatangan tidak sah" - -#. • MSG_284 -msgid "The downloaded executable is missing a digital signature." -msgstr "'Executable' yang dimuat turun kehilangan tandatangan digital." - -#. • MSG_285 -msgid "" -"The downloaded executable is signed by '%s'.\n" -"This is not a signature we recognize and could indicate some form of malicious activity...\n" -"Are you sure you want to run this file?" -msgstr "" -"'Executable' yang dimuat turun ditandatangani oleh '%s'.\n" -"Ini bukannya tandatangan yang kami kenal dan boleh menunjukkan beberapa bentuk aktiviti berniat jahat...\n" -"Adakah anda pasti anda mahu menjalankan fail ini?" - -#. • MSG_286 -msgid "Zeroing drive: %s" -msgstr "Mensifarkan pemacu: %s" - -#. • MSG_287 -msgid "Detection of non-USB removable drives" -msgstr "Mengesan cakera bukan USB" - -#. • MSG_288 -msgid "Missing elevated privileges" -msgstr "Hilang hak kebenaran istimewa" - -#. • MSG_289 -msgid "This application can only run with elevated privileges" -msgstr "Aplikasi ini hanya boleh digunakan apabila diberikan hak kebenaran istimewa" - -#. • MSG_290 -msgid "File Indexing" -msgstr "Pengindeksan Fail" - -#. • MSG_291 -msgid "Version selection" -msgstr "Pemilihan versi" - -#. • MSG_292 -msgid "Please select the version of Windows you want to install:" -msgstr "Sila pilih versi Windows yang anda ingin memasang:" - -#. • MSG_293 -msgid "Unsupported Windows version" -msgstr "Versi Windows tidak disokong" - -#. • MSG_294 -msgid "" -"This version of Windows is no longer supported by Rufus.\n" -"The last version of Rufus compatible with this platform is v%d.%d." -msgstr "" -"Versi Windows ini tidak lagi disokong oleh Rufus.\n" -"Versi terakhir Rufus yang serasi dengan platform ini ialah v%d.%d." - -#. • MSG_295 -msgid "Warning: Unofficial version" -msgstr "Amaran: versi bukan rasmi" - -#. • MSG_296 -msgid "" -"This version of Rufus was not produced by its official developer(s).\n" -"\n" -"Are you sure you want to run it?" -msgstr "" -"Versi Rufus ini bukan dibuat oleh pemaju-pemaju rasmi Rufus. \n" -"\n" -"Adakan anda yakin ingin menggunakannya?" - -#. • MSG_297 -msgid "Truncated ISO detected" -msgstr "ISO yang dipenggal dikesan" - -#. • MSG_298 -msgid "" -"The ISO file you have selected does not match its declared size: %s of data is missing!\n" -"\n" -"If you obtained this file from the Internet, you should try to download a new copy and verify that the MD5 or SHA checksums match the official ones.\n" -"\n" -"Note that you can compute the MD5 or SHA in Rufus by clicking the (✓) button." -msgstr "" -"Saiz fail ISO yang anda pilih adalah tidak sama dengan saiz yang diisytiharkan oleh fail ISO ini. %s data telah hilang!\n" -"\n" -"Jika fail ini diperolehi dari intenet, anda sepatutnya muat turun semula fail ini dan sahkan bahawa tandatangan MD5 atau SHA adalah sama dengan versi yang rasmi.\n" -"\n" -"Anda boleh dapatkan MD5 atau SHA fail yang dipilih ini dengan menekan butang (✓). Kemudian anda perlu membandingkan dengan MD5 atau SHA daripada fail yang rasmi." - -#. • MSG_299 -msgid "Timestamp validation error" -msgstr "Ralat validasi cap waktu" - -#. • MSG_300 -msgid "" -"Rufus could not validate that the timestamp of the downloaded update is more recent than the one for the current executable.\n" -"\n" -"In order to prevent potential attack scenarios, the update process has been aborted and the download will be deleted. Please check the log for more details." -msgstr "" -"Rufus tidak dapat mengesahkan bahawa kemas kini yang dimuat turun adalah lebih baru daripada aplikasi yang dijalankan sekarang.\n" -"\n" -"Untuk mengelakkan daripada senario dimana PC diserang dengan virus, proses kemaskini telah dibatalkan dan fail yang telah dimuat turun akan dipadam. Sila semak log untuk maklumat lanjut." - -#. • MSG_301 -msgid "Show application settings" -msgstr "Tunjuk tetapan aplikasi" - -#. • MSG_302 -msgid "Show information about this application" -msgstr "Paparkan maklumat tentang aplikasi ini" - -#. • MSG_303 -msgid "Show the log" -msgstr "Paparkan log" - -#. • MSG_304 -msgid "Create a disk image of the selected device" -msgstr "Cipta imej cakera untuk peranti yang dipilih" - -#. • MSG_305 -msgid "Use this option to indicate if you plan to install Windows to a different disk, or if you want to run Windows directly from this drive (Windows To Go)." -msgstr "Pilih pilihan ini jika anda mahu memasang Windows pada komputer lain atau ingin menggunakan Windows terus daripada cakera/media ini (Windows To Go)" - -#. • MSG_306 -#. -#. You can see this status message by pressing -- and then selecting START. -#. It's the same as MSG_286 but with a process that *may* be faster, hence the name. -msgid "Fast-zeroing drive: %s" -msgstr "Mensifarkan pemacu 'Fast': %s" - -#. • MSG_307 -msgid "this may take a while" -msgstr "ini mungkin mengambil sedikit masa" - -#. • MSG_308 -msgid "VHD detection" -msgstr "Pengesanan VHD" - -#. • MSG_309 -msgid "Compressed archive" -msgstr "Arkib termampat" - -#. • MSG_310 -msgid "" -"The ISO you have selected uses UEFI and is small enough to be written as an EFI System Partition (ESP). Writing to an ESP, instead of writing to a generic data partition occupying the whole disk, can be preferable for some types of installations.\n" -"\n" -"Please select the mode that you want to use to write this image:" -msgstr "" -"ISO yang anda pilih menggunakan UEFI dan cukup kecil untuk ditulis sebagai Partition Sistem EFI (ESP). Menulis kepada ESP, bukannya menulis kepada partition data generik yang menduduki keseluruhan cakera, boleh menjadi lebih baik untuk beberapa jenis pemasangan.\n" -"\n" -"Sila pilih mod yang anda mahu gunakan untuk menulis imej ini:" - -#. • MSG_311 -msgid "Use %s (in the main application window) to enable." -msgstr "Gunakan %s (dalam tetingkap aplikasi utama) untuk mendayakan." - -#. • MSG_312 -msgid "Extra hashes (SHA512)" -msgstr "Cincangan tambahan (SHA512)" - -#. • MSG_313 -msgid "Save to VHD" -msgstr "Simpan ke VHD" - -#. • MSG_314 -msgid "Compute image checksums" -msgstr "Pengiraan semakan imej" - -#. • MSG_315 -msgid "Multiple buttons" -msgstr "Pelbagai butang" - -#. • MSG_316 -msgid "Number of passes" -msgstr "Bilangan pas" - -#. • MSG_317 -msgid "Disk ID" -msgstr "ID Cakera" - -#. • MSG_318 -msgid "Default thread priority: %d" -msgstr "Keutamaan benang lalai: %d" - -#. • MSG_319 -msgid "Ignore Boot Marker" -msgstr "Abaikan penanda but" - -#. • MSG_320 -msgid "Refreshing partition layout (%s)..." -msgstr "Tataletak partition yang menyegarkan (%s)..." - -#. • MSG_321 -msgid "" -"The image you have selected is an ISOHybrid, but its creators have not made it compatible with ISO/File copy mode.\n" -"As a result, DD image writing mode will be enforced." -msgstr "" -"Imej yang anda pilih ialah ISOHybrid, tetapi penciptanya tidak menjadikannya serasi dengan mod salinan ISO/Fail.\n" -"Akibatnya, mod penulisan imej DD akan dikuatkuasakan." - -#. • MSG_322 -msgid "Unable to open or read '%s'" -msgstr "Tidak dapat membuka atau membaca '%s'" - -#. • MSG_325 -msgid "Applying Windows customization: %s" -msgstr "Menggunakan penyesuaian Windows: %s" - -#. • MSG_326 -msgid "Applying user options..." -msgstr "Menggunakan pilihan pengguna..." - -#. • MSG_327 -msgid "Windows User Experience" -msgstr "Pengalaman Pengguna Windows" - -#. • MSG_328 -msgid "Customize Windows installation?" -msgstr "Sesuaikan pemasangan Windows?" - -#. • MSG_329 -msgid "Remove requirement for 4GB+ RAM, Secure Boot and TPM 2.0" -msgstr "Alih keluar keperluan untuk 4GB+ RAM, But Selamat dan TPM 2.0" - -#. • MSG_330 -msgid "Remove requirement for an online Microsoft account" -msgstr "Alih keluar keperluan untuk akaun Microsoft dalam talian" - -#. • MSG_331 -msgid "Disable data collection (Skip privacy questions)" -msgstr "Nyahdayakan pengumpulan data (Langkau soalan privasi)" - -#. • MSG_332 -msgid "Prevent Windows To Go from accessing internal disks" -msgstr "Halang Windows To Go daripada mengakses cakera dalaman" - -#. • MSG_333 -msgid "Create a local account with username:" -msgstr "Buat akaun tempatan dengan nama pengguna:" - -#. • MSG_334 -msgid "Set regional options to the same values as this user's" -msgstr "Mengesetkan opsyen rantau kepada nilai yang sama seperti pengguna ini" - -#. • MSG_335 -msgid "Disable BitLocker automatic device encryption" -msgstr "Lumpuhkan penyulitan peranti automatik BitLocker" - -#. • MSG_336 -msgid "Persistent log" -msgstr "Log berterusan" - -#. • MSG_900 -#. -#. The following messages are for the Windows Store listing only and are not used by the application -msgid "Rufus is a utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc." -msgstr "Rufus adalah utiliti yang membantu memformat dan mencipta pemacu kilat USB boot, seperti pemacu pen/kekunci USB, kayu memori, dan lain-lain." - -#. • MSG_901 -msgid "Official site: %s" -msgstr "Laman rasmi: %s" - -#. • MSG_902 -msgid "Source Code: %s" -msgstr "Kod Sumber: %s" - -#. • MSG_903 -msgid "ChangeLog: %s" -msgstr "" - -#. • MSG_904 -#. -#. The gnu.org website has many translations of the GPL (such as https://www.gnu.org/licenses/gpl-3.0.zh-cn.html, https://www.gnu.org/licenses/gpl-3.0.fr.html) -#. Please make sure you try to locate the relevant https://www.gnu.org/licenses/gpl-3.0..html for your language and use it here. -msgid "" -"This application is licensed under the terms of the GNU Public License (GPL) version 3.\n" -"See https://www.gnu.org/licenses/gpl-3.0.en.html for details." -msgstr "" -"Permohonan ini dilesenkan di bawah syarat-syarat Lesen Awam GNU (GPL) versi 3.\n" -"Lihat https://www.gnu.org/licenses/gpl-3.0.html untuk butiran." - -#. • MSG_905 -#. -#. Keyword for "boot" will be used for search in the Windows Store -msgid "Boot" -msgstr "" - -#. • MSG_910 -#. -#. This and subsequent messages will be listed in the 'Features' section of the Windows Store page -msgid "Format USB, flash card and virtual drives to FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" -msgstr "Formatkan USB, kad flash dan pemacu maya kepada FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" - -#. • MSG_911 -msgid "Create FreeDOS bootable USB drives" -msgstr "Buat pemacu USB boleh boot FreeDOS" - -#. • MSG_912 -msgid "Create bootable drives from bootable ISOs (Windows, Linux, etc.)" -msgstr "Buat pemacu boleh boot daripada ISO boleh boot (Windows, Linux, dll.)" - -#. • MSG_913 -msgid "Create bootable drives from bootable disk images, including compressed ones" -msgstr "Buat pemacu boleh boot daripada imej cakera boleh boot, termasuk yang dimampatkan" - -#. • MSG_914 -msgid "Create BIOS or UEFI bootable drives, including UEFI bootable NTFS" -msgstr "Buat pemacu boleh boot BIOS atau UEFI, termasuk NTFS boleh boot UEFI" - -#. • MSG_915 -msgid "Create 'Windows To Go' drives" -msgstr "Buat pemacu 'Windows To Go'" - -#. • MSG_916 -msgid "Create Windows 11 installation drives for PCs that don't have TPM or Secure Boot" -msgstr "Buat pemacu pemasangan Windows 11 untuk PC yang tidak mempunyai TPM atau But Selamat" - -#. • MSG_917 -msgid "Create persistent Linux partitions" -msgstr "Buat partition Linux berterusan" - -#. • MSG_918 -msgid "Create VHD/DD images of the selected drive" -msgstr "Buat imej VHD/DD bagi pemacu yang dipilih" - -#. • MSG_919 -msgid "Compute MD5, SHA-1, SHA-256 and SHA-512 checksums of the selected image" -msgstr "Kira MD5, SHA-1, SHA-256 dan SHA-512 checksum imej yang dipilih" - -#. • MSG_920 -msgid "Perform bad blocks checks, including detection of \"fake\" flash drives" -msgstr "Melakukan pemeriksaan blok buruk, termasuk pengesanan pemacu kilat \"palsu\"" - -#. • MSG_921 -msgid "Download official Microsoft Windows retail ISOs" -msgstr "Muat turun rasmi ISO runcit Microsoft Windows" - -#. • MSG_922 -msgid "Download UEFI Shell ISOs" -msgstr "Muat turun ISO Shell UEFI" +msgid "" +msgstr "" +"Project-Id-Version: 4.14\n" +"Report-Msgid-Bugs-To: pete@akeo.ie\n" +"POT-Creation-Date: 2026-04-30 21:19+0300\n" +"PO-Revision-Date: 2026-04-30 21:44+0300\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ms_MY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Rufus-LanguageName: Malay (Bahasa Malaysia)\n" +"X-Rufus-LCID: 0x043e, 0x083e\n" +"X-Generator: Poedit 3.6\n" + +#. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT +msgid "Drive Properties" +msgstr "Sifat cakera" + +#. • IDD_DIALOG → IDS_DEVICE_TXT +msgid "Device" +msgstr "Peranti" + +#. • IDD_DIALOG → IDS_BOOT_SELECTION_TXT +msgid "Boot selection" +msgstr "Jenis boot" + +#. • IDD_DIALOG → IDC_SELECT +msgid "Select" +msgstr "Pilih" + +#. • IDD_DIALOG → IDS_IMAGE_OPTION_TXT +msgid "Image Option" +msgstr "Pilihan Imej" + +#. • IDD_DIALOG → IDS_PARTITION_TYPE_TXT +msgid "Partition scheme" +msgstr "Skema partisyen" + +#. • IDD_DIALOG → IDS_TARGET_SYSTEM_TXT +msgid "Target system" +msgstr "Sistem yang akan dipasang" + +#. • IDD_DIALOG → IDC_LIST_USB_HDD +msgid "List USB Hard Drives" +msgstr "Senaraikan Cakera Keras USB" + +#. • IDD_DIALOG → IDC_OLD_BIOS_FIXES +#. +#. It is acceptable to drop the parenthesis () if you are running out of space +#. as there is a tooltip (MSG_169) providing these details. +msgid "Add fixes for old BIOSes (extra partition, align, etc.)" +msgstr "Tambah pembaikan untuk BIOS lama" + +#. • IDD_DIALOG → IDC_UEFI_MEDIA_VALIDATION +#. +#. It is acceptable to drop the "runtime" if you are running out of space +msgid "Enable runtime UEFI media validation" +msgstr "Dayakan pengesahan media UEFI masa jalan" + +#. • IDD_DIALOG → IDS_FORMAT_OPTIONS_TXT +msgid "Format Options" +msgstr "Pilihan format" + +#. • IDD_DIALOG → IDS_FILE_SYSTEM_TXT +msgid "File system" +msgstr "Sistem fail" + +#. • IDD_DIALOG → IDS_CLUSTER_SIZE_TXT +msgid "Cluster size" +msgstr "Saiz gugusan" + +#. • IDD_DIALOG → IDS_LABEL_TXT +msgid "Volume label" +msgstr "Label jilid baharu" + +#. • IDD_DIALOG → IDC_QUICK_FORMAT +msgid "Quick format" +msgstr "Format pantas" + +#. • IDD_DIALOG → IDC_BAD_BLOCKS +msgid "Check device for bad blocks" +msgstr "Semak peranti untuk blok rosak" + +#. • IDD_DIALOG → IDC_EXTENDED_LABEL +msgid "Create extended label and icon files" +msgstr "Cipta label lanjut dan fail ikon" + +#. • IDD_DIALOG → IDS_STATUS_TXT +msgid "Status" +msgstr "" + +#. • IDD_DIALOG → IDCANCEL +#. • IDD_LICENSE → IDCANCEL +#. • IDD_LOG → IDCANCEL +#. • IDD_UPDATE_POLICY → IDCANCEL +#. • IDD_NEW_VERSION → IDCANCEL +#. • MSG_006 +msgid "Close" +msgstr "Tutup" + +#. • IDD_DIALOG → IDC_START +msgid "Start" +msgstr "Mula" + +#. • IDD_ABOUTBOX → IDD_ABOUTBOX +msgid "About Rufus" +msgstr "Mengenai Rufus" + +#. • IDD_ABOUTBOX → IDC_ABOUT_LICENSE +msgid "License" +msgstr "Lesen" + +#. • IDD_ABOUTBOX → IDOK +msgid "OK" +msgstr "" + +#. • IDD_LICENSE → IDD_LICENSE +msgid "Rufus License" +msgstr "Lesen Rufus" + +#. • IDD_NOTIFICATION → IDC_MORE_INFO +msgid "More information" +msgstr "Maklumat lanjut" + +#. • IDD_NOTIFICATION → IDYES +#. • MSG_008 +msgid "Yes" +msgstr "Ya" + +#. • IDD_NOTIFICATION → IDNO +#. • MSG_009 +msgid "No" +msgstr "Tidak" + +#. • IDD_LOG → IDD_LOG +msgid "Log" +msgstr "" + +#. • IDD_LOG → IDC_LOG_CLEAR +msgid "Clear" +msgstr "Padam" + +#. • IDD_LOG → IDC_LOG_SAVE +msgid "Save" +msgstr "Simpan" + +#. • IDD_UPDATE_POLICY → IDD_UPDATE_POLICY +msgid "Update policy and settings" +msgstr "Kemaskini dasar dan tetapan" + +#. • IDD_UPDATE_POLICY → IDS_UPDATE_SETTINGS_GRP +msgid "Settings" +msgstr "Tetapan" + +#. • IDD_UPDATE_POLICY → IDS_UPDATE_FREQUENCY_TXT +msgid "Check for updates" +msgstr "Semak untuk versi baharu" + +#. • IDD_UPDATE_POLICY → IDS_INCLUDE_BETAS_TXT +msgid "Include beta versions" +msgstr "Termasuk versi beta" + +#. • IDD_UPDATE_POLICY → IDC_CHECK_NOW +msgid "Check Now" +msgstr "Semak sekarang" + +#. • IDD_NEW_VERSION → IDD_NEW_VERSION +msgid "Check For Updates - Rufus" +msgstr "Semak untuk versi baharu - Rufus" + +#. • IDD_NEW_VERSION → IDS_NEW_VERSION_AVAIL_TXT +msgid "A newer version is available. Please download the latest version!" +msgstr "Terdapat versi Rufus yang baharu. Sila muat turun versi yang terkini!" + +#. • IDD_NEW_VERSION → IDC_WEBSITE +msgid "Click here to go to the website" +msgstr "Klik di sini untuk ke laman sesawang Rufus" + +#. • IDD_NEW_VERSION → IDS_NEW_VERSION_NOTES_GRP +msgid "Release Notes" +msgstr "Maklumat versi terbaharu" + +#. • IDD_NEW_VERSION → IDS_NEW_VERSION_DOWNLOAD_GRP +#. • IDD_NEW_VERSION → IDC_DOWNLOAD +#. • MSG_040 +msgid "Download" +msgstr "Muat turun" + +#. • MSG_001 +msgid "Other instance detected" +msgstr "Proses Rufus lain dikesan" + +#. • MSG_002 +msgid "" +"Another Rufus application is running.\n" +"Please close the first application before running another one." +msgstr "" +"Terdapat aplikasi Rufus sedang berjalan.\n" +"Sila tutup aplikasi tersebut sebelum melancarkan aplikasi Rufus baharu." + +#. • MSG_003 +msgid "" +"WARNING: ALL DATA ON DEVICE '%s' WILL BE DESTROYED.\n" +"To continue with this operation, click OK. To quit click CANCEL." +msgstr "" +"AMARAN: SEMUA DATA DI DALAM PERANTI '%s' AKAN DIPADAM.\n" +"Jika hendak teruskan, klik OK. Untuk berhenti, klik BATAL." + +#. • MSG_004 +msgid "Rufus update policy" +msgstr "Dasar kemas kini Rufus" + +#. • MSG_005 +msgid "Do you want to allow Rufus to check for application updates online?" +msgstr "Adakah anda mahu membenarkan Rufus menyemak untuk versi baharu dalam talian?" + +#. • MSG_007 +msgid "Cancel" +msgstr "Batal" + +#. • MSG_010 +msgid "Bad blocks found" +msgstr "Blok rosak dijumpai" + +#. • MSG_011 +msgid "" +"Check completed: %d bad block(s) found\n" +" %d read error(s)\n" +" %d write error(s)\n" +" %d corruption error(s)" +msgstr "" +"Semak selesai: %d blok rosak dijumpai\n" +" %d ralat membaca\n" +" %d ralat menulis\n" +" %d ralat korupsi" + +#. • MSG_012 +#. +#. This contains the formatted message from MSG_001 as well as the name of the bad blocks logfile +msgid "" +"%s\n" +"A more detailed report can be found in:\n" +"%s" +msgstr "" +"%s\n" +"Laporan lebih terperinci boleh dijumpai di:\n" +"%s" + +#. • MSG_013 +msgid "Disabled" +msgstr "Nyahaktif" + +#. • MSG_014 +msgid "Daily" +msgstr "Harian" + +#. • MSG_015 +msgid "Weekly" +msgstr "Mingguan" + +#. • MSG_016 +msgid "Monthly" +msgstr "Bulanan" + +#. • MSG_017 +msgid "Custom" +msgstr "Tetapan sendiri" + +#. • MSG_018 +msgid "Your version: %d.%d (Build %d)" +msgstr "Versi anda: %d.%d (Binaan %d)" + +#. • MSG_019 +msgid "Latest version: %d.%d (Build %d)" +msgstr "Versi terkini: %d.%d (Binaan %d)" + +#. • MSG_020 +#. • MSG_026 +msgid "bytes" +msgstr "bait" + +#. • MSG_021 +#. +#. *Short* version of the kilobyte size suffix +msgid "KB" +msgstr "" + +#. • MSG_022 +#. +#. *Short* version of the megabyte size suffix +msgid "MB" +msgstr "" + +#. • MSG_023 +#. +#. *Short* version of the gigabyte size suffix +msgid "GB" +msgstr "" + +#. • MSG_024 +#. +#. *Short* version of the terabyte size suffix +msgid "TB" +msgstr "" + +#. • MSG_025 +#. +#. *Short* version of the petabyte size suffix +msgid "PB" +msgstr "" + +#. • MSG_027 +msgid "kilobytes" +msgstr "kilobait" + +#. • MSG_028 +msgid "megabytes" +msgstr "megabait" + +#. • MSG_029 +msgid "Default" +msgstr "Tetapan asal" + +#. • MSG_030 +#. +#. This gets appended to the file system, cluster size, etc. +msgid "%s (Default)" +msgstr "%s (Tetapan asal)" + +#. • MSG_031 +msgid "BIOS (or UEFI-CSM)" +msgstr "BIOS (atau UEFI-CSM)" + +#. • MSG_032 +msgid "UEFI (non CSM)" +msgstr "UEFI (bukan CSM)" + +#. • MSG_033 +msgid "BIOS or UEFI" +msgstr "BIOS atau UEFI" + +#. • MSG_034 +#. +#. Number of bad block check passes (singular for 1 pass) +msgid "%d pass" +msgstr "%d kali lulus" + +#. • MSG_035 +#. +#. Number of bad block check passes (plural for 2 or more passes). +#. See MSG_087 for the message that %s gets replaced with. +msgid "%d passes %s" +msgstr "%d kali lulus %s" + +#. • MSG_036 +msgid "ISO Image" +msgstr "Imej ISO" + +#. • MSG_037 +msgid "Application" +msgstr "Aplikasi" + +#. • MSG_038 +msgid "Abort" +msgstr "Batal" + +#. • MSG_039 +msgid "Launch" +msgstr "Mula" + +#. • MSG_041 +msgid "Operation cancelled by the user" +msgstr "Operasi dibatalkan oleh pengguna" + +#. • MSG_042 +msgid "Error" +msgstr "Ralat" + +#. • MSG_043 +msgid "Error: %s" +msgstr "Ralat: %s" + +#. • MSG_044 +msgid "File download" +msgstr "Muat turun fail" + +#. • MSG_045 +msgid "USB Storage Device (Generic)" +msgstr "Peranti storan USB (Generik)" + +#. • MSG_046 +msgid "%s (Disk %d) [%s]" +msgstr "%s (Cakera %d) [%s]" + +#. • MSG_047 +#. +#. Used when a drive is detected that contains more than one partition +msgid "Multiple Partitions" +msgstr "Beberapa Partisyen" + +#. • MSG_048 +msgid "Rufus - Flushing buffers" +msgstr "Rufus - 'Flush' penimbal" + +#. • MSG_049 +msgid "Rufus - Cancellation" +msgstr "Rufus - Pembatalan" + +#. • MSG_050 +msgid "Success." +msgstr "Berjaya." + +#. • MSG_051 +msgid "Undetermined error while formatting." +msgstr "Ralat yang tidak dapat ditentukan ketika memformat." + +#. • MSG_052 +msgid "Cannot use the selected file system for this media." +msgstr "Tidak boleh menggunakan sistem fail yang dipilih untuk media ini." + +#. • MSG_053 +msgid "Access to the device is denied." +msgstr "Akses kepada peranti dinafikan." + +#. • MSG_054 +msgid "Media is write protected." +msgstr "Tidak boleh menulis data ke peranti (Dilindungi)" + +#. • MSG_055 +msgid "The device is in use by another process. Please close any other process that may be accessing the device." +msgstr "Peranti ini digunakan oleh proses lain. Sila tutup mana-mana program yang mungkin menggunakan peranti ini." + +#. • MSG_056 +msgid "Quick format is not available for this device." +msgstr "Format pantas tidak boleh digunakan pada peranti ini." + +#. • MSG_057 +msgid "The volume label is invalid." +msgstr "Label jilid tidak sah." + +#. • MSG_058 +msgid "The device handle is invalid." +msgstr "Pengendali peranti tidak sah." + +#. • MSG_059 +msgid "The selected cluster size is not valid for this device." +msgstr "Saiz gugusan yang dipilih tidak boleh digunakan pada peranti ini." + +#. • MSG_060 +msgid "The volume size is invalid." +msgstr "Saiz jilid tidak sah." + +#. • MSG_061 +msgid "Please insert a removable media in drive." +msgstr "Sila masukkan media boleh alih ke dalam pemacu." + +#. • MSG_062 +msgid "An unsupported command was received." +msgstr "Arahan yang tidak disokong diterima." + +#. • MSG_063 +msgid "Memory allocation error." +msgstr "Kesilapan peruntukkan memori." + +#. • MSG_064 +msgid "Read error." +msgstr "Kesilapan membaca." + +#. • MSG_065 +msgid "Write error." +msgstr "Kesilapan menulis." + +#. • MSG_066 +msgid "Installation failure" +msgstr "Kegagalan memasang" + +#. • MSG_067 +msgid "Could not open media. It may be in use by another process. Please re-plug the media and try again." +msgstr "Media tidak boleh dibuka. Ia mungkin digunakan dalam proses yang lain. Sila cabut dan masukkan semula dan cuba sekali lagi." + +#. • MSG_068 +msgid "Could not partition drive." +msgstr "Tidak boleh partition drive." + +#. • MSG_069 +msgid "Could not copy files to target drive." +msgstr "Tidak boleh meyalin fail kepada pemacu." + +#. • MSG_070 +msgid "Cancelled by user." +msgstr "Dibatalkan oleh pengguna." + +#. • MSG_071 +#. +#. See http://en.wikipedia.org/wiki/Thread_%28computing%29 +msgid "Unable to start thread." +msgstr "Proses-proses kecil tidak boleh dimulakan." + +#. • MSG_072 +msgid "Bad blocks check didn't complete." +msgstr "Penyemakan blok rosak tidak dapat diselesaikan." + +#. • MSG_073 +msgid "ISO image scan failure." +msgstr "Kegagalan imbasan imej ISO." + +#. • MSG_074 +msgid "ISO image extraction failure." +msgstr "Pengekstrakan imej ISO gagal." + +#. • MSG_075 +msgid "Unable to remount volume." +msgstr "Tidak dapat melekap semula jilid." + +#. • MSG_076 +msgid "Unable to patch/setup files for boot." +msgstr "Tidak dapat menyediakan fail-fail untuk boot." + +#. • MSG_077 +msgid "Unable to assign a drive letter." +msgstr "Tidak dapat menetapkan huruf pemacu." + +#. • MSG_078 +msgid "Can't mount GUID volume." +msgstr "Tidak boleh lekap jilid GUID." + +#. • MSG_079 +msgid "The device is not ready." +msgstr "Peranti ini tidak sedia untuk digunakan." + +#. • MSG_080 +msgid "" +"Rufus detected that Windows is still flushing its internal buffers onto the USB device.\n" +"\n" +"Depending on the speed of your USB device, this operation may take a long time to complete, especially for large files.\n" +"\n" +"We recommend that you let Windows finish, to avoid corruption. But if you grow tired of waiting, you can just unplug the device..." +msgstr "" +"Rufus mengesan bahawa Windows masih lagi menarik penimbal ke dalam peranti USB.\n" +"\n" +"Bergantung kepada kelajuan peranti USB anda, operasi ini mungkin mengambil masa yang amat lama.Terutamanya untuk fail besar.\n" +"\n" +"Kami cadangkan anda biarkan proses Windows untuk tamat dahulu supaya mengelakkan korupsi.Namun, jika anda kesuntukan masa, anda boleh cabutkan peranti anda..." + +#. • MSG_081 +msgid "Unsupported image" +msgstr "Imej tidak disokong" + +#. • MSG_082 +msgid "This image is either non-bootable, or it uses a boot or compression method that is not supported by Rufus..." +msgstr "Imej ini sama ada tidak boleh boot, atau ia menggunakan kaedah boot atau mampatan yang tidak disokong oleh Rufus..." + +#. • MSG_083 +msgid "Replace %s?" +msgstr "Gantikan %s?" + +#. • MSG_084 +msgid "" +"This ISO image seems to use an obsolete version of '%s'.\n" +"Boot menus may not display properly because of this.\n" +"\n" +"A newer version can be downloaded by Rufus to fix this issue:\n" +"- Choose 'Yes' to connect to the internet and download the file\n" +"- Choose 'No' to leave the existing ISO file unmodified\n" +"If you don't know what to do, you should select 'Yes'.\n" +"\n" +"Note: The new file will be downloaded in the current directory and once a '%s' exists there, it will be reused automatically." +msgstr "" +"Imej ISO ini menggunakan versi '%s' yang telah lapuk.\n" +"Oleh sebab ini, menu boot mungkin tidak dipaparkan dengan betul.\n" +"\n" +"Versi yang lebih baharu boleh dimuat turun oleh Rufus untuk memperbaiki isu ini:\n" +"- Pilih 'Ya' untuk menyambung ke internet dan muat turun fail tersebut\n" +"- Pilih 'Tidak' untuk tidak mengubahsuai fail ISO yang digunakan\n" +"Jika anda tidak pasti apa yang perlu dilakukan, pilih 'Ya'.\n" +"\n" +"Perhatian: Fail yang dimuat turun akan disimpan di dalam direktori bersamaan dengan Rufus dan apabila terdapat '%s' , ia akan digunakan secara automatik." + +#. • MSG_085 +msgid "Downloading %s" +msgstr "Sedang memuat turun %s" + +#. • MSG_086 +msgid "No image selected" +msgstr "Tiada imej yang dipilih" + +#. • MSG_087 +#. +#. This message appears in Advanced format options → Check device for bad blocks → dropdown menu +#. %s will be replaced with SLC, MLC or TLC, which is a type of NAND (or flash memory). In other +#. words, this message should mean "for a flash memory device of type %s". *Please* try to keep +#. the translation as short as possible so that it won't result in an overly large dropdown... +#. If you prefer, it's okay to use "type" or "device" instead of "NAND" (e.g. "for TLC type"). +#. See also MSG_035. +msgid "for %s NAND" +msgstr "untuk %s NAND" + +#. • MSG_088 +msgid "Image is too big" +msgstr "Imej terlalu besar" + +#. • MSG_089 +msgid "The image is too big for the selected target." +msgstr "Imej ini terlalu besar untuk sasaran yang dipilih." + +#. • MSG_090 +msgid "Unsupported ISO" +msgstr "ISO tidak disokong" + +#. • MSG_091 +msgid "When using UEFI Target Type, only EFI bootable ISO images are supported. Please select an EFI bootable ISO or set the Target Type to BIOS." +msgstr "Apabila menggunakan jenis sasaran UEFI , hanya imej boot jenis EFI sahaja disokong. Sila pilih ISO boot jenis EFI atau tukarkan jenis sasaran kepada BIOS." + +#. • MSG_092 +msgid "Unsupported filesystem" +msgstr "Sistem fail tidak disokong" + +#. • MSG_093 +msgid "" +"IMPORTANT: THIS DRIVE CONTAINS MULTIPLE PARTITIONS!!\n" +"\n" +"This may include partitions/volumes that aren't listed or even visible from Windows. Should you wish to proceed, you are responsible for any data loss on these partitions." +msgstr "" +"PENTING: PERANTI INI MEMPUNYAI BEBERAPA PARTISYEN!!\n" +"\n" +"Ini mungkin termasuk partisyen/jilid yang tidak disenaraikan atau tidak boleh dilihat dari Windows. Jika anda mahu meneruskannya, anda bertanggungjawab ke atas kehilangan data dalam partisyen tersebut." + +#. • MSG_094 +msgid "Multiple partitions detected" +msgstr "Beberapa partisyen dikesan" + +#. • MSG_095 +msgid "DD Image" +msgstr "DD Imej" + +#. • MSG_096 +msgid "The file system currently selected can not be used with this type of ISO. Please select a different file system or use a different ISO." +msgstr "Sistem fail yang sedang dipilih tidak boleh digunakan dengan jenis ISO ini. Sila pilih sistem fail berlainan atau gunakan ISO berlainan." + +#. • MSG_097 +msgid "'%s' can only be applied if the file system is NTFS." +msgstr "'Windows To Go' hanya boleh digunakan jika sistem fail adalah NTFS." + +#. • MSG_098 +msgid "" +"IMPORTANT: You are trying to install 'Windows To Go', but your target drive doesn't have the 'FIXED' attribute. Because of this Windows will most likely freeze during boot, as Microsoft hasn't designed it to work with drives that instead have the 'REMOVABLE' attribute.\n" +"\n" +"Do you still want to proceed?\n" +"\n" +"Note: The 'FIXED/REMOVABLE' attribute is a hardware property that can only be changed using custom tools from the drive manufacturer. However those tools are ALMOST NEVER provided to the public..." +msgstr "" +"PENTING: Anda cuba memasang 'Windows To Go', tetapi pemacu sasaran anda tidak mempunyai atribut 'FIXED'. Disebabkan ini Windows akan berkemungkinan besar sangkut sepanjang but, kerana Microsoft tidak merekanya untuk berfungsi dengan pemacu yang sebaliknya mempunyai atribut 'REMOVABLE'.\n" +"\n" +"Adakah anda masih mahu teruskan?\n" +"\n" +"Nota: Atribut 'FIXED/REMOVABLE'adalah sifat perkakasan yang hanya boleh ditukar menggunakan alatan tersuai daripada pengilang pemacu. Bagaimanapun alatan tersebut adalah HAMPIR TIDAK AKAN diberikan kepada umum..." + +#. • MSG_099 +msgid "Filesystem limitation" +msgstr "Had sistem fail" + +#. • MSG_100 +msgid "This ISO image contains a file larger than 4 GB, which is more than the maximum size allowed for a FAT or FAT32 file system." +msgstr "Imej ISO ini mengandungi fail yang lebih besar daripada 4 GB iaitu saiz maksima yang dibenarkan untuk sistem fail FAT atau FAT32." + +#. • MSG_101 +msgid "Missing WIM support" +msgstr "Tiada sokongan WIM" + +#. • MSG_102 +msgid "" +"Your platform cannot extract files from WIM archives. WIM extraction is required to create EFI bootable Windows 7 and Windows Vista USB drives. You can fix that by installing a recent version of 7-Zip.\n" +"Do you want to visit the 7-zip download page?" +msgstr "" +"Platform anda tidak boleh mengekstrak fail daripada arkib WIM. Ini diperlukan untuk mencipta cakera boot EFI Windows 7 dan Windows Vista. Anda boleh membaikinya dengan cara mendapatkan versi 7-Zip terbaharu.\n" +"Adakah anda mahu ke halaman muat turun 7-zip?" + +#. • MSG_103 +msgid "Download %s?" +msgstr "Muat turun %s?" + +#. • MSG_104 +#. +#. Example: "Grub4DOS v0.4 or later requires a 'grldr' file to be installed. Because this +#. file is more than 100 KB in size, and always present on Grub4DOS ISO images (...)" +msgid "" +"%s or later requires a '%s' file to be installed.\n" +"Because this file is more than 100 KB in size, and always present on %s ISO images, it is not embedded in Rufus.\n" +"\n" +"Rufus can download the missing file for you:\n" +"- Select 'Yes' to connect to the internet and download the file\n" +"- Select 'No' if you want to manually copy this file on the drive later\n" +"\n" +"Note: The file will be downloaded in the current directory and once a '%s' exists there, it will be reused automatically." +msgstr "" +"%s atau kemudian memerlukan fail '%s' di komputer anda.\n" +"Oleh sebab fail tersebut lebih besar daripada 100 KB dan sentiasa ada dalam imej %s, Ia tidak termasuk dalam Rufus.\n" +"\n" +"Rufus boleh memuat turun fail tersebut untuk anda:\n" +"- Pilih 'Ya' untuk muat turun fail tersebut\n" +"- Pilih 'Tidak' jika anda mahu menyalin fail tersebut secara manual ke cakera ini pada masa lain\n" +"\n" +"Perhatian: Fail akan dimuat turun ke direktori bersamaan Rufus dan apabila '%s' ada di sana, ia akan digunakan semula secara automatik." + +#. • MSG_105 +msgid "" +"Cancelling may leave the device in an UNUSABLE state.\n" +"If you are sure you want to cancel, click YES. Otherwise, click NO." +msgstr "" +"Pembatalan boleh menyebabkan peranti ini TIDAK BOLEH DIGUNAKAN SEMULA.\n" +"Jika anda pasti anda mahu membatalkannya, klik Ya. Sebaliknya, klik Tidak." + +#. • MSG_106 +msgid "Please select folder" +msgstr "Sila pilih folder" + +#. • MSG_107 +msgid "All files" +msgstr "Semua fail" + +#. • MSG_108 +msgid "Rufus log" +msgstr "Log Rufus" + +#. • MSG_109 +msgid "0x%02X (Disk %d)" +msgstr "0x%02X (Cakera %d)" + +#. • MSG_110 +#. +#. "Cluster size" should be the same as the label for IDS_CLUSTER_SIZE_TXT +#. "kilobytes" should be the same as in MSG_027 +msgid "" +"MS-DOS cannot boot from a drive using a 64 kilobytes Cluster size.\n" +"Please change the Cluster size or use FreeDOS." +msgstr "" +"MS-DOS tidak boleh boot daripada cakera yang menggunakan saiz gugusan 64 kilobait.\n" +"Sila tukarkan saiz gugusan atau gunakan FreeDOS." + +#. • MSG_111 +msgid "Incompatible Cluster size" +msgstr "Saiz gugusan tidak sesuai" + +#. • MSG_112 +#. +#. "%d:%02d" is a duration (mins:secs) +msgid "Formatting a large UDF volumes can take a lot of time. At USB 2.0 speeds, the estimated formatting duration is %d:%02d, during which the progress bar will appear frozen. Please be patient!" +msgstr "Pemformatan jilid UDF yang besar mengambil masa yang amat lama. Pada kelajuan USB 2.0, anggaran masa pemformatan adalah %d:%02d, dimana bar kemajuan akan kelihatan seperti ia tidak bergerak. Sila bersabar!" + +#. • MSG_113 +msgid "Large UDF volume" +msgstr "Jilid UDF besar" + +#. • MSG_114 +msgid "" +"This image uses Syslinux %s%s but this application only includes the installation files for Syslinux %s%s.\n" +"\n" +"As new versions of Syslinux are not compatible with one another, and it wouldn't be possible for Rufus to include them all, two additional files must be downloaded from the Internet ('ldlinux.sys' and 'ldlinux.bss'):\n" +"- Select 'Yes' to connect to the Internet and download these files\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the current application directory and will be reused automatically if present." +msgstr "" +"Imej ini menggunakan Syslinux %s%s tetapi aplikasi ini hanya mempunyai fail pemasangan untukSyslinux %s%s.\n" +"\n" +"Oleh kerana versi-versi baharu Syslinux tidak serasi dengan satu sama lain, maka tidakwajar Rufus menyediakan semuanya, dua fail tambahan perlu dimuat turun dariInternet ('ldlinux.sys' dan 'ldlinux.bss'):\n" +"- Pilih 'Ya' untuk menyambung ke Internet dan memuat turun fail tersebut\n" +"- Pilih 'Tidak' untuk membatalkan operasi\n" +"\n" +"NOTA:Fail akan dimuat turun ke dalam direktori aplikasi ini dan akan digunakan semulasecara automatik sekiranya sedia ada." + +#. • MSG_115 +msgid "Download required" +msgstr "Muat turun diperlukan" + +#. • MSG_116 +#. +#. You should be able to test this message with Super Grub2 Disk ISO: +#. https://sourceforge.net/projects/supergrub2/files/2.00s2/super_grub2_disk_hybrid_2.00s2.iso/download (11.9 MB) +msgid "" +"This image uses Grub %s but the application only includes the installation files for Grub %s.\n" +"\n" +"As different versions of Grub may not be compatible with one another, and it is not possible to include them all, Rufus will attempt to locate a version of the Grub installation file ('core.img') that matches the one from your image:\n" +"- Select 'Yes' to connect to the Internet and attempt to download it\n" +"- Select 'No' to use the default version from Rufus\n" +"- Select 'Cancel' to abort the operation\n" +"\n" +"Note: The file will be downloaded in the current application directory and will be reused automatically if present. If no match can be found online, then the default version will be used." +msgstr "" +"Imej ini menggunakan Grub %s tetapi aplikasi hanya termasuk fail pemasangan untuk Grub %s.\n" +"\n" +"Sepertimana versi Grub berlainan mungkin tidak sesuai antara satu sama lain, dan ianya tidak mungkin untuk memasukkan mereka semua, Rufus akan cuba mengesan versi fail pemasangan Grub ('core.img') yang sepadan dengan salah satu daripada imej anda:\n" +"- Pilih 'Ya' untuk bersambung ke Internet dan cuba memuat turunnya\n" +"- Pilih 'Tidak' untuk menggunakan versi lalai dari Rufus\n" +"- Pilih 'Batal' untuk membatalkan operasi\n" +"\n" +"Nota: Fail akan dimuat turun dalam direktori aplikasi semasa dan akan digunakan semula secara automatik jika ada. Jika tiada padanan boleh dijumpai dalam talian, versi lalai akan digunakan." + +#. • MSG_117 +msgid "Standard Windows installation" +msgstr "Pemasangan Windows biasa" + +#. • MSG_118 +#. +#. Only translate this message *if* Microsoft has a specific name for +#. http://en.wikipedia.org/wiki/Windows_To_Go in your language. +#. Otherwise, you may add a parenthesis eg. "Windows To Go ()" +msgid "Windows To Go" +msgstr "" + +#. • MSG_119 +msgid "advanced drive properties" +msgstr "pilihan tambahan pemacu" + +#. • MSG_120 +msgid "advanced format options" +msgstr "pilihan format tambahan" + +#. • MSG_121 +msgid "Show %s" +msgstr "Tunjuk %s" + +#. • MSG_122 +msgid "Hide %s" +msgstr "Sembunyi %s" + +#. • MSG_123 +#. +#. A persistent partitions can be used with "Live" USB media to store data. +#. It means that data can be preserved across reboots on "Live" USB drives. +#. To test this feature, please download and select 'casper_test.iso' from: +#. https://github.com/pbatard/rufus/raw/master/res/loc/test/casper_test.iso +msgid "Persistent partition size" +msgstr "Saiz pemetakan berterusan (persistence partition)" + +#. • MSG_124 +#. +#. This message appears in the persistence 'Size' control when the slider is set to 0. +#. It is okay to use "No partition" or "None" or "Deactivated" to indicate that a persistent partition will not be +#. created if the width of the control is too small (since the 'Size' edit control is *not* adjusted for width). +msgid "No persistence" +msgstr "Tidak berterusan" + +#. • MSG_125 +#. +#. Tooltips used for the persistence size slider and edit control +msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." +msgstr "Mengeset saiz pemetakan berterusan (persistent partition) untuk media 'live USB'. Setkan saiz kepada 0 untuk melumpuhkan pemetakan berterusan." + +#. • MSG_126 +msgid "Set the partition size units." +msgstr "Set saiz unit pemetakan." + +#. • MSG_127 +msgid "Do not show this message again" +msgstr "Henti papar mesej ini" + +#. • MSG_128 +msgid "Important notice about %s" +msgstr "Notis penting berkenaan %s" + +#. • MSG_129 +msgid "" +"You have just created a media that uses the UEFI:NTFS bootloader. Please remember that, to boot this media, YOU MUST DISABLE SECURE BOOT.\n" +"For details on why this is necessary, see the 'More Information' button below." +msgstr "" +"Anda telah menghasilkan media yang menggunakan bootloader UEFI:NTFS. ANDA PERLU MEMATIKAN PILIHAN SECURE BOOT.\n" +"Untuk mengetahui dengan lebih lanjut, sila klik butang 'Maklumat Lanjut' di bawah." + +#. • MSG_130 +msgid "Windows image selection" +msgstr "Pemilihan imej Windows" + +#. • MSG_131 +msgid "" +"This ISO contains multiple Windows images.\n" +"Please select the image you wish to use for this installation:" +msgstr "" +"ISO ini mengandungi beberapa imej Windows.\n" +"Sila pilih imej yang anda ingin gunakan untuk pemasangan:" + +#. • MSG_132 +msgid "Another program or process is accessing this drive. Do you want to format it anyway?" +msgstr "Terdapat program atau proses lain sedang mencapai pemacu ini. Adakah anda mahu memformatnya juga?" + +#. • MSG_133 +msgid "" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" +"\n" +"Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" +"\n" +"Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." +msgstr "" +"Rufus telah mengesan bahawa anda sedang mencuba untuk mencipta media Windows To Go berasaskan imej ISO 1809.\n" +"\n" +"Memandangkan terdapat pepijat dari MICROSOFT, media ini akan menghadapi masalah (Blue Screen Of Death) semasa memulakan Windows, melainkan anda menukar fail 'WppRecorder.sys' kepada versi 1803.\n" +"\n" +"Sila ambil perhatian. Rufus tidak akan membaiki masalah ini kerana 'WppRecorder.sys' adalah hak cipta milik Microsoft dan kami tidak dapat menyertakan salinan fail berkenaan bersama-sama aplikasi ini..." + +#. • MSG_134 +msgid "" +"Because MBR has been selected for the partition scheme, Rufus can only create a partition up to 2 TB on this media, which will leave %s of disk space unavailable.\n" +"\n" +"Are you sure you want to continue?" +msgstr "" +"Memandangkan skema pemetakan MBR telah dipilih, Rufus akan menghasilkan petak storan media dengan saiz maksimum 2 TB, di mana %s ruang cakera adalah tidak tersedia.\n" +"\n" +"Adakah anda pasti ingin meneruskan operasi?" + +#. • MSG_135 +msgid "Version" +msgstr "Versi" + +#. • MSG_136 +msgid "Release" +msgstr "Keluaran" + +#. • MSG_137 +msgid "Edition" +msgstr "Edisi" + +#. • MSG_138 +msgid "Language" +msgstr "Bahasa" + +#. • MSG_139 +msgid "Architecture" +msgstr "Kerangka" + +#. • MSG_140 +msgid "Continue" +msgstr "Terus" + +#. • MSG_141 +msgid "Back" +msgstr "Undur" + +#. • MSG_142 +msgid "Please wait..." +msgstr "Sila tunggu..." + +#. • MSG_143 +msgid "Download using a browser" +msgstr "Muat turun menggunakan pelayar web" + +#. • MSG_144 +msgid "Download of Windows ISOs is unavailable due to Microsoft having altered their website to prevent it." +msgstr "Muat turun ISO Windows tidak tersedia kerana Microsoft telah mengubah laman web mereka untuk menghalangnya." + +#. • MSG_145 +msgid "PowerShell 3.0 or later is required to run this script." +msgstr "PowerShell 3.0 atau versi lebih baru diperlukan untuk menjalankan skrip ini." + +#. • MSG_146 +msgid "Do you want to go online and download it?" +msgstr "Adakah anda ingin ke dalam talian dan memuat turun?" + +#. • MSG_148 +msgid "Running download script..." +msgstr "Menjalankan skrip untuk memuat turun..." + +#. • MSG_149 +msgid "Download ISO Image" +msgstr "Memuat turun imej ISO" + +#. • MSG_150 +msgid "Type of computer you plan to use this bootable drive with. It is your responsibility to determine whether your target is of BIOS or UEFI type before you start creating the drive, as it may fail to boot otherwise." +msgstr "Jenis komputer yang anda merancang untuk menggunakan cakera \"bootable\" ini. Adalah menjadi tanggungjawab anda untuk menentukan sama ada sasaran anda adalah jenis BIOS atau UEFI sebelum anda wujudkan cakera tersebut, kerana ia mungkin gagal untuk boot." + +#. • MSG_151 +#. +#. You shouldn't translate 'Legacy Mode' as this is an option that usually appears in English in the UEFI settings. +msgid "'UEFI-CSM' means that the device will only boot in BIOS emulation mode (also known as 'Legacy Mode') under UEFI, and not in native UEFI mode." +msgstr "'UEFI-CSM' bermaksud peranti hanya akan boot di dalam mod emulasi BIOS (juga dikenali sebagai 'Legacy Mode') dibawah UEFI, dan bukan dalam mod asli UEFI." + +#. • MSG_152 +msgid "'non CSM' means that the device will only boot in native UEFI mode, and not in BIOS emulation mode (also known as 'Legacy Mode')." +msgstr "'bukan CSM' bermaksud peranti hanya akan boot di dalam mod asli UEFI, dan bukan di mod emulasi BIOS (juga dikenali sebagai 'Legacy Mode')." + +#. • MSG_153 +msgid "Test pattern: 0x%02X" +msgstr "Uji corak: 0x%02X" + +#. • MSG_154 +msgid "Test pattern: 0x%02X, 0x%02X" +msgstr "Uji corak: 0x%02X, 0x%02X" + +#. • MSG_155 +msgid "Test pattern: 0x%02X, 0x%02X, 0x%02X" +msgstr "Uji corak: 0x%02X, 0x%02X, 0x%02X" + +#. • MSG_156 +msgid "Test pattern: 0x%02X, 0x%02X, 0x%02X, 0x%02X" +msgstr "Uji corak: 0x%02X, 0x%02X, 0x%02X, 0x%02X" + +#. • MSG_157 +msgid "Sets the target filesystem" +msgstr "Menetapkan sistem fail sasaran" + +#. • MSG_158 +msgid "Minimum size that a block of data will occupy in the filesystem" +msgstr "Saiz minima satu blok data akan gunakan dalam sistem fail" + +#. • MSG_159 +msgid "" +"Use this field to set the drive label.\n" +"International characters are accepted." +msgstr "" +"Gunakan ini untuk tetapkan label cakera.\n" +"Huruf antarabangsa boleh digunakan." + +#. • MSG_160 +msgid "Toggle advanced options" +msgstr "Togel pilihan lanjutan" + +#. • MSG_161 +msgid "Check the device for bad blocks using a test pattern" +msgstr "Semak peranti untuk blok rosak menggunakan corak ujian" + +#. • MSG_162 +msgid "Uncheck this box to use the \"slow\" format method" +msgstr "Nyahtanda kotak ini untuk menggunakan kaedah pemformatan perlahan" + +#. • MSG_163 +msgid "Method that will be used to create partitions" +msgstr "Kaedah yang digunakan untuk mencipta partisyen" + +#. • MSG_164 +msgid "Method that will be used to make the drive bootable" +msgstr "Kaedah yang digunakan untuk membuat cakera boot" + +#. • MSG_165 +msgid "Click to select or download an image..." +msgstr "Klik untuk memilih atau memuat turun imej..." + +#. • MSG_166 +msgid "Check this box to allow the display of international labels and set a device icon (creates an autorun.inf)" +msgstr "Klik kotak ini untuk membenarkan paparan label antarabangsa dan menetapkan ikon cakera (akan membuat fail autorun.inf)" + +#. • MSG_167 +msgid "Install a UEFI bootloader, that will perform MD5Sum file validation of the media" +msgstr "Pasang pemuat but UEFI, yang akan melakukan pengesahan fail MD5Sum terhadap media" + +#. • MSG_169 +msgid "" +"Create an extra hidden partition and try to align partitions boundaries.\n" +"This can improve boot detection for older BIOSes." +msgstr "" +"Ciptakan partisyen tambahan tersembunyi dan cuba melaraskan sempadan partisyen.\n" +"Ini boleh mempertingkatkan pengesanan boot untuk BIOS lama." + +#. • MSG_170 +msgid "Enable the listing of USB Hard Drive enclosures. USE AT YOUR OWN RISKS!!!" +msgstr "Membolehkan penyenaraian pagaran cakera keras USB. GUNAKAN ATAS RISIKO SENDIRI!!!" + +#. • MSG_171 +msgid "" +"Start the formatting operation.\n" +"This will DESTROY any data on the target!" +msgstr "" +"Mulakan operasi pemformatan.\n" +"Ini akan MEMADAMKAN semua data pada sasaran!" + +#. • MSG_172 +#. +#. As of Rufus 3.2, *ALL* downloads from the servers are digitally signed, and their signature is validated using the +#. public key that is embedded in the application. This message appears in an error dialog if the validation fails. +msgid "Invalid download signature" +msgstr "Tandatangan digital muat turun tidak sah" + +#. • MSG_173 +msgid "Click to select..." +msgstr "Klik untuk memilih..." + +#. • MSG_174 +msgid "Rufus - The Reliable USB Formatting Utility" +msgstr "Rufus - Utiliti pemformatan USB yang dipercayai" + +#. • MSG_175 +msgid "Version %d.%d (Build %d)" +msgstr "Versi %d.%d (Build %d)" + +#. • MSG_176 +msgid "English translation: Pete Batard " +msgstr "" +"Terjemahan Bahasa Malaysia:\\line\n" +"• Muhammad Aman \\line\n" +"• VGPlayer \\line\n" +"• Mohamad Ikhwan bin Kori \\line\n" +"• Ilya Ignatev " + +#. • MSG_177 +msgid "Report bugs or request enhancements at:" +msgstr "Laporkan masalah atau cadangan penambahbaikan di:" + +#. • MSG_178 +msgid "Additional Copyrights:" +msgstr "Hak cipta tambahan:" + +#. • MSG_179 +msgid "Update Policy:" +msgstr "Polisi kemaskini:" + +#. • MSG_180 +msgid "If you choose to allow this program to check for application updates, you agree that the following information may be collected on our server(s):" +msgstr "Jika anda pilih untuk membenarkan perisian ini menyemak untuk aplikasi versi baharu, anda bersetuju untuk membenarkan pelayan kami mengumpulkan maklumat berikut:" + +#. • MSG_181 +msgid "Your operating system's architecture and version" +msgstr "Versi dan kerangka sistem operasi" + +#. • MSG_182 +msgid "The version of the application you use" +msgstr "Versi aplikasi yang anda gunakan" + +#. • MSG_183 +msgid "Your IP address" +msgstr "Alamat IP anda" + +#. • MSG_184 +msgid "For the purpose of generating private usage statistics, we may keep the information collected, \\b for at most a year\\b0 . However, we will not willingly disclose any of this individual data to third parties." +msgstr "Untuk tujuan menjana statistik penggunaan peribadi , kami mungkin menyimpan maklumat yang dikumpulkan, \\b untuk sekurang-kurangnya setahun\\b0 . Namun, kami tidak rela untuk mendedahkan maklumat ini kepada mana-mana pihak ketiga." + +#. • MSG_185 +msgid "Update Process:" +msgstr "Proses mengemas kini:" + +#. • MSG_186 +msgid "" +"Rufus does not install or run background services, therefore update checks are performed only when the main application is running.\\line\n" +"Internet access is of course required when checking for updates." +msgstr "" +"Rufus tidak memasang atau menjalankan servis di latar belakang. Oleh itu, semakan kemas kini hanya dijalankan apabila aplikasi utama berjalan.\\line\n" +"Akses internet diperlukan untuk menyemak untuk versi baru." + +#. • MSG_187 +msgid "Invalid image for selected boot option" +msgstr "Imej tidak sah untuk pilihan boot yang dipilih" + +#. • MSG_188 +msgid "The current image doesn't match the boot option selected. Please use a different image or choose a different boot option." +msgstr "Imej\ttidak serasi dengan pilihan boot yang dipilih. Sila gunakan imej lain atau pilih pilihan boot lain." + +#. • MSG_189 +msgid "This ISO image is not compatible with the selected filesystem" +msgstr "Imej ISO ini tidak serasi dengan sistem fail yang dipilih" + +#. • MSG_190 +msgid "Incompatible drive detected" +msgstr "Pemacu tidak serasi dikesan" + +#. • MSG_191 +#. +#. Used in MSG_235 +msgid "Write pass" +msgstr "Melepasi tulisan" + +#. • MSG_192 +#. +#. Used in MSG_235 +msgid "Read pass" +msgstr "Melepasi bacaan" + +#. • MSG_193 +msgid "Downloaded %s" +msgstr "Muat turun %s" + +#. • MSG_194 +msgid "Could not download %s" +msgstr "Tidak boleh muat turun %s" + +#. • MSG_195 +#. +#. Example: "Using embedded version of Grub2 file(s)" +msgid "Using embedded version of %s file(s)" +msgstr "Menggunakan %s fail versi dibenam" + +#. • MSG_196 +msgid "" +"IMPORTANT: THIS DRIVE USES A NONSTANDARD SECTOR SIZE!\n" +"\n" +"Conventional drives use a 512-byte sector size but this drive uses a %d-byte one. In many cases, this means that you will NOT be able to boot from this drive.\n" +"Rufus can try to create a bootable drive, but there is NO WARRANTY that it will work." +msgstr "" +"PENTING: PEMACU INI MENGGUNAKAN SAIZ SEKTOR BUKAN PIAWAIAN!\n" +"\n" +"Pemacu konvensional mengunakan saiz sektor 512 bait tetapi pemacu ini menggunakan %d bait. Dalam banyak kes, ini bermaksud anda TIDAK akan mampu untuk but dari pemacu ini.\n" +"Rufus boleh cuba untuk mencipta pemacu boleh but, tetapi TIDAK ADA JAMINAN ianya akan berfungsi." + +#. • MSG_197 +msgid "Nonstandard sector size detected" +msgstr "Saiz sektor bukan standard dikesan" + +#. • MSG_198 +msgid "'Windows To Go' can only be installed on a GPT partitioned drive if it has the FIXED attribute set. The current drive was not detected as FIXED." +msgstr "'Windows To Go' hanya boleh dipasang dalam pemacu berpartisyen GPT jika ia mempunyai set atribut 'FIXED'. Pemacu semasa tidak dikesan sebagai 'FIXED'." + +#. • MSG_199 +msgid "This feature is not available on this platform." +msgstr "Ciri ini tidak tersedia di platform ini." + +#. • MSG_201 +msgid "Cancelling - Please wait..." +msgstr "Sedang membatalkan - Sila tunggu..." + +#. • MSG_202 +msgid "Scanning image..." +msgstr "Mengimbas imej..." + +#. • MSG_203 +msgid "Failed to scan image" +msgstr "Imbasan imej gagal" + +#. • MSG_204 +#. +#. %s is the name of an obsolete Syslinux .c32 module. Example: "Obsolete vesamenu.c32 detected" +msgid "Obsolete %s detected" +msgstr "%s lapuk dikesan" + +#. • MSG_205 +#. +#. Display the name of the image selected. eg: "Using image: en_win7_x64_sp1.iso" +msgid "Using image: %s" +msgstr "Menggunakan imej: %s" + +#. • MSG_206 +#. +#. Example: "Missing ldlinux.c32 file" +msgid "Missing %s file" +msgstr "Tidak menjumpai fail %s" + +#. • MSG_207 +#. +#. The name proposed by Windows' Computer Management → Disk Management when you try to format +#. a drive with an empty label. For an example, see https://rufus.ie/pics/default_name.png. +msgid "New Volume" +msgstr "Jilid baharu" + +#. • MSG_208 +#. +#. Singular. Example: "1 device found" +msgid "%d device found" +msgstr "%d peranti dijumpai" + +#. • MSG_209 +#. +#. Plural. Example: "3 devices found" +msgid "%d devices found" +msgstr "%d peranti dijumpai" + +#. • MSG_210 +msgid "READY" +msgstr "SEDIA" + +#. • MSG_211 +msgid "Cancelled" +msgstr "DIBATALKAN" + +#. • MSG_212 +msgid "Failed" +msgstr "GAGAL" + +#. • MSG_213 +#. +#. Used when a new update has been downloaded and launched +msgid "Launching new application..." +msgstr "Melancarkan aplikasi baru..." + +#. • MSG_214 +msgid "Failed to launch new application" +msgstr "Gagal untuk melancarkan aplikasi baru" + +#. • MSG_215 +#. +#. Example: "Opened some_file.txt" +msgid "Opened %s" +msgstr "%s dibuka" + +#. • MSG_216 +#. +#. Example: "Saved rufus.log" +msgid "Saved %s" +msgstr "%s disimpan" + +#. • MSG_217 +#. +#. Formatting status +msgid "Formatting: %s" +msgstr "Pemformatan: %s" + +#. • MSG_218 +msgid "Creating file system: Task %d/%d completed" +msgstr "Mencipta sistem fail: Tugas %d/%d selesai" + +#. • MSG_219 +msgid "NTFS Fixup: %d%% completed" +msgstr "Pembaikian NTFS: %d%% selesai" + +#. • MSG_220 +#. +#. Parameter: the file system and an estimated duration in mins and secs. +#. Example: "Formatting (UDF) - Estimated duration 3:21..." +#. If "estimated duration" is too long, just use "estimated" or an abbreviation +msgid "Formatting (%s) - estimated duration %d:%02d..." +msgstr "Pemformatan (%s) - Jangka masa anggaran %d:%02d..." + +#. • MSG_221 +msgid "Setting label (%s)..." +msgstr "Menetapkan Label (%s)..." + +#. • MSG_222 +#. +#. Example: "Formatting (FAT32)..." +msgid "Formatting (%s)..." +msgstr "Pemformatan (%s)..." + +#. • MSG_223 +msgid "NTFS Fixup (Checkdisk)..." +msgstr "Pembaikian NTFS (Periksa cakera)..." + +#. • MSG_224 +msgid "Clearing MBR/PBR/GPT structures..." +msgstr "Memadam struktur MBR/PBR/GPT..." + +#. • MSG_225 +msgid "Requesting disk access..." +msgstr "Meminta akses cakera..." + +#. • MSG_226 +msgid "Analyzing existing boot records..." +msgstr "Menganalisis rekod boot sedia ada..." + +#. • MSG_227 +msgid "Closing existing volume..." +msgstr "Menutup jilid sedia ada..." + +#. • MSG_228 +msgid "Writing Master Boot Record..." +msgstr "Menulis \"Rekod master boot\"..." + +#. • MSG_229 +msgid "Writing Partition Boot Record..." +msgstr "Menulis \"Rekod boot partisyen\"..." + +#. • MSG_230 +msgid "Copying DOS files..." +msgstr "Menyalin fail DOS..." + +#. • MSG_231 +msgid "Copying ISO files: %s" +msgstr "Menyalin fail ISO: %s" + +#. • MSG_232 +msgid "Win7 EFI boot setup (%s)..." +msgstr "Persediaan boot EFI Win7 (%s)..." + +#. • MSG_233 +msgid "Finalizing, please wait..." +msgstr "Menyiapkan, sila tunggu..." + +#. • MSG_234 +#. +#. Takes a Syslinux version as parameter. +#. Example: "Installing Syslinux v5.10..." +msgid "Installing Syslinux %s..." +msgstr "Memasang Syslinux %s..." + +#. • MSG_235 +#. +#. Bad blocks status. Example: "Bad Blocks: Write pass 1/2 - 12.34% (0/0/1 errors)" +#. See MSG_191 & MSG_192 for "Write pass"/"Read pass" translation. +msgid "Bad Blocks: %s %d/%d - %0.2f%% (%d/%d/%d errors)" +msgstr "Blok rosak: %s %d/%d - %0.2f%% (%d/%d/%d kesilapan)" + +#. • MSG_236 +msgid "Bad Blocks: Testing with random pattern" +msgstr "Blok rosak: menguji dengan corak rawak" + +#. • MSG_237 +msgid "Bad Blocks: Testing with pattern 0x%02X" +msgstr "Blok rosak: Menguji dengan corak 0x%02X" + +#. • MSG_238 +#. +#. Example: "Partitioning (MBR)..." +msgid "Partitioning (%s)..." +msgstr "Mempartisyenkan (%s)..." + +#. • MSG_239 +msgid "Deleting partitions (%s)..." +msgstr "Memadam partisyen (%s)..." + +#. • MSG_240 +#. +#. This message has to do with the signature validation that Rufus uses when downloading an update. +msgid "" +"The signature for the downloaded update can not be validated. This could mean that your system is improperly configured for signature validation or indicate a malicious download.\n" +"\n" +"The download will be deleted. Please check the log for more details." +msgstr "" +"Tandatangan untuk pengemaskinian telah dimuat turun tidak dapat disahkan. Ini boleh bermakna bahawa sistem anda dikonfigurasi dengan salah untuk pengesahan tandatangan atau menunjukkan fail yang dimuat turun berisi dengan virus\n" +"\n" +"Fail yang dimuat turun akan dihapuskan. Sila periksa log untuk maklumat lanjut." + +#. • MSG_241 +msgid "Downloading: %s" +msgstr "Memuat turun: %s" + +#. • MSG_242 +msgid "Failed to download file." +msgstr "Gagal memuat turun fail." + +#. • MSG_243 +msgid "Checking for Rufus updates..." +msgstr "Memeriksa untuk kemas kini Rufus..." + +#. • MSG_244 +msgid "Updates: Unable to connect to the internet" +msgstr "Kemas kini: Tidak dapat menyambung ke internet" + +#. • MSG_245 +msgid "Updates: Unable to access version data" +msgstr "Kemas kini: Tidak dapat mengakses data versi" + +#. • MSG_246 +msgid "A new version of Rufus is available!" +msgstr "Versi baru Rufus boleh didapati!" + +#. • MSG_247 +msgid "No new version of Rufus was found" +msgstr "Tiada versi baru Rufus didapati" + +#. • MSG_248 +msgid "Application registry keys successfully deleted" +msgstr "Kekunci daftar aplikasi berjaya dipadam" + +#. • MSG_249 +msgid "Failed to delete application registry keys" +msgstr "Gagal memadam kekunci daftar aplikasi" + +#. • MSG_250 +#. +#. Example: "Fixed disk detection enabled", "ISO size check disabled", etc. +msgid "%s enabled" +msgstr "%s dibolehkan" + +#. • MSG_251 +msgid "%s disabled" +msgstr "%s tidak dibolehkan" + +#. • MSG_252 +msgid "Size checks" +msgstr "Menyemak saiz" + +#. • MSG_253 +msgid "Hard disk detection" +msgstr "Pengesanan cakera keras" + +#. • MSG_254 +msgid "Force large FAT32 formatting" +msgstr "Memaksa pemformatan FAT32 besar" + +#. • MSG_255 +msgid "NoDriveTypeAutorun will be deleted on exit" +msgstr "NoDriveTypeAutorun akan dipadam apabila keluar" + +#. • MSG_256 +msgid "Fake drive detection" +msgstr "Pengesanan cakera palsu" + +#. • MSG_257 +msgid "Joliet support" +msgstr "Sokongan Joliet" + +#. • MSG_258 +msgid "Rock Ridge support" +msgstr "Sokongan Rock Ridge" + +#. • MSG_259 +msgid "Force update" +msgstr "Paksa kemas kini" + +#. • MSG_260 +msgid "NTFS compression" +msgstr "Mampatan NTFS" + +#. • MSG_261 +msgid "Writing image: %s" +msgstr "Menulis imej: %s" + +#. • MSG_262 +#. +#. Cheat mode message to disable ISO Support, so that only DD images can be opened +msgid "ISO Support" +msgstr "Sokongan ISO" + +#. • MSG_263 +#. +#. Cheat mode to force legacy size units, where 1 KB is 1024 bytes and NOT that fake 1000 bytes abomination! +msgid "Use PROPER size units" +msgstr "Guna saiz seunit yang BETUL" + +#. • MSG_264 +msgid "Deleting directory '%s'" +msgstr "Memadam direktori '%s'" + +#. • MSG_265 +msgid "VMWare disk detection" +msgstr "Pengesanan cakera VMWare" + +#. • MSG_266 +msgid "Dual UEFI/BIOS mode" +msgstr "Mod dwi UEFI/BIOS" + +#. • MSG_267 +msgid "Applying Windows image: %s" +msgstr "Menggunakan imej Windows: %s" + +#. • MSG_268 +msgid "Applying Windows image..." +msgstr "Menggunakan imej Windows..." + +#. • MSG_269 +msgid "Preserve timestamps" +msgstr "Mengekalkan cap masa" + +#. • MSG_270 +msgid "USB debug" +msgstr "Nyahpijat USB" + +#. • MSG_271 +msgid "Computing image checksums: %s" +msgstr "Mengira semak tambah imej: %s" + +#. • MSG_272 +msgid "Compute the MD5, SHA1 and SHA256 checksums for the selected image" +msgstr "Mengira semak tambah MD5, SHA1 dan SHA256 imej dipilih" + +#. • MSG_273 +msgid "Change the application language" +msgstr "Menukar bahasa aplikasi" + +#. • MSG_274 +msgid "%s image detected" +msgstr "%s imej dikesan" + +#. • MSG_275 +#. +#. '%s' will be replaced with your translations for MSG_036 ("ISO Image") and MSG_095 ("DD Image") +msgid "" +"The image you have selected is an 'ISOHybrid' image. This means it can be written either in %s (file copy) mode or %s (disk image) mode.\n" +"Rufus recommends using %s mode, so that you always have full access to the drive after writing it.\n" +"However, if you encounter issues during boot, you can try writing this image again in %s mode.\n" +"\n" +"Please select the mode that you want to use to write this image:" +msgstr "" +"Imej yang anda telah pilih adalah imej 'ISOHybrid'. Ini bermaksud ia boleh ditulis sama ada dalam %s mod (salinan fail) atau %s mod (imej cakera).\n" +"Rufus galakkan menggunakan mod %s, jadi anda selalu mempunyai akses penuh ke pemacu selepas menulisnya.\n" +"Bagaimanapun, jika anda menghadapi isu-isu semasa boot, anda boleh cuba menulis imej ini lagi dalam mod %s.\n" +"\n" +"Sila pilih mod yang anda mahu guna untuk menulis imej ini:" + +#. • MSG_276 +#. +#. '%s' will be replaced with your translation for MSG_036 ("ISO Image") +msgid "Write in %s mode (Recommended)" +msgstr "Menulis dalam mod %s (Digalakkan)" + +#. • MSG_277 +#. +#. '%s' will be replaced with your translation for MSG_095 ("DD Image") +msgid "Write in %s mode" +msgstr "Menulis dalam mod %s" + +#. • MSG_278 +msgid "Checking for conflicting processes..." +msgstr "Menyemak proses yang berkonflik." + +#. • MSG_279 +msgid "Non bootable" +msgstr "Tidak boleh boot" + +#. • MSG_280 +msgid "Disk or ISO image" +msgstr "Cakera atau imej ISO" + +#. • MSG_281 +msgid "%s (Please select)" +msgstr "%s (Sila pilih)" + +#. • MSG_282 +msgid "Exclusive USB drive locking" +msgstr "Penguncian pemacu USB eksklusif" + +#. • MSG_283 +msgid "Invalid signature" +msgstr "Tandatangan tidak sah" + +#. • MSG_284 +msgid "The downloaded executable is missing a digital signature." +msgstr "'Executable' yang dimuat turun kehilangan tandatangan digital." + +#. • MSG_285 +msgid "" +"The downloaded executable is signed by '%s'.\n" +"This is not a signature we recognize and could indicate some form of malicious activity...\n" +"Are you sure you want to run this file?" +msgstr "" +"'Executable' yang dimuat turun ditandatangani oleh '%s'.\n" +"Ini bukannya tandatangan yang kami kenal dan boleh menunjukkan beberapa bentuk aktiviti berniat jahat...\n" +"Adakah anda pasti anda mahu menjalankan fail ini?" + +#. • MSG_286 +msgid "Zeroing drive: %s" +msgstr "Mensifarkan pemacu: %s" + +#. • MSG_287 +msgid "Detection of non-USB removable drives" +msgstr "Mengesan cakera bukan USB" + +#. • MSG_288 +msgid "Missing elevated privileges" +msgstr "Hilang hak kebenaran istimewa" + +#. • MSG_289 +msgid "This application can only run with elevated privileges" +msgstr "Aplikasi ini hanya boleh digunakan apabila diberikan hak kebenaran istimewa" + +#. • MSG_290 +msgid "File Indexing" +msgstr "Pengindeksan Fail" + +#. • MSG_291 +msgid "Version selection" +msgstr "Pemilihan versi" + +#. • MSG_292 +msgid "Please select the version of Windows you want to install:" +msgstr "Sila pilih versi Windows yang anda ingin memasang:" + +#. • MSG_293 +msgid "Unsupported Windows version" +msgstr "Versi Windows tidak disokong" + +#. • MSG_294 +msgid "" +"This version of Windows is no longer supported by Rufus.\n" +"The last version of Rufus compatible with this platform is v%d.%d." +msgstr "" +"Versi Windows ini tidak lagi disokong oleh Rufus.\n" +"Versi terakhir Rufus yang serasi dengan platform ini ialah v%d.%d." + +#. • MSG_295 +msgid "Warning: Unofficial version" +msgstr "Amaran: versi bukan rasmi" + +#. • MSG_296 +msgid "" +"This version of Rufus was not produced by its official developer(s).\n" +"\n" +"Are you sure you want to run it?" +msgstr "" +"Versi Rufus ini bukan dibuat oleh pemaju-pemaju rasmi Rufus. \n" +"\n" +"Adakan anda yakin ingin menggunakannya?" + +#. • MSG_297 +msgid "Truncated ISO detected" +msgstr "ISO yang dipenggal dikesan" + +#. • MSG_298 +msgid "" +"The ISO file you have selected does not match its declared size: %s of data is missing!\n" +"\n" +"If you obtained this file from the Internet, you should try to download a new copy and verify that the MD5 or SHA checksums match the official ones.\n" +"\n" +"Note that you can compute the MD5 or SHA in Rufus by clicking the (✓) button." +msgstr "" +"Saiz fail ISO yang anda pilih adalah tidak sama dengan saiz yang diisytiharkan oleh fail ISO ini. %s data telah hilang!\n" +"\n" +"Jika fail ini diperolehi dari intenet, anda sepatutnya muat turun semula fail ini dan sahkan bahawa tandatangan MD5 atau SHA adalah sama dengan versi yang rasmi.\n" +"\n" +"Anda boleh dapatkan MD5 atau SHA fail yang dipilih ini dengan menekan butang (✓). Kemudian anda perlu membandingkan dengan MD5 atau SHA daripada fail yang rasmi." + +#. • MSG_299 +msgid "Timestamp validation error" +msgstr "Ralat validasi cap waktu" + +#. • MSG_300 +msgid "" +"Rufus could not validate that the timestamp of the downloaded update is more recent than the one for the current executable.\n" +"\n" +"In order to prevent potential attack scenarios, the update process has been aborted and the download will be deleted. Please check the log for more details." +msgstr "" +"Rufus tidak dapat mengesahkan bahawa kemas kini yang dimuat turun adalah lebih baru daripada aplikasi yang dijalankan sekarang.\n" +"\n" +"Untuk mengelakkan daripada senario dimana PC diserang dengan virus, proses kemaskini telah dibatalkan dan fail yang telah dimuat turun akan dipadam. Sila semak log untuk maklumat lanjut." + +#. • MSG_301 +msgid "Show application settings" +msgstr "Tunjuk tetapan aplikasi" + +#. • MSG_302 +msgid "Show information about this application" +msgstr "Paparkan maklumat tentang aplikasi ini" + +#. • MSG_303 +msgid "Show the log" +msgstr "Paparkan log" + +#. • MSG_304 +msgid "Create a disk image of the selected device" +msgstr "Cipta imej cakera untuk peranti yang dipilih" + +#. • MSG_305 +msgid "Use this option to indicate if you plan to install Windows to a different disk, or if you want to run Windows directly from this drive (Windows To Go)." +msgstr "Pilih pilihan ini jika anda mahu memasang Windows pada komputer lain atau ingin menggunakan Windows terus daripada cakera/media ini (Windows To Go)" + +#. • MSG_306 +#. +#. You can see this status message by pressing -- and then selecting START. +#. It's the same as MSG_286 but with a process that *may* be faster, hence the name. +msgid "Fast-zeroing drive: %s" +msgstr "Mensifarkan pemacu 'Fast': %s" + +#. • MSG_307 +msgid "this may take a while" +msgstr "ini mungkin mengambil sedikit masa" + +#. • MSG_308 +msgid "VHD detection" +msgstr "Pengesanan VHD" + +#. • MSG_309 +msgid "Compressed archive" +msgstr "Arkib termampat" + +#. • MSG_310 +msgid "" +"The ISO you have selected uses UEFI and is small enough to be written as an EFI System Partition (ESP). Writing to an ESP, instead of writing to a generic data partition occupying the whole disk, can be preferable for some types of installations.\n" +"\n" +"Please select the mode that you want to use to write this image:" +msgstr "" +"ISO yang anda pilih menggunakan UEFI dan cukup kecil untuk ditulis sebagai Partition Sistem EFI (ESP). Menulis kepada ESP, bukannya menulis kepada partition data generik yang menduduki keseluruhan cakera, boleh menjadi lebih baik untuk beberapa jenis pemasangan.\n" +"\n" +"Sila pilih mod yang anda mahu gunakan untuk menulis imej ini:" + +#. • MSG_311 +msgid "Use %s (in the main application window) to enable." +msgstr "Gunakan %s (dalam tetingkap aplikasi utama) untuk mendayakan." + +#. • MSG_312 +msgid "Extra hashes (SHA512)" +msgstr "Cincangan tambahan (SHA512)" + +#. • MSG_313 +msgid "Save to VHD" +msgstr "Simpan ke VHD" + +#. • MSG_314 +msgid "Compute image checksums" +msgstr "Pengiraan semakan imej" + +#. • MSG_315 +msgid "Multiple buttons" +msgstr "Pelbagai butang" + +#. • MSG_316 +msgid "Number of passes" +msgstr "Bilangan pas" + +#. • MSG_317 +msgid "Disk ID" +msgstr "ID Cakera" + +#. • MSG_318 +msgid "Default thread priority: %d" +msgstr "Keutamaan benang lalai: %d" + +#. • MSG_319 +msgid "Ignore Boot Marker" +msgstr "Abaikan penanda but" + +#. • MSG_320 +msgid "Refreshing partition layout (%s)..." +msgstr "Tataletak partition yang menyegarkan (%s)..." + +#. • MSG_321 +msgid "" +"The image you have selected is an ISOHybrid, but its creators have not made it compatible with ISO/File copy mode.\n" +"As a result, DD image writing mode will be enforced." +msgstr "" +"Imej yang anda pilih ialah ISOHybrid, tetapi penciptanya tidak menjadikannya serasi dengan mod salinan ISO/Fail.\n" +"Akibatnya, mod penulisan imej DD akan dikuatkuasakan." + +#. • MSG_322 +msgid "Unable to open or read '%s'" +msgstr "Tidak dapat membuka atau membaca '%s'" + +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Guna SkuSiPolicy.p7b semasa pemasangan (Lihat KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Penambahbaikan QoL (Jangan paksa Copilot, OneDrive, Outlook, Fast Startup, dll.)" + +#. • MSG_325 +msgid "Applying Windows customization: %s" +msgstr "Menggunakan penyesuaian Windows: %s" + +#. • MSG_326 +msgid "Applying user options..." +msgstr "Menggunakan pilihan pengguna..." + +#. • MSG_327 +msgid "Windows User Experience" +msgstr "Pengalaman Pengguna Windows" + +#. • MSG_328 +msgid "Customize Windows installation?" +msgstr "Sesuaikan pemasangan Windows?" + +#. • MSG_329 +msgid "Remove requirement for 4GB+ RAM, Secure Boot and TPM 2.0" +msgstr "Alih keluar keperluan untuk 4GB+ RAM, But Selamat dan TPM 2.0" + +#. • MSG_330 +msgid "Remove requirement for an online Microsoft account" +msgstr "Alih keluar keperluan untuk akaun Microsoft dalam talian" + +#. • MSG_331 +msgid "Disable data collection (Skip privacy questions)" +msgstr "Nyahdayakan pengumpulan data (Langkau soalan privasi)" + +#. • MSG_332 +msgid "Prevent Windows To Go from accessing internal disks" +msgstr "Halang Windows To Go daripada mengakses cakera dalaman" + +#. • MSG_333 +msgid "Create a local account with username:" +msgstr "Buat akaun tempatan dengan nama pengguna:" + +#. • MSG_334 +msgid "Set regional options to the same values as this user's" +msgstr "Mengesetkan opsyen rantau kepada nilai yang sama seperti pengguna ini" + +#. • MSG_335 +msgid "Disable BitLocker automatic device encryption" +msgstr "Lumpuhkan penyulitan peranti automatik BitLocker" + +#. • MSG_336 +msgid "Persistent log" +msgstr "Log berterusan" + +#. • MSG_337 +msgid "" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" +"- Select 'Yes' to connect to the Internet and download it\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The file will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Fail tambahan ('%s') mesti dimuat turun dari Microsoft untuk menggunakan ciri ini:\n" +"- Pilih 'Ya' untuk menyambung ke Internet dan memuat turunnya\n" +"- Pilih 'Tidak' untuk membatalkan operasi\n" +"\n" +"Nota: Fail akan dimuat turun ke dalam direktori aplikasi dan akan digunakan semula secara automatik jika tersedia." + +#. • MSG_338 +msgid "Revoked UEFI bootloader detected" +msgstr "Pemuat but UEFI yang dibatalkan dikesan" + +#. • MSG_339 +msgid "" +"Rufus detected that the ISO you have selected contains a UEFI bootloader that has been revoked and that will produce %s, when Secure Boot is enabled on a fully up to date UEFI system.\n" +"\n" +"- If you obtained this ISO image from a non reputable source, you should consider the possibility that it might contain UEFI malware and avoid booting from it.\n" +"- If you obtained it from a trusted source, you should try to locate a more up to date version, that will not produce this warning." +msgstr "" +"Rufus mengesan bahawa ISO yang anda pilih mengandungi pemuat but UEFI yang telah ditarik balik dan akan menghasilkan %s, apabila Secure Boot diaktifkan pada sistem UEFI yang terkini sepenuhnya.\n" +"\n" +"- Jika anda memperoleh imej ISO ini daripada sumber yang tidak dipercayai, anda harus mempertimbangkan kemungkinan ia mengandungi perisian hasad UEFI dan elakkan daripada membuat but daripadanya.\n" +"- Jika anda memperolehnya daripada sumber yang dipercayai, anda harus cuba mencari versi yang lebih terkini, yang tidak akan menghasilkan amaran ini." + +#. • MSG_340 +msgid "a \"Security Violation\" screen" +msgstr "skrin \"Pelanggaran Keselamatan\"" + +#. • MSG_341 +msgid "a Windows Recovery Screen (BSOD) with '%s'" +msgstr "skrin Pemulihan Windows (BSOD) dengan '%s'" + +#. • MSG_342 +msgid "Compressed VHDX Image" +msgstr "Imej VHDX Termampat" + +#. • MSG_343 +msgid "Uncompressed VHD Image" +msgstr "Imej VHD Tidak Termampat" + +#. • MSG_344 +msgid "Full Flash Update Image" +msgstr "Imej Kemas Kini Denyar Penuh" + +#. • MSG_345 +msgid "" +"Some additional data must be downloaded from Microsoft to use this functionality:\n" +"- Select 'Yes' to connect to the Internet and download it\n" +"- Select 'No' to cancel the operation" +msgstr "" +"Beberapa data tambahan mesti dimuat turun dari Microsoft untuk menggunakan fungsi ini:\n" +"- Pilih 'Ya' untuk menyambung ke Internet dan memuat turunnya\n" +"- Pilih 'Tidak' untuk membatalkan operasi" + +#. • MSG_346 +msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" +msgstr "Sekat Windows ke S-Mode (TIDAK SERASI dengan pintasan akaun dalam talian)" + +#. • MSG_347 +msgid "Expert Mode" +msgstr "Mod Pakar" + +#. • MSG_348 +msgid "Extracting archive files: %s" +msgstr "Mengekstrak fail arkib: %s" + +#. • MSG_349 +msgid "Use Rufus MBR" +msgstr "Guna MBR Rufus" + +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Guna pemuat but bertandatangan 'Windows CA 2023' (Memerlukan PC sasaran yang serasi)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Sedang memeriksa penarikan balik pemuat but UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Sedang memeriksa kemas kini DBX UEFI..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Kemas kini DBX tersedia" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus telah menemui versi kemas kini fail DBX yang digunakan untuk melakukan pemeriksaan penarikan balik Secure Boot UEFI. Adakah anda mahu memuat turun kemas kini ini?\n" +"- Pilih 'Ya' untuk menyambung ke Internet dan memuat turun kandungan ini\n" +"- Pilih 'Tidak' untuk membatalkan operasi\n" +"\n" +"Nota: Fail akan dimuat turun ke dalam direktori aplikasi dan akan digunakan semula secara automatik jika tersedia." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠SECARA SENYAP⚠ padam cakera dan pasang:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes', you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Anda telah memilih untuk menggunakan pilihan pemasangan Windows \"senyap\".\n" +"\n" +"Ini adalah pilihan lanjutan, dikhaskan untuk mereka yang ingin mencipta media yang tidak meminta pengguna semasa pemasangan Windows dan oleh itu MEMADAM SECARA TANPA SYARAT cakera pertama yang dikesan pada sistem sasaran. Jika anda tidak berhati-hati, menggunakan pilihan ini boleh mengakibatkan KEHILANGAN DATA YANG TIDAK BOLEH DIUNDURKAN!" + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Lokasi imej tidak disokong" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Anda tidak boleh menggunakan imej yang terletak pada pemacu sasaran, kerana pemacu tersebut akan dipadam sepenuhnya. Ia sama seperti cuba menggergaji dahan yang anda duduki!\n" +"\n" +"Sila pindahkan imej ke lokasi lain dan cuba lagi." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Adalah selamat untuk membiarkan pilihan ini didayakan walaupun anda mempunyai TPM atau lebih RAM, kerana pilihan ini hanya memintas keperluan persediaan dan tidak benar-benar menghalang Windows daripada menggunakan semua perkakasan yang tersedia." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Untuk pilihan ini berfungsi, rangkaian/Internet MESTI diputuskan semasa pemasangan!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Secara automatik jawab 'tidak' kepada soalan persediaan Windows berkaitan perkongsian data dengan Microsoft, dan bukannya meminta pengguna." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Anda sepatutnya membiarkan pilihan ini didayakan, melainkan anda okay dengan 'Windows To Go' mengakses cakera dalaman dan secara senyap melakukan peningkatan sistem fail yang tidak boleh diundurkan." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Secara automatik mencipta akaun tempatan dengan nama pengguna yang ditentukan, menggunakan kata laluan kosong yang perlu ditukar pada log masuk seterusnya." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Salin tetapan rantau dari PC ini (papan kekunci, zon waktu, mata wang), dan bukannya meminta pengguna." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Jangan suliikan cakera sistem, melainkan diminta secara jelas oleh pengguna." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Guna pilihan ini hanya jika anda tahu apa itu S-Mode dan faham bahawa sistem anda mungkin dikunci ke S-Mode walaupun selepas anda memadam sepenuhnya dan memasang semula Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Guna pilihan ini jika sistem yang anda rancang untuk memasang Windows menggunakan sijil Secure Boot yang terkini sepenuhnya. Jika perlu, anda boleh melihat penggunaan 'Mosby' untuk mengemas kini sistem anda." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Guna pilihan ini jika anda ingin menarik balik pemuat but Windows tambahan yang mungkin tidak selamat, tetapi dengan potensi juga menghalang media Windows standard daripada membuat but." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Penambahbaikan \"Kualiti Hidup\": Lumpuhkan kebanyakan ciri yang tidak diingini yang Microsoft cuba paksa kepada pengguna akhir." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Jika anda menggunakan pilihan ini, sila pastikan untuk memutuskan setiap cakera dari PC sasaran, kecuali yang anda ingin pasangkan Windows, serta jangan biarkan media dipasang ke mana-mana PC yang anda tidak mahu padamkan." + +#. • MSG_900 +#. +#. The following messages are for the Windows Store listing only and are not used by the application +msgid "Rufus is a utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc." +msgstr "Rufus adalah utiliti yang membantu memformat dan mencipta pemacu kilat USB boot, seperti pemacu pen/kekunci USB, kayu memori, dan lain-lain." + +#. • MSG_901 +msgid "Official site: %s" +msgstr "Laman rasmi: %s" + +#. • MSG_902 +msgid "Source Code: %s" +msgstr "Kod Sumber: %s" + +#. • MSG_903 +msgid "ChangeLog: %s" +msgstr "Log Perubahan: %s" + +#. • MSG_904 +#. +#. The gnu.org website has many translations of the GPL (such as https://www.gnu.org/licenses/gpl-3.0.zh-cn.html, https://www.gnu.org/licenses/gpl-3.0.fr.html) +#. Please make sure you try to locate the relevant https://www.gnu.org/licenses/gpl-3.0..html for your language and use it here. +msgid "" +"This application is licensed under the terms of the GNU Public License (GPL) version 3.\n" +"See https://www.gnu.org/licenses/gpl-3.0.en.html for details." +msgstr "" +"Permohonan ini dilesenkan di bawah syarat-syarat Lesen Awam GNU (GPL) versi 3.\n" +"Lihat https://www.gnu.org/licenses/gpl-3.0.html untuk butiran." + +#. • MSG_905 +#. +#. Keyword for "boot" will be used for search in the Windows Store +msgid "Boot" +msgstr "" + +#. • MSG_910 +#. +#. This and subsequent messages will be listed in the 'Features' section of the Windows Store page +msgid "Format USB, flash card and virtual drives to FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" +msgstr "Formatkan USB, kad flash dan pemacu maya kepada FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" + +#. • MSG_911 +msgid "Create FreeDOS bootable USB drives" +msgstr "Buat pemacu USB boleh boot FreeDOS" + +#. • MSG_912 +msgid "Create bootable drives from bootable ISOs (Windows, Linux, etc.)" +msgstr "Buat pemacu boleh boot daripada ISO boleh boot (Windows, Linux, dll.)" + +#. • MSG_913 +msgid "Create bootable drives from bootable disk images, including compressed ones" +msgstr "Buat pemacu boleh boot daripada imej cakera boleh boot, termasuk yang dimampatkan" + +#. • MSG_914 +msgid "Create BIOS or UEFI bootable drives, including UEFI bootable NTFS" +msgstr "Buat pemacu boleh boot BIOS atau UEFI, termasuk NTFS boleh boot UEFI" + +#. • MSG_915 +msgid "Create 'Windows To Go' drives" +msgstr "Buat pemacu 'Windows To Go'" + +#. • MSG_916 +msgid "Create Windows 11 installation drives for PCs that don't have TPM or Secure Boot" +msgstr "Buat pemacu pemasangan Windows 11 untuk PC yang tidak mempunyai TPM atau But Selamat" + +#. • MSG_917 +msgid "Create persistent Linux partitions" +msgstr "Buat partition Linux berterusan" + +#. • MSG_918 +msgid "Create VHD/DD images of the selected drive" +msgstr "Buat imej VHD/DD bagi pemacu yang dipilih" + +#. • MSG_919 +msgid "Compute MD5, SHA-1, SHA-256 and SHA-512 checksums of the selected image" +msgstr "Kira MD5, SHA-1, SHA-256 dan SHA-512 checksum imej yang dipilih" + +#. • MSG_920 +msgid "Perform bad blocks checks, including detection of \"fake\" flash drives" +msgstr "Melakukan pemeriksaan blok buruk, termasuk pengesanan pemacu kilat \"palsu\"" + +#. • MSG_921 +msgid "Download official Microsoft Windows retail ISOs" +msgstr "Muat turun rasmi ISO runcit Microsoft Windows" + +#. • MSG_922 +msgid "Download UEFI Shell ISOs" +msgstr "Muat turun ISO Shell UEFI" diff --git a/res/loc/po/nb-NO.po b/res/loc/po/nb-NO.po index e2dbc6f7..624e698f 100644 --- a/res/loc/po/nb-NO.po +++ b/res/loc/po/nb-NO.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-09 19:38+0100\n" -"PO-Revision-Date: 2024-05-09 19:44+0100\n" +"POT-Creation-Date: 2026-04-07 23:05-0700\n" +"PO-Revision-Date: 2026-04-07 23:19-0700\n" "Last-Translator: \n" "Language-Team: \n" "Language: nb_NO\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Norwegian (Norsk)\n" "X-Rufus-LCID: 0x0414\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -846,7 +846,7 @@ msgstr "Ingen varighet" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Still størrelsen på den vedvarende partisjonen for live USB media. Angir størrelsen til 0 deaktiverer den vedvarende partisjonen." @@ -887,8 +887,9 @@ msgid "Another program or process is accessing this drive. Do you want to format msgstr "Et annet program eller en prosess holder tilgang til denne disken. Vil du formatere det uansett?" #. • MSG_133 +#, fuzzy msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -1795,6 +1796,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Kan ikke åpne eller lese '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Bruk SkuSiPolicy.p7b under installasjon (se KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "QoL‑forbedringer (ikke påtving Copilot, OneDrive, Outlook, Hurtig oppstart osv.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Utfører tilpasning av Windows: %s" @@ -1845,14 +1854,14 @@ msgstr "Behold log" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"En ekstra fil ('diskcopy.dll') må lastes ned fra Microsoft for å installere MS-DOS:\n" -"- Velg \"Ja\" for å koble til Internett og laste den ned\n" +"En ekstra fil ('%s') må lastes ned fra Microsoft for å bruke denne funksjonen:\n" +"- Velg 'Ja' for å koble til Internett og laste den ned\n" "- Velg 'Nei' for å avbryte operasjonen\n" "\n" "Merk: Filen vil bli lastet ned i programmets katalog og vil automatisk bli gjenbrukt hvis den er tilstede." @@ -1891,7 +1900,7 @@ msgstr "Ukomprimert VHD-imaget" #. • MSG_344 msgid "Full Flash Update Image" -msgstr "Full Flash Update Image" +msgstr "" #. • MSG_345 msgid "" @@ -1919,6 +1928,118 @@ msgstr "Pakker ut arkivfiler: %s" msgid "Use Rufus MBR" msgstr "Bruk Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Bruk bootloaders signert med «Windows CA 2023» (krever en kompatibel target‑PC)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Søker etter tilbakekalling av UEFI‑bootloader…" + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Søker etter UEFI‑DBX‑oppdateringer..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "UEFI‑DBX‑oppdatering tilgjengelig" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus har funnet en oppdatert versjon av DBX‑filene som brukes til å utføre tilbakekallingssjekk for UEFI Secure Boot. Vil du laste ned denne oppdateringen?\n" +"– Velg «Ja» for å koble til Internett og laste ned innholdet\n" +"– Velg «Nei» for å avbryte operasjonen\n" +"\n" +"Merk: Filene lastes ned til programmets katalog og vil automatisk bli gjenbrukt hvis de allerede finnes." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠STILLEMODUS⚠ slett disk og installer:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Du har valgt alternativet for «stille» Windows‑installasjon.\n" +"\n" +"Dette er et avansert alternativ, beregnet for brukere som ønsker å opprette installasjonsmedier som ikke viser noen spørsmål under Windows‑installasjonen, og som derfor UBETINGET SLETTER den første oppdagede disken på målsystemet. Uforsiktig bruk av dette alternativet kan føre til UGJENKALLELIG TAP AV DATA!\n" +"\n" +"Hvis dette ikke er det du ønsker, velg «Nei» for å gå tilbake og fjerne avmerkingen for dette alternativet.\n" +"Hvis du derimot velger «Ja», bekrefter du at alt ansvar for eventuell datatap fullt og helt ligger hos DEG." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Ugyldig bildelokasjon" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Du kan ikke bruke et bilde som er lagret på måldisken, siden denne disken vil bli fullstendig slettet. Det tilsvarer å sage av grenen du sitter på!\n" +"\n" +"Flytt bildet til en annen plassering og prøv igjen." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Det er trygt å la dette alternativet være aktivert selv om systemet har TPM eller mer RAM, siden alternativet kun omgår installasjonskravene og ikke hindrer Windows i å bruke all tilgjengelig maskinvare." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "For at dette alternativet skal fungere, MÅ nettverk/Internett være frakoblet under installasjonen!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Svar automatisk «nei» på Windows‑installasjonsspørsmål som gjelder deling av data med Microsoft, i stedet for å spørre brukeren." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Dette alternativet bør være aktivert, med mindre du aksepterer at «Windows To Go» får tilgang til interne disker og i stillhet utfører irreversible filsystemoppgraderinger." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Opprett automatisk en lokal konto med angitt brukernavn og tomt passord, som må endres ved neste pålogging." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Dupliser regionale innstillinger fra denne PC‑en (tastatur, tidssone, valuta) i stedet for å spørre brukeren." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Ikke krypter systemdisken, med mindre brukeren uttrykkelig ber om det." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Bruk dette alternativet kun hvis du vet hva S‑modus er, og forstår at systemet kan forbli låst i S‑modus selv etter full sletting av disken og ny installasjon av Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Bruk dette alternativet dersom systemet du planlegger å installere Windows på, bruker fullt oppdaterte Secure Boot‑sertifikater. Ved behov kan du vurdere å bruke «Mosby» for å oppdatere systemet." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Bruk dette alternativet hvis du ønsker å tilbakekalle flere potensielt usikre Windows‑bootloaders, men vær oppmerksom på at dette også kan hindre standard Windows‑medier i å starte." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "«Quality of Life»-forbedringer: Deaktiverer de fleste uønskede funksjonene Microsoft forsøker å påtvinge sluttbrukere." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Hvis du bruker dette alternativet, sørg for å koble fra alle disker fra mål‑PC‑en unntatt den du vil installere Windows på, og pass på at installasjonsmediet ikke er koblet til noen PC du ikke ønsker å slette." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/nl-NL.po b/res/loc/po/nl-NL.po index a25ffaca..cfb131c1 100644 --- a/res/loc/po/nl-NL.po +++ b/res/loc/po/nl-NL.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-26 11:15+0200\n" -"PO-Revision-Date: 2024-04-26 11:44+0200\n" +"POT-Creation-Date: 2026-03-23 18:59+0000\n" +"PO-Revision-Date: 2026-03-23 19:01+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: nl_NL\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Dutch (Nederlands)\n" "X-Rufus-LCID: 0x0413, 0x0813\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -137,7 +137,7 @@ msgstr "Nee" #. • IDD_LOG → IDD_LOG msgid "Log" -msgstr "" +msgstr "Logboek" #. • IDD_LOG → IDC_LOG_CLEAR msgid "Clear" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -846,7 +846,7 @@ msgstr "Geen persistentie" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "De grootte van de persistente partitie instellen voor live USB-media. De grootte op 0 instellen schakelt de persistente partitie uit." @@ -888,17 +888,17 @@ msgstr "Een ander programma of proces gebruikt deze schijf. Wilt u ze toch forma #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus heeft gedetecteerd dat u probeert om een Windows To Go medium aan te maken gebaseerd op een 1809-ISO\n" +"Rufus heeft vastgesteld dat u probeert een ‘Windows To Go’-medium te maken op basis van een 1809-ISO.\n" "\n" -"Door een *MICROSOFT-BUG* zal dit medium crashen tijdens het opstarten van Windows (Blue Screen Of Death), tenzij u manueel het bestand 'WppRecorder.sys' vervangt door een 1803-versie.\n" +"Vanwege een *MICROSOFT-BUG* zal dit medium tijdens het opstarten van Windows crashen (Blue Screen Of Death), tenzij u het bestand ‘WppRecorder.sys’ handmatig vervangt door een versie uit 1803.\n" "\n" -"Merk ook op dat Rufus dit voor u niet automatisch kan oplossen omdat 'WppRecorder.sys' een Microsoft-auteursrecht heeft, dus we kunnen geen kopie van het bestand in de toepassing inbedden op een legale manier..." +"Houd er ook rekening mee dat Rufus dit niet automatisch voor u kan oplossen omdat ‘WppRecorder.sys’ een door Microsoft auteursrechtelijk beschermd bestand is, waardoor we wettelijk gezien geen kopie van het bestand in de applicatie mogen opnemen..." #. • MSG_134 msgid "" @@ -1795,6 +1795,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Kan '%s' niet openen of lezen" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "SkuSiPolicy.p7b toepassen tijdens installatie (zie KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Verbeteringen in de gebruikersvriendelijkheid (Copilot, Onedrive, Outlook, Fast Startup, enz niet forceren)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Windows aanpassen: %s" @@ -1845,17 +1853,17 @@ msgstr "" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Er moet een extra bestand ('diskcopy.dll') worden gedownload van Microsoft om MS-DOS te installeren:\n" -"- Selecteer 'Ja' om verbinding te maken met internet en het bestand te downloaden\n" -"- Selecteer 'Nee' om de bewerking te annuleren\n" +"Om deze functie te kunnen gebruiken, moet u een extra bestand (‘%s’) downloaden van Microsoft:\n" +"- Selecteer ‘Ja’ om verbinding te maken met internet en het bestand te downloaden\n" +"- Selecteer ‘Nee’ om de handeling te annuleren\n" "\n" -"Opmerking: het bestand wordt gedownload in de map van de toepassing en wordt automatisch opnieuw gebruikt als het aanwezig is." +"Opmerking: het bestand wordt gedownload naar de map van de toepassing en wordt automatisch opnieuw gebruikt als het daar al aanwezig is." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1919,6 +1927,120 @@ msgstr "Archiefbestanden uitpakken: %s" msgid "Use Rufus MBR" msgstr "Rufus MBR gebruiken" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "'Windows CA 2023' signed bootloaders gebruiken (alleen voor compatibele doel-pc's)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Controleren of de UEFI-bootloader is ingetrokken..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Controleren op updates voor UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Update voor DBX beschikbaar" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus heeft een bijgewerkte versie gevonden van de DBX-bestanden die worden gebruikt voor het controleren van de intrekking van UEFI Secure Boot. Wilt u deze update downloaden?\n" +"- Selecteer ‘Ja’ om verbinding te maken met internet en deze inhoud te downloaden\n" +"- Selecteer ‘Nee’ om de bewerking te annuleren\n" +"\n" +"Opmerking: de bestanden worden gedownload naar de map van de toepassing en worden automatisch opnieuw gebruikt als ze daar al aanwezig zijn.\n" +"\n" +"Vertaald met DeepL.com (gratis versie)" + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠STIL⚠ schijf wissen en installeren:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"U hebt ervoor gekozen om de “stille” Windows-installatieoptie te gebruiken.\n" +"\n" +"Dit is een geavanceerde optie, bedoeld voor gebruikers die installatiemedia willen maken waarbij de gebruiker tijdens de Windows-installatie niet om bevestiging wordt gevraagd en waarbij de eerste gedetecteerde schijf op het doelsysteem daarom ONVOORWAARDELIJK WORDT GEWIST. Als u niet voorzichtig bent, kan het gebruik van deze optie leiden tot ONOMKEERBAAR GEGEVENSVERLIES!\n" +"\n" +"Als dit niet is wat u wilt, selecteer dan ‘Nee’ om terug te gaan en vink de optie uit.\n" +"Anders, als u ‘Ja’ selecteert, gaat u ermee akkoord dat de volledige verantwoordelijkheid voor eventueel gegevensverlies volledig bij uzelf ligt." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Locatie van image niet ondersteund" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"U kunt geen image gebruiken die op de doelschijf staat, aangezien die schijf volledig zal worden gewist. Dat is hetzelfde als proberen de tak door te zagen waarop u zit!\n" +"\n" +"Verplaats de image naar een andere locatie en probeer het opnieuw." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "U kunt deze optie gerust ingeschakeld laten, zelfs als u een TPM of meer RAM-geheugen hebt, aangezien deze optie alleen de installatievereisten omzeilt en niet daadwerkelijk verhindert dat Windows alle beschikbare hardware gebruikt." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Om deze optie te laten werken, MOET de netwerk-/internetverbinding tijdens de installatie uitgeschakeld zijn!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Beantwoord de vragen in de Windows-installatieprocedure over het delen van gegevens met Microsoft automatisch met ‘nee’, in plaats van de gebruiker hierom te vragen." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Laat deze optie ingeschakeld, tenzij u ermee akkoord gaat dat ‘Windows To Go’ toegang krijgt tot interne schijven en in de achtergrond onomkeerbare upgrades van het bestandssysteem uitvoert." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Maak automatisch een lokaal account aan met de opgegeven gebruikersnaam en een leeg wachtwoord, dat bij de volgende aanmelding moet worden gewijzigd." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Kopieer de regionale instellingen van deze pc (toetsenbord, tijdzone, valuta), in plaats van de gebruiker hierom te vragen." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "De systeemschijf niet versleutelen, tenzij de gebruiker hier uitdrukkelijk om vraagt." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Gebruik deze optie alleen als u weet wat S-Mode is en u zich ervan bewust bent dat uw systeem mogelijk in S-Mode blijft staan, zelfs nadat u Windows volledig hebt gewist en opnieuw hebt geïnstalleerd." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Gebruik deze optie als het systeem waarop u Windows wilt installeren, volledig bijgewerkte Secure Boot-certificaten gebruikt. Indien nodig kunt u overwegen om ‘Mosby’ te gebruiken om uw systeem bij te werken." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Gebruik deze optie als u extra, mogelijk onveilige Windows-bootloaders wilt uitschakelen, maar houd er rekening mee dat hierdoor mogelijk ook standaard Windows-media niet meer kunnen opstarten." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Verbeteringen op het gebied van levenskwaliteit: schakel de meeste ongewenste functies uit die Microsoft eindgebruikers probeert op te dringen." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Als u deze optie gebruikt, zorg er dan voor dat u alle schijven van de doelcomputer loskoppelt, behalve de schijf waarop u Windows wilt installeren, en laat het installatiemedium niet aangesloten op een computer die u niet wilt wissen." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/pl-PL.po b/res/loc/po/pl-PL.po index 303214be..2bab771e 100644 --- a/res/loc/po/pl-PL.po +++ b/res/loc/po/pl-PL.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-08-13 12:38+0100\n" -"PO-Revision-Date: 2024-08-13 13:22+0100\n" +"POT-Creation-Date: 2026-04-07 22:23-0700\n" +"PO-Revision-Date: 2026-04-07 23:04-0700\n" "Last-Translator: \n" "Language-Team: \n" "Language: pl_PL\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Polish (Polski)\n" "X-Rufus-LCID: 0x0415\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -846,7 +846,7 @@ msgstr "Brak trwałości" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Ustaw rozmiar stałej partycji dla nośnika live USB. Ustawienie rozmiaru na 0 wyłącza trwałą partycję." @@ -888,17 +888,17 @@ msgstr "Inny program lub proces używa tego dysku. Czy chcesz go sformatować mi #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus wykrył, że próbujesz utworzyć nośnik \"Windows To Go\" bazujący na ISO 1809.\n" +"Rufus wykrył, że próbujesz utworzyć nośnik „Windows To Go” na podstawie obrazu ISO systemu Windows 10 w wersji 1809.\n" "\n" -"Z powodu *BŁĘDU MICROSOFTU*, ten nośnik ulegnie awarii podczas rozruchu systemu (Blue Screen of Death), chyba że ręcznie zastąpisz plik \"WppRecorder.sys\" wersją z 1803.\n" +"Z powodu BŁĘDU PO STRONIE MICROSOFTU taki nośnik spowoduje awarię systemu podczas uruchamiania Windows (Blue Screen), chyba że ręcznie zastąpisz plik „WppRecorder.sys” jego wersją z wydania 1803.\n" "\n" -"Należy również pamiętać, że powodem, dla którego Rufus nie może automatycznie rozwiązać tego problemu, jest to, że \"WppRecorder.sys” jest plikiem chronionym prawem autorskim firmy Microsoft, więc nie możemy zgodnie z prawem osadzić kopii pliku w aplikacji." +"Zauważ również, że powodem, dla którego Rufus nie może automatycznie naprawić tego problemu, jest fakt, iż plik „WppRecorder.sys” jest objęty prawami autorskimi firmy Microsoft, więc nie możemy legalnie dołączyć jego kopii do aplikacji." #. • MSG_134 msgid "" @@ -1795,6 +1795,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Nie można otworzyć '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Zastosuj SkuSiPolicy.p7b przy instalacji (Patrz KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Usprawnienia „QoL” (Nie wymuszaj Copilot, OneDrive, Outlook, Szybki Startup, itp.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Zastosuj niestandardowe ustawienia Windows: %s" @@ -1845,17 +1853,17 @@ msgstr "Stały dziennik (log)" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Dodatkowy plik (\"diskcopy.dll\") musi zostać pobrany od Microsoft, żeby zainstalować MS-DOS:\n" -"- Wybierz opcję \"Tak\", aby pobrać pliku z internetu\n" -"- Wybierz opcję \"Nie\", aby anulować operację\n" +"Aby skorzystać z tej funkcji, należy pobrać z firmy Microsoft dodatkowy plik ('%s'):\n" +"– Wybierz „Tak”, aby połączyć się z Internetem i pobrać ten plik\n" +"– Wybierz „Nie”, aby anulować operację\n" "\n" -"Uwaga: Plik zostanie pobrany do folderu aplikacji i będzie użyty ponownie, gdy będzie dostępny." +"Uwaga: Plik zostanie pobrany do katalogu aplikacji i będzie automatycznie ponownie wykorzystywany, jeśli będzie już obecny." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1919,6 +1927,118 @@ msgstr "Wypakowywanie plików z archiwum: %s" msgid "Use Rufus MBR" msgstr "Użyj Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Użyj programów rozruchowych (bootloaderów) podpisanych przez „Windows CA 2023” (wymaga kompatybilnego komputera docelowego)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Sprawdzanie unieważnienia programu rozruchowego UEFI…" + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Sprawdzanie aktualizacji bazy UEFI DBX…" + +#. • MSG_353 +msgid "DBX update available" +msgstr "Dostępna aktualizacja DBX" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus wykrył zaktualizowaną wersję plików DBX używanych do sprawdzania unieważnień w UEFI Secure Boot. Czy chcesz pobrać tę aktualizację?\n" +"– Wybierz „Tak”, aby połączyć się z Internetem i pobrać tę zawartość\n" +"– Wybierz „Nie”, aby anulować operację\n" +"\n" +"Uwaga: Pliki zostaną pobrane do katalogu aplikacji i będą automatycznie ponownie wykorzystywane, jeśli już tam się znajdują." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠AUTOMATYCZNIE I BEZ POTWIERDZENIA⚠ wymaż dysk i zainstaluj:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Wybrałeś opcję „cichej” instalacji systemu Windows.\n" +"\n" +"Jest to opcja zaawansowana, przeznaczona dla osób, które chcą utworzyć nośnik instalacyjny niewyświetlający żadnych monitów podczas instalacji systemu Windows, a co za tym idzie BEZWARUNKOWO WYMAZUJĄCY pierwszy wykryty dysk w systemie docelowym. Jeśli nie zachowasz ostrożności, użycie tej opcji może doprowadzić do NIEODWRACALNEJ UTRATY DANYCH!\n" +"\n" +"Jeśli nie o to ci chodzi, wybierz „Nie”, aby wrócić i odznaczyć tę opcję.\n" +"W przeciwnym razie, wybierając „Tak”, zgadzasz się, że cała odpowiedzialność za ewentualną utratę danych spoczywa WYŁĄCZNIE na TOBIE." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Nieobsługiwana lokacja obrazu" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Nie możesz użyć obrazu, który znajduje się na dysku docelowym, ponieważ ten dysk zostanie całkowicie wymazany. To dokładnie to samo, co próba piłowania gałęzi, na której się siedzi!\n" +"\n" +"Przenieś obraz w inne miejsce i spróbuj ponownie." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Można bezpiecznie pozostawić tę opcję włączoną, nawet jeśli posiadasz moduł TPM lub większą ilość pamięci RAM, ponieważ opcja ta jedynie omija wymagania instalatora i w rzeczywistości nie uniemożliwia systemowi Windows korzystania z całego dostępnego sprzętu." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Aby ta opcja działała poprawnie, podczas instalacji połączenie sieciowe / internetowe MUSI być odłączone!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Automatycznie odpowiadaj „nie” na pytania instalatora systemu Windows dotyczące udostępniania danych firmie Microsoft, zamiast wyświetlać je użytkownikowi." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Należy pozostawić tę opcję włączoną, chyba że akceptujesz sytuację, w której „Windows To Go” uzyskuje dostęp do wewnętrznych dysków i po cichu przeprowadza nieodwracalne aktualizacje systemu plików." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Automatycznie utwórz konto lokalne o podanej nazwie użytkownika, używając pustego hasła, które będzie musiało zostać zmienione przy następnym logowaniu." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Automatycznie skopiuj ustawienia regionalne z tego komputera (klawiatura, strefa czasowa, waluta), zamiast pytać użytkownika." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Nie szyfruj dysku systemowego, chyba że użytkownik wyraźnie tego zażąda." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Używaj tej opcji tylko wtedy, gdy wiesz, czym jest tryb S (S‑Mode), i rozumiesz, że system może pozostać zablokowany w trybie S nawet po całkowitym wymazaniu dysku i ponownej instalacji systemu Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Użyj tej opcji, jeśli system, na którym planujesz zainstalować system Windows, korzysta z w pełni aktualnych certyfikatów Secure Boot. W razie potrzeby możesz skorzystać z narzędzia „Mosby”, aby zaktualizować swój system." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Użyj tej opcji, jeśli chcesz unieważnić dodatkowe, potencjalnie niebezpieczne programy rozruchowe systemu Windows, mając jednak świadomość, że może to również uniemożliwić uruchamianie standardowych nośników instalacyjnych Windows." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Usprawnienia jakości życia („Quality of Life”): wyłączenie większości niechcianych funkcji, które Microsoft próbuje narzucać użytkownikom końcowym." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Jeśli korzystasz z tej opcji, upewnij się, że odłączyłeś wszystkie dyski od komputera docelowego z wyjątkiem tego, na którym chcesz zainstalować system Windows, oraz że nie pozostawiasz nośnika podłączonego do żadnego komputera, którego nie chcesz wymazać." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/pt-BR.po b/res/loc/po/pt-BR.po index 6ae65be0..9a9a6a67 100644 --- a/res/loc/po/pt-BR.po +++ b/res/loc/po/pt-BR.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-01 14:24-0300\n" -"PO-Revision-Date: 2024-05-04 12:06+0100\n" +"POT-Creation-Date: 2026-04-05 16:42-0300\n" +"PO-Revision-Date: 2026-04-05 22:44+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: pt_BR\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Portuguese Brazilian (Português do Brasil)\n" "X-Rufus-LCID: 0x0416\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -849,7 +849,7 @@ msgstr "Sem persistência" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Defina o tamanho da partição persistente para mídia USB ativa. Definir o tamanho como 0 desativa a partição persistente." @@ -891,14 +891,16 @@ msgstr "Outro programa ou processo está acessando esta unidade. Você quer form #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" "Rufus detectou que você está tentando criar uma mídia do Windows To Go com base em uma ISO 1809.\n" -"Devido a um *MICROSOFT BUG*, esta mídia irá travar durante a inicialização do Windows (Tela Azul da Morte), a menos que você substitua manualmente o arquivo 'WppRecorder.sys' por uma versão 1803.\n" +"\n" +"Devido a um *BUG DA MICROSOFT*, esta mídia irá travar durante a inicialização do Windows (Tela Azul da Morte), a menos que você substitua manualmente o arquivo 'WppRecorder.sys' por uma versão 1803.\n" +"\n" "Observe também que a razão pela qual o Rufus não pode corrigir isso automaticamente para você é que 'WppRecorder.sys' é um arquivo protegido por direitos autorais da Microsoft, portanto, não podemos incorporar legalmente uma cópia do arquivo no aplicativo..." #. • MSG_134 @@ -1086,7 +1088,7 @@ msgstr "Versão %d.%d (Build %d)" #. • MSG_176 msgid "English translation: Pete Batard " -msgstr "Tradutores:\\line• Tiago Rinaldi \\line• Chateaubriand Vieira Moura \\line• Maison da Silva \\line• Marcos Mello " +msgstr "Tradutores:\\line• Tiago Rinaldi \\line• Chateaubriand Vieira Moura \\line• Maison da Silva \\line• Marcos Mello " #. • MSG_177 msgid "Report bugs or request enhancements at:" @@ -1796,6 +1798,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Impossível abrir ou ler '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Aplicar SkuSiPolicy.p7b na instalação (Ver KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Melhorias QoL (Não forçar Copilot, OneDrive, Outlook, Fast Startup, etc.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Aplicando a personalização do Windows: %s" @@ -1846,13 +1856,13 @@ msgstr "Registo persistente" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Um arquivo adicional ('diskcopy.dll') precisa ser baixado da Microsoft para instalar o MS-DOS:\n" +"Um arquivo adicional ('%s') precisa ser baixado da Microsoft para usar este recurso:\n" "- Selecione 'Sim' para se conectar à Internet e baixá-lo\n" "- Selecione 'Não' para cancelar a operação\n" "\n" @@ -1920,6 +1930,118 @@ msgstr "Extraindo arquivos: %s" msgid "Use Rufus MBR" msgstr "Usar MBR do Rufus" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Usar carregadores de inicialização assinados com 'Windows CA 2023' (Requer um PC de destino compatível)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Verificando revogação de carregadores de inicialização UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Verificando atualizações do UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Atualização do DBX disponível" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus encontrou uma versão atualizada dos arquivos DBX usados para realizar verificações de revogação do UEFI Secure Boot. Você quer baixar esta atualização?\n" +"- Selecione 'Sim' para se conectar à Internet e baixar este conteúdo\n" +"- Selecione 'Não' para cancelar a operação\n" +"\n" +"Nota: Os arquivos serão baixados no diretório da aplicação e serão reutilizados automaticamente caso presentes." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠SILENCIOSAMENTE⚠ apagar o disco e instalar:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Você selecionou a opção de instalação \"silenciosa\" do Windows.\n" +"\n" +"Esta é uma opção avançada, reservada para quem pretende criar uma mídia que não questiona o usuário durante a instalação do Windows e que, portanto, INCONDICIONALMENTE APAGA o primeiro disco detectado no sistema de destino. Se você não for cuidadoso, usar esta opção pode resultar em PERDA IRREVERSÍVEL DE DADOS!\n" +"\n" +"Se não for isso que você deseja, por favor selecione 'Não' para voltar atrás e desmarcar a opção.\n" +"Do contrário, se você selecionar 'Sim', concorda que toda a responsabilidade por qualquer perda de dados será inteiramente SUA." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Localização da imagem não suportada" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Você não pode usar uma imagem que está localizada na unidade de destino, já que a unidade será completamente apagada. É a mesma coisa que tentar serrar o galho em que você está sentado!\n" +"\n" +"Por favor mova a imagem para um local diferente e tente novamente." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "É seguro deixar esta opção ativada mesmo que você tenha um TPM ou mais RAM, visto que esta opção apenas ignora os requisitos e não impede, de fato, que o Windows utilize todo o hardware disponível." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Para esta opção funcionar, a rede/Internet PRECISA ser desconectada durante a instalação!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Responde automaticamente 'não' às perguntas da instalação do Windows relacionadas ao compartilhamento de dados com a Microsoft em vez de solicitar confirmação do usuário." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Você deve deixar esta opção ativada a menos que não se importe com o 'Windows To Go' acessando os discos internos e realizando silenciosamente atualizações irreversíveis no sistema de arquivos." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Cria automaticamente uma conta local com o nome de usuário especificado, usando uma senha em branco que deverá ser alterada no próximo logon." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Duplica as opções regionais deste PC (teclado, fuso horário, moeda), ao invés de pedir confirmação do usuário." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Não encripta o disco do sistema, a menos que explicitamente solicitado pelo usuário." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Use esta opção apenas se você souber o que é o modo S e compreender que seu sistema poderá ficar travado no modo S mesmo depois de apagar completamente e reinstalar o Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Use esta opção se o sistema onde você pretende instalar o Windows está usando certificados atualizados do Secure Boot. Se necessário, você pode considerar usar o 'Mosby' para atualizar seu sistema." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Use esta opção se você quiser revogar carregadores de inicialização do Windows adicionais potencialmente inseguros, mas com o risco de também impedir que mídias padrão do Windows iniciem." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Melhorias \"Quality of Life\": Desativa a maioria dos recursos indesejados que a Microsoft está tentando forçar sobre os usuários." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Se você usar esta opção, por favor certifique-se de desconectar todos os discos do PC de destino, exceto aquele em que deseja instalar o Windows, bem como não deixar a mídia conectada em qualquer PC que você não queira apagar." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/pt-PT.po b/res/loc/po/pt-PT.po index 740fe1b6..e54228cf 100644 --- a/res/loc/po/pt-PT.po +++ b/res/loc/po/pt-PT.po @@ -1,11 +1,11 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-20 22:00+0100\n" -"PO-Revision-Date: 2024-05-20 22:37+0100\n" +"POT-Creation-Date: 2026-03-24 11:49+0000\n" +"PO-Revision-Date: 2026-03-25 13:24+0000\n" "Last-Translator: Hugo Carvalho \n" -"Language-Team: Portuguese \n" +"Language-Team: \n" "Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -13,15 +13,15 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Portuguese Standard (Português)\n" "X-Rufus-LCID: 0x0816\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" -msgstr "Propriedades do dispositivo" +msgstr "Propriedades da unidade" #. • IDD_DIALOG → IDS_DEVICE_TXT msgid "Device" -msgstr "Dispositivo/Disco" +msgstr "Dispositivo" #. • IDD_DIALOG → IDS_BOOT_SELECTION_TXT msgid "Boot selection" @@ -37,7 +37,7 @@ msgstr "Opções da Imagem" #. • IDD_DIALOG → IDS_PARTITION_TYPE_TXT msgid "Partition scheme" -msgstr "Esquema de partição" +msgstr "Esquema de partições" #. • IDD_DIALOG → IDS_TARGET_SYSTEM_TXT msgid "Target system" @@ -149,11 +149,11 @@ msgstr "Guardar" #. • IDD_UPDATE_POLICY → IDD_UPDATE_POLICY msgid "Update policy and settings" -msgstr "Configuração e política das atualizações" +msgstr "Definições e política das atualizações" #. • IDD_UPDATE_POLICY → IDS_UPDATE_SETTINGS_GRP msgid "Settings" -msgstr "Configurações" +msgstr "Definições" #. • IDD_UPDATE_POLICY → IDS_UPDATE_FREQUENCY_TXT msgid "Check for updates" @@ -169,25 +169,25 @@ msgstr "Procurar" #. • IDD_NEW_VERSION → IDD_NEW_VERSION msgid "Check For Updates - Rufus" -msgstr "Procurar atualizações de Rufus" +msgstr "Procurar atualizações - Rufus" #. • IDD_NEW_VERSION → IDS_NEW_VERSION_AVAIL_TXT msgid "A newer version is available. Please download the latest version!" -msgstr "Nova versão disponível. Por favor, descarregue a última versão!" +msgstr "Está disponível uma versão mais recente. Descarregue a última versão!" #. • IDD_NEW_VERSION → IDC_WEBSITE msgid "Click here to go to the website" -msgstr "Clique aqui para aceder ao Site de Rufus" +msgstr "Clicar aqui para aceder à página do Rufus" #. • IDD_NEW_VERSION → IDS_NEW_VERSION_NOTES_GRP msgid "Release Notes" -msgstr "Notas relativas a esta versão" +msgstr "Notas de lançamento" #. • IDD_NEW_VERSION → IDS_NEW_VERSION_DOWNLOAD_GRP #. • IDD_NEW_VERSION → IDC_DOWNLOAD #. • MSG_040 msgid "Download" -msgstr "Transferir" +msgstr "Descarregar" #. • MSG_001 msgid "Other instance detected" @@ -199,7 +199,7 @@ msgid "" "Please close the first application before running another one." msgstr "" "Outra instância da aplicação Rufus está em execução.\n" -"Feche a primeira intância da aplicação antes de iniciar outra." +"Feche a primeira instância da aplicação antes de iniciar outra." #. • MSG_003 msgid "" @@ -211,7 +211,7 @@ msgstr "" #. • MSG_004 msgid "Rufus update policy" -msgstr "Atualização de Rufus" +msgstr "Política de atualização do Rufus" #. • MSG_005 msgid "Do you want to allow Rufus to check for application updates online?" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -385,7 +385,7 @@ msgstr "Erro: %s" #. • MSG_044 msgid "File download" -msgstr "Transferência de ficheiro" +msgstr "Descarga de ficheiro" #. • MSG_045 msgid "USB Storage Device (Generic)" @@ -551,7 +551,7 @@ msgstr "Tipo de imagem não suportada" #. • MSG_082 msgid "This image is either non-bootable, or it uses a boot or compression method that is not supported by Rufus..." -msgstr "Esta imagem não é inicializável ou então usa um método de arranque ou compressão não suportado." +msgstr "Esta imagem não é de arranque ou utiliza um método de arranque ou compressão que não é suportado pelo Rufus..." #. • MSG_083 msgid "Replace %s?" @@ -572,17 +572,17 @@ msgstr "" "Esta imagem ISO usa uma versão obsoleta do ficheiro '%s'.\n" "Isto pode fazer com que o menu de arranque não seja exibido corretamente.\n" "\n" -"O Rufus pode transferir uma versão mais recente para resolver este problema:\n" -"- Selecione 'Sim' para ligar-se à Internet e transferir o ficheiro\n" +"O Rufus pode descarregar uma versão mais recente para resolver este problema:\n" +"- Selecione 'Sim' para ligar-se à Internet e descarregar o ficheiro\n" "- Selecione 'Não' para deixar o ficheiro ISO tal como está\n" "Se não sabe o que fazer, é recomendado selecionar 'Sim'.\n" "\n" -"Nota: O novo ficheiro será transferido para a pasta atual, e se o ficheiro\n" +"Nota: O novo ficheiro será descarregado para a pasta atual, e se o ficheiro\n" " '%s' já existir, será substituído automaticamente." #. • MSG_085 msgid "Downloading %s" -msgstr "A transferir %s" +msgstr "A descarregar %s" #. • MSG_086 msgid "No image selected" @@ -613,7 +613,7 @@ msgstr "ISO não suportado" #. • MSG_091 msgid "When using UEFI Target Type, only EFI bootable ISO images are supported. Please select an EFI bootable ISO or set the Target Type to BIOS." -msgstr "Quando usa UEFI como tipo de destino, só são suportadas imagens ISO inicializáveis tipo EFI. Selecione uma imagem ISO inicializável do tipo EFI ou altere o tipo de destino para BIOS." +msgstr "Ao utilizar o tipo de destino UEFI, apenas são suportadas imagens ISO de arranque por EFI. Selecione uma imagem ISO de arranque por EFI ou defina o tipo de destino para BIOS." #. • MSG_092 msgid "Unsupported filesystem" @@ -625,7 +625,7 @@ msgid "" "\n" "This may include partitions/volumes that aren't listed or even visible from Windows. Should you wish to proceed, you are responsible for any data loss on these partitions." msgstr "" -"IMPORTANTE: ESTA DRIVE CONTÉM VÁRIAS PARTIÇÕES!!\n" +"IMPORTANTE: ESTA UNIDADE CONTÉM VÁRIAS PARTIÇÕES!!\n" "\n" "Isto pode incluir partições/volumes que não estão listados ou invisíveis a partir do Windows. Caso queira prosseguir, é responsável por qualquer perda de dados nessas partições." @@ -639,7 +639,7 @@ msgstr "Imagem DD" #. • MSG_096 msgid "The file system currently selected can not be used with this type of ISO. Please select a different file system or use a different ISO." -msgstr "O sistema de ficheiros selecionado não pode ser usado com este tipo de ISO. Por favor, selecione um sistema de ficheiros diferente ou use um ISO diferente." +msgstr "O sistema de ficheiros selecionado não pode ser usado com este tipo de ISO. Selecione um sistema de ficheiros diferente ou use um ISO diferente." #. • MSG_097 msgid "'%s' can only be applied if the file system is NTFS." @@ -676,12 +676,12 @@ msgid "" "Your platform cannot extract files from WIM archives. WIM extraction is required to create EFI bootable Windows 7 and Windows Vista USB drives. You can fix that by installing a recent version of 7-Zip.\n" "Do you want to visit the 7-zip download page?" msgstr "" -"Não é possível extrair ficheiros comprimidos WIM. A extração WIM é necessária para criar dispositivos USB inicializável tipo EFI com Windows 7 e Windows Vista. Para corrigir, instale uma versão recente do 7-Zip.\n" +"Não é possível extrair ficheiros comprimidos WIM. A extração WIM é necessária para criar dispositivos USB de arranque tipo EFI com Windows 7 e Windows Vista. Para corrigir, instale uma versão recente do 7-Zip.\n" "Quer visitar a página de transferências do 7-Zip?" #. • MSG_103 msgid "Download %s?" -msgstr "Pretende transferir %s?" +msgstr "Descarregar %s?" #. • MSG_104 #. @@ -701,11 +701,11 @@ msgstr "" "Dado que este ficheiro tem mais de 100 KB e está sempre presente nas \n" "imagens ISO %s, Rufus não o inclui na sua distribuição.\n" "\n" -"O Rufus pode transferir o ficheiro em falta:\n" -"- Selecione 'Sim' transferir o ficheiro\n" -"- Selecione 'Não' se deseja mais tarde copiar manualmente este ficheiro para a unidade\n" +"O Rufus pode descarregar o ficheiro em falta:\n" +"- Selecionar 'Sim' para descarregar o ficheiro\n" +"- Selecionar 'Não' se pretende copiar manualmente este ficheiro para a unidade mais tarde\n" "\n" -"Nota: O novo ficheiro será transferido para a pasta atual, e se o ficheiro\n" +"Nota: O novo ficheiro será descarregado para a pasta atual, e se o ficheiro\n" " '%s' já existir, será substituído automaticamente." #. • MSG_105 @@ -769,15 +769,15 @@ msgid "" msgstr "" "Esta imagem usa Syslinux %s%s mas a aplicação inclui apenas os ficheiros de instalação para Syslinux %s%s.\n" "\n" -"Como as diferentes versões de Syslinux podem não ser compatíveis entre si e não é possível o Rufus incluir todas elas, dois ficheiros adicionais devem ser transferidos ('ldlinux.sys' e 'ldlinux.bss'):\n" -"- Selecione 'Sim' para transferir os ficheiros\n" -"- Selecione 'Não' para cancelar\n" +"Como as diferentes versões de Syslinux podem não ser compatíveis entre si e não é possível o Rufus incluir todas elas, dois ficheiros adicionais devem ser descarregados ('ldlinux.sys' e 'ldlinux.bss'):\n" +"- Selecionar 'Sim' para descarregar os ficheiros\n" +"- Selecionar 'Não' para cancelar\n" "\n" -"Nota: Os ficheiros serão transferidos para a pasta atual da aplicação e serão usados automaticamente se presentes." +"Nota: Os ficheiros serão descarregados para a pasta atual da aplicação e serão usados automaticamente se presentes." #. • MSG_115 msgid "Download required" -msgstr "Transferência" +msgstr "Descarregar" #. • MSG_116 #. @@ -796,11 +796,11 @@ msgstr "" "Esta imagem usa Grub %s mas a aplicação inclui apenas os ficheiros de instalação para Grub %s.\n" "\n" "As diferentes versões de Grub podem não ser compatíveis entre si e não é possível incluir todas elas. Rufus irá tentar localizar para a versão de Grub o ficheiro de instalação ('core.img') que coincida com o da imagem:\n" -"- Selecione 'Sim' para tentar transferir\n" -"- Selecione 'Não' para usar a versão padrão do Rufus\n" -"- Selecione 'Cancelar' para abortar a operação\n" +"- Selecionar 'Sim' para tentar descarregar\n" +"- Selecionar 'Não' para usar a versão padrão do Rufus\n" +"- Selecionar 'Cancelar' para abortar a operação\n" "\n" -"Nota: O ficheiro será transferido para a pasta atual da aplicação e será usado automaticamente sempre que presente. Se não for possível encontrar online, a versão padrão será utilizada." +"Nota: O ficheiro será descarregado para a pasta atual da aplicação e será usado automaticamente sempre que presente. Se não for possível encontrar online, a versão padrão será utilizada." #. • MSG_117 msgid "Standard Windows installation" @@ -849,7 +849,7 @@ msgstr "Nenhuma" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Defina o tamanho da partição persistente para a unidade USB. Definir o tamanho como 0 desabilita a partição persistente." @@ -891,17 +891,17 @@ msgstr "Outro programa ou processo está a aceder a esta unidade. Mesmo assim, p #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus detetou que está a tentar criar um disco Windows To Go com base num ISO da versão 1809.\n" +"O Rufus detetou que está a tentar criar um disco Windows To Go com base num ISO da versão 1809.\n" "\n" -"Devido a um *BUG da MICROSOFT*, este disco irá bloquear durante a inicialização do Windows (Ecrã Azul da Morte), a menos que substitua manualmente o ficheiro 'WppRecorder.sys' por um da versão 1803.\n" +"Devido a um *BUG da MICROSOFT*, este disco irá bloquear durante o arranque do Windows (Ecrã Azul da Morte), a menos que substitua manualmente o ficheiro 'WppRecorder.sys' por um da versão 1803.\n" "\n" -"Tenha em atenção também que a razão pela qual o Rufus não pode corrigir automaticamente é que 'WppRecorder.sys' é um ficheiro protegido por direitos de autor da Microsoft, portanto, não podemos incorporar legalmente uma cópia do ficheiro no Rufus..." +"Tenha em atenção também que a razão pela qual o Rufus não consegue corrigir isto automaticamente é que o 'WppRecorder.sys' é um ficheiro protegido por direitos de autor da Microsoft, portanto, não podemos incorporar legalmente uma cópia do ficheiro no Rufus..." #. • MSG_134 msgid "" @@ -943,11 +943,11 @@ msgstr "Voltar" #. • MSG_142 msgid "Please wait..." -msgstr "Por favor, aguarde..." +msgstr "Aguarde..." #. • MSG_143 msgid "Download using a browser" -msgstr "Transferir no browser" +msgstr "Descarregar no navegador" #. • MSG_144 msgid "Download of Windows ISOs is unavailable due to Microsoft having altered their website to prevent it." @@ -959,15 +959,15 @@ msgstr "É necessário o PowerShell 3.0 ou posterior para executar este script." #. • MSG_146 msgid "Do you want to go online and download it?" -msgstr "Pretende ligar e fazer a transferência?" +msgstr "Ir à Internet e fazer a descarga?" #. • MSG_148 msgid "Running download script..." -msgstr "A executar script da transferência..." +msgstr "A executar script da descarga..." #. • MSG_149 msgid "Download ISO Image" -msgstr "Transferir imagem ISO" +msgstr "Descarregar imagem ISO" #. • MSG_150 msgid "Type of computer you plan to use this bootable drive with. It is your responsibility to determine whether your target is of BIOS or UEFI type before you start creating the drive, as it may fail to boot otherwise." @@ -1037,7 +1037,7 @@ msgstr "Método a usar para tornar a unidade inicializável" #. • MSG_165 msgid "Click to select or download an image..." -msgstr "Clique para selecionar ou transferir uma imagem.." +msgstr "Clique para selecionar ou descarregar uma imagem.." #. • MSG_166 msgid "Check this box to allow the display of international labels and set a device icon (creates an autorun.inf)" @@ -1086,7 +1086,7 @@ msgstr "Versão %d.%d (Build %d)" #. • MSG_176 msgid "English translation: Pete Batard " -msgstr "Tradução para Português Europeu: Dinis Medeiros, Fernando Baptista" +msgstr "Tradução para Português Europeu: Dinis Medeiros, Fernando Baptista, Hugo Carvalho" #. • MSG_177 msgid "Report bugs or request enhancements at:" @@ -1162,11 +1162,11 @@ msgstr "Leitura" #. • MSG_193 msgid "Downloaded %s" -msgstr "Transferido %s" +msgstr "Descarregado %s" #. • MSG_194 msgid "Could not download %s" -msgstr "Não é possível transferir %s" +msgstr "Não é possível descarregar %s" #. • MSG_195 #. @@ -1200,7 +1200,7 @@ msgstr "Esta funcionalidade não está disponível nesta plataforma." #. • MSG_201 msgid "Cancelling - Please wait..." -msgstr "A cancelar - por favor aguarde..." +msgstr "A cancelar - aguarde..." #. • MSG_202 msgid "Scanning image..." @@ -1257,7 +1257,7 @@ msgstr "Operação cancelada" #. • MSG_212 msgid "Failed" -msgstr "A operação FALHOU" +msgstr "Falha" #. • MSG_213 #. @@ -1397,17 +1397,17 @@ msgid "" "\n" "The download will be deleted. Please check the log for more details." msgstr "" -"A assinatura da atualização transferida não foi validada. Isto pode significar que o seu sistema está configurado incorretamente para validação de assinaturas ou indicar uma transferência maliciosa.\n" +"Não é possível validar a assinatura da atualização descarregada. Isto pode significar que o seu sistema não está configurado corretamente para a validação de assinaturas ou indicar que se trata de um ficheiro malicioso.\n" "\n" -"O ficheiro transferido será eliminado. Por favor, verifique o registo para mais detalhes." +"O ficheiro descarregado será eliminado. Consulte o registo para obter mais detalhes." #. • MSG_241 msgid "Downloading: %s" -msgstr "A transferir: %s" +msgstr "A descarregar: %s" #. • MSG_242 msgid "Failed to download file." -msgstr "Erro ao transferir o ficheiro." +msgstr "Erro ao descarregar o ficheiro." #. • MSG_243 msgid "Checking for Rufus updates..." @@ -1415,11 +1415,11 @@ msgstr "Procurar atualizações de Rufus..." #. • MSG_244 msgid "Updates: Unable to connect to the internet" -msgstr "Atualizações: Não é possível ligar à Internet" +msgstr "Atualizações: Não foi possível ligar à Internet" #. • MSG_245 msgid "Updates: Unable to access version data" -msgstr "Atualizações: Impossível aceder aos dados da versão" +msgstr "Atualizações: Não foi possível aceder aos dados da versão" #. • MSG_246 msgid "A new version of Rufus is available!" @@ -1597,7 +1597,7 @@ msgstr "Assinatura inválida" #. • MSG_284 msgid "The downloaded executable is missing a digital signature." -msgstr "Está em falta uma assinatura digital no executável transferido." +msgstr "Está em falta uma assinatura digital no executável descarregado." #. • MSG_285 msgid "" @@ -1605,7 +1605,7 @@ msgid "" "This is not a signature we recognize and could indicate some form of malicious activity...\n" "Are you sure you want to run this file?" msgstr "" -"O executável transferido está assinado por '%s'.\n" +"O executável descarregado está assinado por '%s'.\n" "Não é uma assinatura reconhecida e poderá indiciar algum tipo de atividade mal intencionada...\n" "Tem a certeza de que pretende executar este ficheiro?" @@ -1677,7 +1677,7 @@ msgid "" msgstr "" "O ficheiro ISO selecionado não corresponde ao tamanho declarado: faltam %s de dados!\n" "\n" -"Se obteve este ficheiro da Internet, deve tentar transferir uma nova cópia e verificar se os checksums MD5 ou SHA correspondem aos oficiais.\n" +"Se obteve este ficheiro da Internet, deve tentar descarregar uma nova cópia e verificar se os checksums MD5 ou SHA correspondem aos oficiais.\n" "\n" "Para calcular o MD5 ou SHA com Rufus, clique no botão (✓)." @@ -1691,13 +1691,13 @@ msgid "" "\n" "In order to prevent potential attack scenarios, the update process has been aborted and the download will be deleted. Please check the log for more details." msgstr "" -"Não foi possível ao Rufus confirmar que a data e hora da atualização transferida é mais recente que a do executável atual.\n" +"Não foi possível ao Rufus confirmar que a data e hora da atualização descarregada é mais recente que a do executável atual.\n" "\n" -"Para evitar possíveis cenários de ataque informático, o processo de atualização foi cancelado e o ficheiro transferido será apagado. Para mais detalhes, verifique o registo." +"Para evitar possíveis cenários de ataque informático, o processo de atualização foi cancelado e o ficheiro descarregado será apagado. Para mais detalhes, verifique o registo." #. • MSG_301 msgid "Show application settings" -msgstr "Mostrar configurações da aplicação" +msgstr "Mostrar definições da aplicação" #. • MSG_302 msgid "Show information about this application" @@ -1796,6 +1796,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Não foi possível abrir ou ler '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Aplicar o ficheiro SkuSiPolicy.p7b na instalação (ver KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Melhorias na QoL (não forçar o Copilot, o OneDrive, o Outlook, o Arranque Rápido, etc.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "A aplicar personalização do Windows: %s" @@ -1846,17 +1854,17 @@ msgstr "Registo permanente (log)" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Um ficheiro adicional ('diskcopy.dll') deve ser transferido da Microsoft para instalar o MS-DOS:\n" -"- Selecione 'Sim' para se ligar à Internet e descarregá-lo\n" -"- Selecione 'Não' para cancelar a operação\n" +"Um ficheiro adicional ('%s') deve ser descarregado da Microsoft para utilizar esta funcionalidade:\n" +"- Selecionar 'Sim' para se ligar à Internet e descarregá-lo\n" +"- Selecionar 'Não' para cancelar a operação\n" "\n" -"Nota: O ficheiro será transferido para a pasta da aplicação e será reutilizado automaticamente se estiver presente." +"Nota: O ficheiro será descarregado para a pasta da aplicação e será reutilizado automaticamente se estiver presente." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1900,9 +1908,9 @@ msgid "" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation" msgstr "" -"É necessário transferir alguns dados adicionais da Microsoft para usar esta funcionalidade:\n" -"- Selecione 'Sim' para se ligar à Internet e descarregá-los\n" -"- Selecione 'Não' para cancelar a operação" +"É necessário descarregar alguns dados adicionais da Microsoft para usar esta funcionalidade:\n" +"- Selecionar 'Sim' para se ligar à Internet e descarregá-los\n" +"- Selecionar 'Não' para cancelar a operação" #. • MSG_346 msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" @@ -1920,15 +1928,127 @@ msgstr "A extrair ficheiros de arquivo: %s" msgid "Use Rufus MBR" msgstr "Usar o MBR do Rufus" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Utilizar carregadores de arranque assinados pelo 'Windows CA 2023' (requer um PC de destino compatível)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "A verificar se o carregador de arranque UEFI foi revogado..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "A verificar se existem atualizações do UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Atualização do DBX disponível" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"O Rufus encontrou uma versão atualizada dos ficheiros DBX utilizados para realizar verificações de revogação do Arranque Seguro UEFI. Pretende descarregar esta atualização?\n" +"- Selecionar 'Sim' para se ligar à Internet e descarregar este conteúdo\n" +"- Selecionar 'Não' para cancelar a operação\n" +"\n" +"Nota: Os ficheiros serão descarregados para o diretório da aplicação e serão reutilizados automaticamente, caso já existam." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠SILENCIOSAMENTE⚠ apagar o disco e instalar:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Selecionou a opção de instalação \"silenciosa\" do Windows.\n" +"\n" +"Esta é uma opção avançada, reservada a quem pretende criar um suporte que não apresente mensagens ao utilizador durante a instalação do Windows e que, por conseguinte, APAGA INCONDICIONALMENTE o primeiro disco detetado no sistema de destino. Se não tiver cuidado, a utilização desta opção pode resultar em PERDA IRREVERSÍVEL DE DADOS!\n" +"\n" +"Se não é isso que pretende, selecione 'Não' para voltar atrás e desmarcar a opção.\n" +"Caso contrário, se selecionar 'Sim', concorda que toda a responsabilidade por qualquer perda de dados será inteiramente SUA." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Localização da imagem não suportada" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Não pode utilizar uma imagem que se encontre na unidade de destino, uma vez que essa unidade vai ser completamente apagada. É o mesmo que tentar serrar o ramo em que está sentado!\n" +"\n" +"Mova a imagem para um local diferente e tente novamente." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "É seguro manter esta opção ativada, mesmo que tenha um TPM ou mais memória RAM, uma vez que esta opção apenas ignora os requisitos de configuração e não impede, de facto, que o Windows utilize todo o hardware disponível." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Para que esta opção funcione, a ligação à rede/Internet TEM de ser desligada durante a instalação!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Responda automaticamente 'não' às perguntas da instalação do Windows relacionadas com a partilha de dados com a Microsoft, em vez de solicitar a confirmação do utilizador." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Deve manter esta opção ativada, a menos que não se importe que o \"Windows To Go\" aceda aos discos internos e realize atualizações irreversíveis do sistema de ficheiros sem aviso prévio." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Criar automaticamente uma conta local com o nome de utilizador especificado, utilizando uma palavra-passe em branco que terá de ser alterada no próximo início de sessão." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Copiar as definições regionais deste computador (teclado, fuso horário, moeda), em vez de solicitar a confirmação do utilizador." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Não encriptar o disco do sistema, a menos que o utilizador o solicite explicitamente." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Utilizar esta opção apenas se souber o que é o Modo S e compreender que o seu sistema poderá ficar bloqueado no Modo S, mesmo após apagar completamente e reinstalar o Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Utilizar esta opção se o sistema no qual pretende instalar o Windows estiver a utilizar certificados de Arranque Seguro totalmente atualizados. Se necessário, pode considerar a utilização do 'Mosby' para atualizar o seu sistema." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Utilizar esta opção se pretender revogar carregadores de arranque do Windows adicionais que possam ser inseguros, mas tendo em conta que isso poderá também impedir o arranque a partir de suportes de instalação padrão do Windows." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Melhorias na \"Qualidade de Vida\": Desativa a maioria das funcionalidades indesejadas que a Microsoft está a tentar impor aos utilizadores finais." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Se utilizar esta opção, certifique-se de que desliga todos os discos do computador de destino, exceto aquele em que pretende instalar o Windows, e não deixe o suporte ligado a nenhum computador que não pretenda apagar." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application msgid "Rufus is a utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc." -msgstr "Rufus é um utilitário que ajuda a formatar e a criar unidades USB inicializáveis, tais como dispositivos USB/pendrives, cartões de memória, etc." +msgstr "O Rufus é um utilitário que ajuda a formatar e a criar unidades USB inicializáveis, tais como dispositivos USB/pendrives, cartões de memória, etc." #. • MSG_901 msgid "Official site: %s" -msgstr "Site oficial: %s" +msgstr "Página oficial: %s" #. • MSG_902 msgid "Source Code: %s" @@ -1953,13 +2073,13 @@ msgstr "" #. #. Keyword for "boot" will be used for search in the Windows Store msgid "Boot" -msgstr "Inicializável" +msgstr "Arranque" #. • MSG_910 #. #. This and subsequent messages will be listed in the 'Features' section of the Windows Store page msgid "Format USB, flash card and virtual drives to FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" -msgstr "Formatar dispositivos USB, cartão de memória e drives virtuais em FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" +msgstr "Formatar dispositivos USB, cartão de memória e unidades virtuais em FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" #. • MSG_911 msgid "Create FreeDOS bootable USB drives" @@ -2003,8 +2123,8 @@ msgstr "Executar verificações de blocos inválidos, incluindo a deteção de u #. • MSG_921 msgid "Download official Microsoft Windows retail ISOs" -msgstr "Transferir ISOs oficiais do Microsoft Windows Retail" +msgstr "Descarregar ISOs oficiais do Microsoft Windows Retail" #. • MSG_922 msgid "Download UEFI Shell ISOs" -msgstr "Transferir ISOs de UEFI Shell" +msgstr "Descarregar ISOs de UEFI Shell" diff --git a/res/loc/po/ro-RO.po b/res/loc/po/ro-RO.po index d02a28bb..5e8e0046 100644 --- a/res/loc/po/ro-RO.po +++ b/res/loc/po/ro-RO.po @@ -1,11 +1,11 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-25 21:23+0300\n" -"PO-Revision-Date: 2024-04-25 22:00+0300\n" +"POT-Creation-Date: 2026-04-27 17:51+0100\n" +"PO-Revision-Date: 2026-04-27 17:56+0100\n" "Last-Translator: \n" -"Language-Team: \n" +"Language-Team: Andrei Ilas\n" "Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Romanian (Română)\n" "X-Rufus-LCID: 0x0418, 0x0818\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -846,7 +846,7 @@ msgstr "Fără persistență" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Setați dimensiunea partiției persistente pentru dispozitivul USB live. Setarea mărimii la 0 va dezactiva partiția persistentă." @@ -888,13 +888,13 @@ msgstr "Un alt program sau proces utilizează această unitate. Doriți să o fo #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus a observat că încercați să creați un media Windows To Go bazat pe un ISO cu versiunea 1809.\n" +"Rufus a observat că încercați să creați un media 'Windows To Go' bazat pe un ISO cu versiunea 1809.\n" "\n" "Din cauza unui *BUG MICROSOFT*, acest media va eșua în timpul pornirii Windows (Blue Screen Of Death), cu excepția cazului în care înlocuiți manual fișierul 'WppRecorder.sys' cu o versiune 1803.\n" "\n" @@ -1793,7 +1793,15 @@ msgstr "" #. • MSG_322 msgid "Unable to open or read '%s'" -msgstr "Nu se poate deschide sau citii '%s'" +msgstr "Nu se poate deschide sau citi '%s'" + +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Aplică SkuSiPolicy.p7b la instalare (Vezi KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Îmbunătățiri QoL (Fără Copilot, OneDrive, Outlook, pornire rapidă forțată, etc.)" #. • MSG_325 msgid "Applying Windows customization: %s" @@ -1801,7 +1809,7 @@ msgstr "Aplicând modificări la Windows: %s" #. • MSG_326 msgid "Applying user options..." -msgstr "Aplicând optiuni de utilizator..." +msgstr "Aplicând opțiuni de utilizator..." #. • MSG_327 msgid "Windows User Experience" @@ -1813,7 +1821,7 @@ msgstr "Doriți să modificați instalația de Windows?" #. • MSG_329 msgid "Remove requirement for 4GB+ RAM, Secure Boot and TPM 2.0" -msgstr "Elimină necesitatea de 4GB+ RAM, Bootare Securizată si TPM 2.0" +msgstr "Elimină necesitatea de 4GB+ RAM, Bootare Securizată și TPM 2.0" #. • MSG_330 msgid "Remove requirement for an online Microsoft account" @@ -1821,7 +1829,7 @@ msgstr "Elimină necesitatea pentru un cont Microsoft" #. • MSG_331 msgid "Disable data collection (Skip privacy questions)" -msgstr "Blochează colectarea de date (Sari peste întrebările de intimitate)" +msgstr "Dezactivează colectarea de date (Sari peste întrebările de confidențialitate)" #. • MSG_332 msgid "Prevent Windows To Go from accessing internal disks" @@ -1829,11 +1837,11 @@ msgstr "Blochează Windows To Go de la accesarea discurilor interne" #. • MSG_333 msgid "Create a local account with username:" -msgstr "Crează un cont local cu nume de utilizator:" +msgstr "Creează un cont local cu nume de utilizator:" #. • MSG_334 msgid "Set regional options to the same values as this user's" -msgstr "Serează opțiunile regionale să aibă aceleași valori ca acestui utilizator" +msgstr "Setează opțiunile regionale să aibă aceleași valori ca ale acestui utilizator" #. • MSG_335 msgid "Disable BitLocker automatic device encryption" @@ -1845,17 +1853,17 @@ msgstr "Logare persistentă" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Un fișier adițional ('diskcopy.dll') trebuie să fie descărcat de la Microsoft pentru a instala MS-DOS:\n" -"- Selectează 'Da' ca să te conectezi la Internet și să le descarci\n" -"- Selectează 'Nu' pentru a anula operațiunea\n" +"Un fișier suplimentar ('%s') trebuie descărcat de la Microsoft pentru a utiliza această funcție:\n" +"- Selectați 'Da' pentru a vă conecta la Internet și a-l descărca\n" +"- Selectați 'Nu' pentru a anula operațiunea\n" "\n" -"Notiță: Acest fișier va fi descărcat in aceeași locație cu aplicația și va fi reutilizat automat dacă este prezent." +"Notă: Fișierul va fi descărcat în directorul aplicației și va fi reutilizat automat dacă este prezent." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1868,10 +1876,10 @@ msgid "" "- If you obtained this ISO image from a non reputable source, you should consider the possibility that it might contain UEFI malware and avoid booting from it.\n" "- If you obtained it from a trusted source, you should try to locate a more up to date version, that will not produce this warning." msgstr "" -"Rufus a detectat că fișierul ISO care lai selectat conține un bootloader UEFI care nu este permis si ar produce %s, cand Secure Boot este activat pe un system UEFI actualizat.\n" +"Rufus a detectat că fișierul ISO selectat conține un bootloader UEFI care a fost revocat și care va produce %s, când Secure Boot este activat pe un sistem UEFI complet actualizat.\n" "\n" -"- Dacă ai făcut rost de aceasta imagine ISO de la o sursă de neîncredere, este recomandat să consideri posibilitatea că ar putea conține malware UEFI ce nu ar permite pornirea de la aceasta.\n" -"- Dacă ai făcut rost de aceasta de la o sursă de încredere, ar putea fi necesară căutarea unei versiuni mai noi, care nu ar produce acest avertisment." +"- Dacă ați obținut această imagine ISO dintr-o sursă nesigură, luați în considerare posibilitatea că ar putea conține malware UEFI și evitați pornirea de pe aceasta.\n" +"- Dacă ați obținut-o dintr-o sursă de încredere, încercați să găsiți o versiune mai recentă, care să nu producă acest avertisment." #. • MSG_340 msgid "a \"Security Violation\" screen" @@ -1899,9 +1907,9 @@ msgid "" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation" msgstr "" -"Niște date adiționale trebuie descărcate de la Microsoft pentru a folosii această funție:\n" -"- Selectează 'Da' ca să te conectezi la Internet și să le descarci\n" -"- Selectează 'Nu' pentru a anula operațiunea" +"Unele date suplimentare trebuie descărcate de la Microsoft pentru a folosi această funcție:\n" +"- Selectați 'Da' pentru a vă conecta la Internet și a le descărca\n" +"- Selectați 'Nu' pentru a anula operațiunea" #. • MSG_346 msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" @@ -1919,6 +1927,118 @@ msgstr "Extractând fișiere arhivate: %s" msgid "Use Rufus MBR" msgstr "Folosește Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Folosește bootloadere semnate cu 'Windows CA 2023' (necesită un PC compatibil)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Se verifică revocarea bootloaderului UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Se verifică actualizările DBX UEFI..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Actualizare DBX disponibilă" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus a găsit o versiune actualizată a fișierelor DBX folosite pentru verificările de revocare Secure Boot UEFI. Doriți să descărcați această actualizare?\n" +"- Selectați „Da” pentru a vă conecta la internet și a descărca acest conținut\n" +"- Selectați „Nu” pentru a anula operațiunea\n" +"\n" +"Notă: Fișierele vor fi descărcate în directorul aplicației și vor fi reutilizate automat, dacă există." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠ȘTERGE SILENȚIOS⚠ discul și instalează:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes', you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Ați selectat opțiunea de instalare Windows \"silențioasă\".\n" +"\n" +"Aceasta este o opțiune avansată, rezervată persoanelor care doresc să creeze suporturi media care nu solicită utilizatorilor informații în timpul instalării Windows și, prin urmare, ȘTERGE NECONDIȚIONAT primul disc detectat pe sistemul țintă. Dacă nu sunteți atenți, utilizarea acestei opțiuni poate duce la PIERDERI IREVERSIBILE DE DATE!\n" +"\n" +"Dacă acest lucru nu este ceea ce doriți, selectați „Nu” pentru a reveni și a debifa opțiunea.\n" +"În caz contrar, dacă selectați „Da”, sunteți de acord că întreaga responsabilitate pentru orice pierdere de date vă va aparține în întregime." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Locație imagine neacceptată" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Nu puteți folosi o imagine aflată pe unitatea țintă, deoarece acea unitate va fi complet ștearsă. Este același lucru cu încercarea de a tăia creanga pe care stai!\n" +"\n" +"Mută imaginea într-o altă locație și încearcă din nou." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Este sigur să lăsați această opțiune activată chiar dacă aveți un TPM sau mai multă memorie RAM, deoarece aceasta ocolește doar cerințele de configurare și nu împiedică Windows să utilizeze tot hardware-ul disponibil." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Pentru ca această opțiune să funcționeze, rețeaua/Internetul TREBUIE să fie deconectat în timpul instalării!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Răspunde automat cu 'Nu' la întrebările de instalare Windows legate de partajarea datelor cu Microsoft, în loc să întrebe utilizatorul." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Lăsați această opțiune activată dacă nu doriți ca 'Windows To Go' să acceseze discurile interne și să efectueze actualizări ireversibile ale sistemului de fișiere fără avertizare." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Creează automat un cont local cu numele de utilizator specificat, folosind o parolă goală care va trebui schimbată la prima autentificare." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Preia setările regionale de pe acest PC (tastatură, fus orar, monedă), în loc să întrebe utilizatorul." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Nu cripta discul de sistem, cu excepția cazului în care utilizatorul solicită explicit acest lucru." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Folosiți această opțiune doar dacă știți ce este S-Mode și acceptați că sistemul poate rămâne blocat în S-Mode chiar și după reinstalarea completă a Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Folosiți această opțiune dacă sistemul pe care intenționați să instalați Windows utilizează certificate Secure Boot complet actualizate. Dacă este necesar, puteți folosi 'Mosby' pentru a actualiza sistemul." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Folosiți această opțiune pentru a revoca bootloadere Windows potențial nesigure suplimentare, cu riscul de a împiedica și pornirea suporturilor Windows standard." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Îmbunătățiri \"Quality of Life\": Dezactivează majoritatea funcțiilor nedorite pe care Microsoft încearcă să le impună utilizatorilor finali." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Dacă folosiți această opțiune, asigurați-vă că deconectați toate discurile de la computerul țintă, cu excepția celui pe care doriți să instalați Windows, și nu lăsați suportul conectat la niciun computer pe care nu doriți să îl ștergeți." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application @@ -1927,11 +2047,11 @@ msgstr "Rufus este un utilitar care ajută la formatarea și crearea de drive-ur #. • MSG_901 msgid "Official site: %s" -msgstr "Site official: %s" +msgstr "Site oficial: %s" #. • MSG_902 msgid "Source Code: %s" -msgstr "Codul Sursei: %s" +msgstr "Cod sursă: %s" #. • MSG_903 msgid "ChangeLog: %s" @@ -1945,14 +2065,14 @@ msgid "" "This application is licensed under the terms of the GNU Public License (GPL) version 3.\n" "See https://www.gnu.org/licenses/gpl-3.0.en.html for details." msgstr "" -"Această aplicație este sub liciența și termenii și condițiile ale lui GNU Public License (GPL) versiunea a 3-a.\n" -"Vazi https://www.gnu.org/licenses/gpl-3.0.en.html pentru detalii." +"Această aplicație este licențiată conform termenilor GNU Public License (GPL) versiunea 3.\n" +"Vezi https://www.gnu.org/licenses/gpl-3.0.en.html pentru detalii." #. • MSG_905 #. #. Keyword for "boot" will be used for search in the Windows Store msgid "Boot" -msgstr "Bootează" +msgstr "" #. • MSG_910 #. diff --git a/res/loc/po/ru-RU.po b/res/loc/po/ru-RU.po index d3a3e80c..c7f41270 100644 --- a/res/loc/po/ru-RU.po +++ b/res/loc/po/ru-RU.po @@ -1,11 +1,11 @@ msgid "" msgstr "" -"Project-Id-Version: 3.22\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2023-10-19 09:51+0300\n" -"PO-Revision-Date: 2024-04-26 02:06+0300\n" -"Last-Translator: Dmitry Yerokhin \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2026-03-23 18:41+0000\n" +"PO-Revision-Date: 2026-03-23 18:41+0000\n" +"Last-Translator: \n" +"Language-Team: \n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Russian (Русский)\n" "X-Rufus-LCID: 0x0419, 0x0819\n" -"X-Generator: Poedit 1.5.7\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -56,9 +56,7 @@ msgstr "Добавить исправления для старых BIOS" #. • IDD_DIALOG → IDC_UEFI_MEDIA_VALIDATION #. -#. 'MBR': See http://en.wikipedia.org/wiki/Master_boot_record -#. Rufus can install it's own custom MBR (the Rufus MBR), which also allows users to -#. specify a custom disk ID for the BIOS. The tooltip for this control is MSG_167. +#. It is acceptable to drop the "runtime" if you are running out of space msgid "Enable runtime UEFI media validation" msgstr "Проверка носителя UEFI во время выполнения" @@ -310,7 +308,7 @@ msgstr "ТБ" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "ПБ" @@ -421,8 +419,7 @@ msgstr "Неизвестная ошибка при форматировании. #. • MSG_052 msgid "Cannot use the selected file system for this media." -msgstr "" -"Для этого устройства невозможно использовать выбранную файловую систему." +msgstr "Для этого устройства невозможно использовать выбранную файловую систему." #. • MSG_053 msgid "Access to the device is denied." @@ -433,11 +430,8 @@ msgid "Media is write protected." msgstr "Носитель данных защищён от записи." #. • MSG_055 -msgid "" -"The device is in use by another process. Please close any other process that " -"may be accessing the device." -msgstr "" -"Это устройство используется другим процессом. Сначала завершите процесс." +msgid "The device is in use by another process. Please close any other process that may be accessing the device." +msgstr "Это устройство используется другим процессом. Сначала завершите процесс." #. • MSG_056 msgid "Quick format is not available for this device." @@ -484,12 +478,8 @@ msgid "Installation failure" msgstr "Ошибка установки" #. • MSG_067 -msgid "" -"Could not open media. It may be in use by another process. Please re-plug " -"the media and try again." -msgstr "" -"Невозможно открыть носитель информации. Возможно, он используется другим " -"процессом. Извлеките носитель информации и вставьте его вновь." +msgid "Could not open media. It may be in use by another process. Please re-plug the media and try again." +msgstr "Невозможно открыть носитель информации. Возможно, он используется другим процессом. Извлеките носитель информации и вставьте его вновь." #. • MSG_068 msgid "Could not partition drive." @@ -543,35 +533,25 @@ msgstr "Устройство не готово." #. • MSG_080 msgid "" -"Rufus detected that Windows is still flushing its internal buffers onto the " -"USB device.\n" +"Rufus detected that Windows is still flushing its internal buffers onto the USB device.\n" "\n" -"Depending on the speed of your USB device, this operation may take a long " -"time to complete, especially for large files.\n" +"Depending on the speed of your USB device, this operation may take a long time to complete, especially for large files.\n" "\n" -"We recommend that you let Windows finish, to avoid corruption. But if you " -"grow tired of waiting, you can just unplug the device..." +"We recommend that you let Windows finish, to avoid corruption. But if you grow tired of waiting, you can just unplug the device..." msgstr "" -"Rufus обнаружил, что Windows всё ещё очищает внутренний буфер USB-" -"устройства.\n" +"Rufus обнаружил, что Windows всё ещё очищает внутренний буфер USB-устройства.\n" "\n" -"В зависимости от скорости USB-устройства, эта операция может занять много " -"времени, особенно для больших файлов.\n" +"В зависимости от скорости USB-устройства, эта операция может занять много времени, особенно для больших файлов.\n" "\n" -"Чтобы избежать повреждения устройства, дождитесь, пока Windows закончит. Но " -"если вам надоест ждать, можете просто отключить устройство..." +"Чтобы избежать повреждения устройства, дождитесь, пока Windows закончит. Но если Вам надоест ждать, можете просто отключить устройство..." #. • MSG_081 msgid "Unsupported image" msgstr "Неподдерживаемый образ" #. • MSG_082 -msgid "" -"This image is either non-bootable, or it uses a boot or compression method " -"that is not supported by Rufus..." -msgstr "" -"Образ либо незагрузочный, либо использует метод загрузки или сжатия, не " -"поддерживаемый Rufus." +msgid "This image is either non-bootable, or it uses a boot or compression method that is not supported by Rufus..." +msgstr "Образ либо незагрузочный, либо использует метод загрузки или сжатия, не поддерживаемый Rufus." #. • MSG_083 msgid "Replace %s?" @@ -587,8 +567,7 @@ msgid "" "- Choose 'No' to leave the existing ISO file unmodified\n" "If you don't know what to do, you should select 'Yes'.\n" "\n" -"Note: The new file will be downloaded in the current directory and once a " -"'%s' exists there, it will be reused automatically." +"Note: The new file will be downloaded in the current directory and once a '%s' exists there, it will be reused automatically." msgstr "" "Образ ISO использует устаревшую версию '%s'.\n" "Загрузочные меню могут отображаться неправильно.\n" @@ -598,8 +577,7 @@ msgstr "" "- Выберите 'Нет', чтобы не изменять образ ISO\n" "Если вы не знаете, что делать, то выберите 'Да'.\n" "\n" -"Файл загрузится в текущую папку, а если в ней есть '%s', то он будет " -"автоматически заменён." +"Файл загрузится в текущую папку, а если в ней есть '%s', то он будет автоматически заменён." #. • MSG_085 msgid "Downloading %s" @@ -633,12 +611,8 @@ msgid "Unsupported ISO" msgstr "Неподдерживаемый образ ISO" #. • MSG_091 -msgid "" -"When using UEFI Target Type, only EFI bootable ISO images are supported. " -"Please select an EFI bootable ISO or set the Target Type to BIOS." -msgstr "" -"При использовании целевого типа UEFI поддерживаются только загрузочные " -"образы ISO. Выберите загрузочный образ EFI или измените целевой тип BIOS." +msgid "When using UEFI Target Type, only EFI bootable ISO images are supported. Please select an EFI bootable ISO or set the Target Type to BIOS." +msgstr "При использовании целевого типа UEFI поддерживаются только загрузочные образы ISO. Выберите загрузочный образ EFI или измените целевой тип BIOS." #. • MSG_092 msgid "Unsupported filesystem" @@ -648,15 +622,11 @@ msgstr "Неподдерживаемая файловая система" msgid "" "IMPORTANT: THIS DRIVE CONTAINS MULTIPLE PARTITIONS!!\n" "\n" -"This may include partitions/volumes that aren't listed or even visible from " -"Windows. Should you wish to proceed, you are responsible for any data loss " -"on these partitions." +"This may include partitions/volumes that aren't listed or even visible from Windows. Should you wish to proceed, you are responsible for any data loss on these partitions." msgstr "" "ВАЖНО: НА ЭТОМ ДИСКЕ НЕСКОЛЬКО РАЗДЕЛОВ!!\n" "\n" -"Этот диск может содержать разделы/тома, которые отсутствуют в списке или " -"даже не видны в Windows. В случае продолжения вы несёте ответственность за " -"любую потерю данных на этих разделах." +"Этот диск может содержать разделы/тома, которые отсутствуют в списке или даже не видны в Windows. В случае продолжения Вы несёте ответственность за любую потерю данных на этих разделах." #. • MSG_094 msgid "Multiple partitions detected" @@ -667,12 +637,8 @@ msgid "DD Image" msgstr "DD-образ" #. • MSG_096 -msgid "" -"The file system currently selected can not be used with this type of ISO. " -"Please select a different file system or use a different ISO." -msgstr "" -"Выбранная файловая система не может использоваться с этим типом образа ISO. " -"Выберите другую файловую систему или другой образ ISO." +msgid "The file system currently selected can not be used with this type of ISO. Please select a different file system or use a different ISO." +msgstr "Выбранная файловая система не может использоваться с этим типом образа ISO. Выберите другую файловую систему или другой образ ISO." #. • MSG_097 msgid "'%s' can only be applied if the file system is NTFS." @@ -680,39 +646,25 @@ msgstr "'%s' может использоваться только с файло #. • MSG_098 msgid "" -"IMPORTANT: You are trying to install 'Windows To Go', but your target drive " -"doesn't have the 'FIXED' attribute. Because of this Windows will most likely " -"freeze during boot, as Microsoft hasn't designed it to work with drives that " -"instead have the 'REMOVABLE' attribute.\n" +"IMPORTANT: You are trying to install 'Windows To Go', but your target drive doesn't have the 'FIXED' attribute. Because of this Windows will most likely freeze during boot, as Microsoft hasn't designed it to work with drives that instead have the 'REMOVABLE' attribute.\n" "\n" "Do you still want to proceed?\n" "\n" -"Note: The 'FIXED/REMOVABLE' attribute is a hardware property that can only " -"be changed using custom tools from the drive manufacturer. However those " -"tools are ALMOST NEVER provided to the public..." +"Note: The 'FIXED/REMOVABLE' attribute is a hardware property that can only be changed using custom tools from the drive manufacturer. However those tools are ALMOST NEVER provided to the public..." msgstr "" -"ВАЖНО: Вы пытаетесь установить Windows To Go, но у целевого диска нет " -"атрибута 'FIXED' (несъёмный). Из-за этого Windows, скорее всего, зависнет " -"при загрузке, так как Windows To Go предназначена для работы только с " -"дисками с атрибутом 'REMOVABLE' (съёмный).\n" +"ВАЖНО: Вы пытаетесь установить Windows To Go, но у целевого диска нет атрибута 'FIXED' (несъёмный). Из-за этого Windows, скорее всего, зависнет при загрузке, так как Windows To Go предназначена для работы только с дисками с атрибутом 'REMOVABLE' (съёмный).\n" "\n" "Всё равно хотите продолжить?\n" "\n" -"* Атрибут 'FIXED/REMOVABLE' - это свойство оборудования. Его можно изменить " -"только с помощью специальных инструментов от производителя, которые ПОЧТИ " -"НИКОГДА не предоставляются общественности..." +"* Атрибут 'FIXED/REMOVABLE' - это свойство оборудования. Его можно изменить только с помощью специальных инструментов от производителя, которые ПОЧТИ НИКОГДА не предоставляются общественности..." #. • MSG_099 msgid "Filesystem limitation" msgstr "Ограничения файловой системы" #. • MSG_100 -msgid "" -"This ISO image contains a file larger than 4 GB, which is more than the " -"maximum size allowed for a FAT or FAT32 file system." -msgstr "" -"Этот образ ISO содержит файл размером более 4 ГБ, что превосходит " -"максимальный размер для файловой системы FAT или FAT32." +msgid "This ISO image contains a file larger than 4 GB, which is more than the maximum size allowed for a FAT or FAT32 file system." +msgstr "Этот образ ISO содержит файл размером более 4 ГБ, что превосходит максимальный размер для файловой системы FAT или FAT32." #. • MSG_101 msgid "Missing WIM support" @@ -720,15 +672,10 @@ msgstr "Отсутствует поддержка WIM" #. • MSG_102 msgid "" -"Your platform cannot extract files from WIM archives. WIM extraction is " -"required to create EFI bootable Windows 7 and Windows Vista USB drives. You " -"can fix that by installing a recent version of 7-Zip.\n" +"Your platform cannot extract files from WIM archives. WIM extraction is required to create EFI bootable Windows 7 and Windows Vista USB drives. You can fix that by installing a recent version of 7-Zip.\n" "Do you want to visit the 7-zip download page?" msgstr "" -"Ваша система не может извлекать файлы из архивов WIM. Распаковка таких " -"архивов необходима для создания загрузочных USB-накопителей EFI для Windows " -"7 и Windows Vista. Чтобы решить эту проблему, установите новейшую версию 7-" -"Zip.\n" +"Ваша система не может извлекать файлы из архивов WIM. Распаковка таких архивов необходима для создания загрузочных USB-накопителей EFI для Windows 7 и Windows Vista. Чтобы решить эту проблему, установите новейшую версию 7-Zip.\n" "Открыть страницу загрузки 7-Zip?" #. • MSG_103 @@ -741,26 +688,22 @@ msgstr "Загрузить %s?" #. file is more than 100 KB in size, and always present on Grub4DOS ISO images (...)" msgid "" "%s or later requires a '%s' file to be installed.\n" -"Because this file is more than 100 KB in size, and always present on %s ISO " -"images, it is not embedded in Rufus.\n" +"Because this file is more than 100 KB in size, and always present on %s ISO images, it is not embedded in Rufus.\n" "\n" "Rufus can download the missing file for you:\n" "- Select 'Yes' to connect to the internet and download the file\n" "- Select 'No' if you want to manually copy this file on the drive later\n" "\n" -"Note: The file will be downloaded in the current directory and once a '%s' " -"exists there, it will be reused automatically." +"Note: The file will be downloaded in the current directory and once a '%s' exists there, it will be reused automatically." msgstr "" "%s или новее требует наличия файла '%s'.\n" -"Поскольку размер этого файла больше 100 КБ, и он всегда присутствует в ISO-" -"образах %s, он не встроен в Rufus.\n" +"Поскольку размер этого файла больше 100 КБ, и он всегда присутствует в ISO-образах %s, он не встроен в Rufus.\n" "\n" "Rufus может скачать недостающий файл:\n" "- Выберите 'Да', если хотите скачать этот файл\n" "- Выберите 'Нет', если хотите скачать его вручную позже\n" "\n" -"* Файл будет скачан в текущую папку. Если в ней есть '%s', он будет " -"автоматически перезаписан." +"* Файл будет скачан в текущую папку. Если в ней есть '%s', он будет автоматически перезаписан." #. • MSG_105 msgid "" @@ -768,8 +711,7 @@ msgid "" "If you are sure you want to cancel, click YES. Otherwise, click NO." msgstr "" "При отмене устройство может оказаться в НЕРАБОЧЕМ состоянии.\n" -"Если вы уверены, что хотите отменить операцию, нажмите 'Да'. Иначе - нажмите " -"'Нет'." +"Если Вы уверены, что хотите отменить операцию, нажмите 'Да'. Иначе - нажмите 'Нет'." #. • MSG_106 msgid "Please select folder" @@ -805,15 +747,8 @@ msgstr "Несовместимый размер кластеров" #. • MSG_112 #. #. "%d:%02d" is a duration (mins:secs) -msgid "" -"Formatting a large UDF volumes can take a lot of time. At USB 2.0 speeds, " -"the estimated formatting duration is %d:%02d, during which the progress bar " -"will appear frozen. Please be patient!" -msgstr "" -"Форматирование больших томов UDF может занять много времени. При скоростях " -"USB 2.0 форматирование продлится примерно %d:%02d, в течение этого времени " -"индикатор хода операции будет казаться неработающим. Проявите терпение, " -"пожалуйста!" +msgid "Formatting a large UDF volumes can take a lot of time. At USB 2.0 speeds, the estimated formatting duration is %d:%02d, during which the progress bar will appear frozen. Please be patient!" +msgstr "Форматирование больших томов UDF может занять много времени. При скоростях USB 2.0 форматирование продлится примерно %d:%02d, в течение этого времени индикатор хода операции будет казаться неработающим. Проявите терпение, пожалуйста!" #. • MSG_113 msgid "Large UDF volume" @@ -821,28 +756,21 @@ msgstr "Большой UDF-том" #. • MSG_114 msgid "" -"This image uses Syslinux %s%s but this application only includes the " -"installation files for Syslinux %s%s.\n" +"This image uses Syslinux %s%s but this application only includes the installation files for Syslinux %s%s.\n" "\n" -"As new versions of Syslinux are not compatible with one another, and it " -"wouldn't be possible for Rufus to include them all, two additional files " -"must be downloaded from the Internet ('ldlinux.sys' and 'ldlinux.bss'):\n" +"As new versions of Syslinux are not compatible with one another, and it wouldn't be possible for Rufus to include them all, two additional files must be downloaded from the Internet ('ldlinux.sys' and 'ldlinux.bss'):\n" "- Select 'Yes' to connect to the Internet and download these files\n" "- Select 'No' to cancel the operation\n" "\n" -"Note: The files will be downloaded in the current application directory and " -"will be reused automatically if present." +"Note: The files will be downloaded in the current application directory and will be reused automatically if present." msgstr "" -"Этот образ использует Syslinux %s%s, но в данном приложении есть только " -"установочные файлы для Syslinux %s%s.\n" +"Этот образ использует Syslinux %s%s, но в данном приложении есть только установочные файлы для Syslinux %s%s.\n" "\n" -"Так как версии Syslinux несовместимы друг с другом, дополнительные файлы " -"(ldlinux.sys and ldlinux.bss) нужно загрузить из Интернета:\n" +"Так как версии Syslinux несовместимы друг с другом, дополнительные файлы (ldlinux.sys and ldlinux.bss) нужно загрузить из Интернета:\n" "- Выберите 'Да', чтобы скачать файлы из Интернета\n" "- Выберите 'Нет', чтобы отменить операцию\n" "\n" -"* Файлы загрузятся в текущую папку приложения, имеющиеся там одноимённые " -"файлы будут перезаписаны." +"* Файлы загрузятся в текущую папку приложения, имеющиеся там одноимённые файлы будут перезаписаны." #. • MSG_115 msgid "Download required" @@ -853,35 +781,23 @@ msgstr "Требуется загрузка из Интернета" #. You should be able to test this message with Super Grub2 Disk ISO: #. https://sourceforge.net/projects/supergrub2/files/2.00s2/super_grub2_disk_hybrid_2.00s2.iso/download (11.9 MB) msgid "" -"This image uses Grub %s but the application only includes the installation " -"files for Grub %s.\n" +"This image uses Grub %s but the application only includes the installation files for Grub %s.\n" "\n" -"As different versions of Grub may not be compatible with one another, and it " -"is not possible to include them all, Rufus will attempt to locate a version " -"of the Grub installation file ('core.img') that matches the one from your " -"image:\n" +"As different versions of Grub may not be compatible with one another, and it is not possible to include them all, Rufus will attempt to locate a version of the Grub installation file ('core.img') that matches the one from your image:\n" "- Select 'Yes' to connect to the Internet and attempt to download it\n" "- Select 'No' to use the default version from Rufus\n" "- Select 'Cancel' to abort the operation\n" "\n" -"Note: The file will be downloaded in the current application directory and " -"will be reused automatically if present. If no match can be found online, " -"then the default version will be used." +"Note: The file will be downloaded in the current application directory and will be reused automatically if present. If no match can be found online, then the default version will be used." msgstr "" -"Этот образ использует загрузчик GRUB %s, но приложение включает только " -"установочные файлы для GRUB %s.\n" +"Этот образ использует загрузчик GRUB %s, но приложение включает только установочные файлы для GRUB %s.\n" "\n" -"Различные версии GRUB могут быть несовместимы друг с другом. Rufus " -"попытается найти нужную версию установочного файла GRUB (core.img), " -"соответствующую версии загрузчика вашего образа:\n" +"Различные версии GRUB могут быть несовместимы друг с другом. Rufus попытается найти нужную версию установочного файла GRUB (core.img), соответствующую версии загрузчика вашего образа:\n" "- Выберите 'Да', чтобы скачать установочный файл из Интернета\n" "- Выберите 'Нет', чтобы использовать версию по умолчанию из Rufus\n" "- Выберите 'Отмена', чтобы отменить операцию\n" "\n" -"* Файл загрузится в текущую папку приложения, если в ней уже есть " -"одноимённый файл, он будет автоматически перезаписан. Если нужную версию " -"установщика не удастся найти в Интернете, будет использоваться версия по " -"умолчанию." +"* Файл загрузится в текущую папку приложения, если в ней уже есть одноимённый файл, он будет автоматически перезаписан. Если нужную версию установщика не удастся найти в Интернете, будет использоваться версия по умолчанию." #. • MSG_117 msgid "Standard Windows installation" @@ -893,7 +809,7 @@ msgstr "Стандартная установка Windows" #. http://en.wikipedia.org/wiki/Windows_To_Go in your language. #. Otherwise, you may add a parenthesis eg. "Windows To Go ()" msgid "Windows To Go" -msgstr "Windows To Go" +msgstr "" #. • MSG_119 msgid "advanced drive properties" @@ -930,13 +846,9 @@ msgstr "Без раздела" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control -msgid "" -"Set the size of the persistent partition for live USB media. Setting the " -"size to 0 disables the persistent partition." -msgstr "" -"Установите размер постоянного раздела для live-носителя USB. 0 - отключить " -"постоянный раздел." +#. Tooltips used for the persistence size slider and edit control +msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." +msgstr "Установите размер постоянного раздела для live-носителя USB. 0 - отключить постоянный раздел." #. • MSG_126 msgid "Set the partition size units." @@ -952,13 +864,10 @@ msgstr "Важное примечание о %s" #. • MSG_129 msgid "" -"You have just created a media that uses the UEFI:NTFS bootloader. Please " -"remember that, to boot this media, YOU MUST DISABLE SECURE BOOT.\n" -"For details on why this is necessary, see the 'More Information' button " -"below." +"You have just created a media that uses the UEFI:NTFS bootloader. Please remember that, to boot this media, YOU MUST DISABLE SECURE BOOT.\n" +"For details on why this is necessary, see the 'More Information' button below." msgstr "" -"Вы только что создали носитель с загрузчиком UEFI:NTFS. Учтите, что для " -"загрузки этого носителя НУЖНО ОТКЛЮЧИТЬ БЕЗОПАСНУЮ ЗАГРУЗКУ.\n" +"Вы только что создали носитель с загрузчиком UEFI:NTFS. Учтите, что для загрузки этого носителя НУЖНО ОТКЛЮЧИТЬ БЕЗОПАСНУЮ ЗАГРУЗКУ.\n" "Чтобы узнать, почему это необходимо, нажмите кнопку 'Ещё'." #. • MSG_130 @@ -971,51 +880,33 @@ msgid "" "Please select the image you wish to use for this installation:" msgstr "" "Этот файл ISO содержит несколько образов Windows.\n" -"Выберите образ, который вы хотите использовать для этой установки:" +"Выберите образ, который Вы хотите использовать для этой установки:" #. • MSG_132 -msgid "" -"Another program or process is accessing this drive. Do you want to format it " -"anyway?" -msgstr "" -"К этому диску обращается другая программа или процесс. Всё равно настаиваете " -"на форматировании?" +msgid "Another program or process is accessing this drive. Do you want to format it anyway?" +msgstr "К этому диску обращается другая программа или процесс. Всё равно настаиваете на форматировании?" #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media " -"based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" -"Because of a *MICROSOFT BUG*, this media will crash during Windows boot " -"(Blue Screen Of Death), unless you manually replace the file 'WppRecorder." -"sys' with a 1803 version.\n" +"Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" -"Also note that the reason Rufus cannot automatically fix this for you is " -"that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally " -"embed a copy of the file in the application..." +"Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus обнаружил, что вы пытаетесь создать носитель Windows To Go на основе " -"ISO 1809.\n" +"Вы пытаетесь создать носитель Windows To Go на основе ISO 1809.\n" "\n" -"Из-за *ОШИБКИ MICROSOFT* этот носитель будет давать сбой при загрузке " -"Windows (BSOD), если вы вручную не замените файл WppRecorder.sys версией " -"1803.\n" +"Из-за *ОШИБКИ MICROSOFT* этот носитель будет давать сбой (BSOD) при загрузке Windows, если вы вручную не замените файл WppRecorder.sys версией 1803.\n" "\n" -"Rufus не может это исправить автоматически, так как WppRecorder.sys - это " -"файл Microsoft, защищённый авторскими правами, поэтому мы не можем легально " -"встраивать в приложение его копию." +"Rufus не может это исправить автоматически, так как WppRecorder.sys - это файл Microsoft, защищённый авторскими правами, поэтому мы не можем легально встраивать в приложение его копию." #. • MSG_134 msgid "" -"Because MBR has been selected for the partition scheme, Rufus can only " -"create a partition up to 2 TB on this media, which will leave %s of disk " -"space unavailable.\n" +"Because MBR has been selected for the partition scheme, Rufus can only create a partition up to 2 TB on this media, which will leave %s of disk space unavailable.\n" "\n" "Are you sure you want to continue?" msgstr "" -"Поскольку для схемы разделов выбрана MBR, на этом носителе Rufus может " -"создать только раздел размером до 2 ТБ, а %s дискового пространства " -"останутся недоступными.\n" +"Поскольку для схемы разделов выбрана MBR, на этом носителе Rufus может создать только раздел размером до 2 ТБ, а %s дискового пространства останутся недоступными.\n" "\n" "Вы действительно хотите продолжить?" @@ -1056,12 +947,8 @@ msgid "Download using a browser" msgstr "Скачать в браузере" #. • MSG_144 -msgid "" -"Download of Windows ISOs is unavailable due to Microsoft having altered " -"their website to prevent it." -msgstr "" -"Microsoft временно заблокировала скачивание образов Windows из-за большого " -"количества загрузок." +msgid "Download of Windows ISOs is unavailable due to Microsoft having altered their website to prevent it." +msgstr "Microsoft временно заблокировала скачивание образов Windows из-за большого количества загрузок." #. • MSG_145 msgid "PowerShell 3.0 or later is required to run this script." @@ -1080,32 +967,18 @@ msgid "Download ISO Image" msgstr "Загрузить образ ISO" #. • MSG_150 -msgid "" -"Type of computer you plan to use this bootable drive with. It is your " -"responsibility to determine whether your target is of BIOS or UEFI type " -"before you start creating the drive, as it may fail to boot otherwise." -msgstr "" -"Тип компьютера, с которым вы планируете использовать этот загрузочный диск. " -"Прежде чем создавать диск, вы должны определить, что используется в вашей " -"системе: BIOS или UEFI, иначе диск может не загрузиться." +msgid "Type of computer you plan to use this bootable drive with. It is your responsibility to determine whether your target is of BIOS or UEFI type before you start creating the drive, as it may fail to boot otherwise." +msgstr "Тип компьютера, с которым вы планируете использовать этот загрузочный диск. Прежде чем создавать диск, вы должны определить, что используется в вашей системе: BIOS или UEFI, иначе диск может не загрузиться." #. • MSG_151 #. #. You shouldn't translate 'Legacy Mode' as this is an option that usually appears in English in the UEFI settings. -msgid "" -"'UEFI-CSM' means that the device will only boot in BIOS emulation mode (also " -"known as 'Legacy Mode') under UEFI, and not in native UEFI mode." -msgstr "" -"'UEFI-CSM' означает, что устройство будет загружаться только в режиме " -"эмуляции BIOS (также называемом 'Legacy Mode') под UEFI, а не в режиме UEFI." +msgid "'UEFI-CSM' means that the device will only boot in BIOS emulation mode (also known as 'Legacy Mode') under UEFI, and not in native UEFI mode." +msgstr "'UEFI-CSM' означает, что устройство будет загружаться только в режиме эмуляции BIOS (также называемом 'Legacy Mode') под UEFI, а не в режиме UEFI." #. • MSG_152 -msgid "" -"'non CSM' means that the device will only boot in native UEFI mode, and not " -"in BIOS emulation mode (also known as 'Legacy Mode')." -msgstr "" -"'non-CSM' означает, что устройство будет загружаться только в режиме UEFI, а " -"не в режиме эмуляции BIOS (также известном как 'Legacy Mode')." +msgid "'non CSM' means that the device will only boot in native UEFI mode, and not in BIOS emulation mode (also known as 'Legacy Mode')." +msgstr "'non-CSM' означает, что устройство будет загружаться только в режиме UEFI, а не в режиме эмуляции BIOS (также известном как 'Legacy Mode')." #. • MSG_153 msgid "Test pattern: 0x%02X" @@ -1164,44 +1037,25 @@ msgid "Click to select or download an image..." msgstr "Нажмите, чтобы выбрать или загрузить образ..." #. • MSG_166 -msgid "" -"Check this box to allow the display of international labels and set a device " -"icon (creates an autorun.inf)" +msgid "Check this box to allow the display of international labels and set a device icon (creates an autorun.inf)" msgstr "" -"Разрешить отображение меток с международными символами и задать значок " -"устройства\n" +"Разрешить отображение меток с международными символами и задать значок устройства\n" "(создаётся файл autorun.inf)" #. • MSG_167 -msgid "" -"Install a UEFI bootloader, that will perform MD5Sum file validation of the " -"media" +msgid "Install a UEFI bootloader, that will perform MD5Sum file validation of the media" msgstr "Установить загрузчик UEFI, который проверит файл MD5Sum на носителе" -#. • MSG_168 -msgid "" -"Try to masquerade first bootable USB drive (usually 0x80) as a different " -"disk.\n" -"This should only be necessary if you install Windows XP and have more than " -"one disk." -msgstr "" -"Попробуйте замаскировать первый загрузочный \n" -"USB-диск (обычно 0x80) как другой диск.\n" -"Это необходимо только для установки Windows XP,\n" -"если у вас несколько дисков." - #. • MSG_169 msgid "" "Create an extra hidden partition and try to align partitions boundaries.\n" "This can improve boot detection for older BIOSes." msgstr "" -"Создать дополнительный скрытый раздел и попробовать выровнять границы " -"разделов.\n" +"Создать дополнительный скрытый раздел и попробовать выровнять границы разделов.\n" "Это может улучшить обнаружение загрузчика в старых BIOS." #. • MSG_170 -msgid "" -"Enable the listing of USB Hard Drive enclosures. USE AT YOUR OWN RISKS!!!" +msgid "Enable the listing of USB Hard Drive enclosures. USE AT YOUR OWN RISKS!!!" msgstr "" "Отображать внешние жёсткие диски USB.\n" "ИСПОЛЬЗУЙТЕ НА СВОЙ СТРАХ И РИСК!" @@ -1250,16 +1104,12 @@ msgid "Update Policy:" msgstr "Политика обновления:" #. • MSG_180 -msgid "" -"If you choose to allow this program to check for application updates, you " -"agree that the following information may be collected on our server(s):" -msgstr "" -"Разрешая проверку обновлений, вы соглашаетесь, что на наших серверах может " -"собираться следующая информация:" +msgid "If you choose to allow this program to check for application updates, you agree that the following information may be collected on our server(s):" +msgstr "Разрешая проверку обновлений, Вы соглашаетесь, что на наших серверах может собираться следующая информация:" #. • MSG_181 msgid "Your operating system's architecture and version" -msgstr "Версия и архитектура вашей операционной системы" +msgstr "Версия и архитектура Вашей операционной системы" #. • MSG_182 msgid "The version of the application you use" @@ -1270,14 +1120,8 @@ msgid "Your IP address" msgstr "Ваш IP-адрес" #. • MSG_184 -msgid "" -"For the purpose of generating private usage statistics, we may keep the " -"information collected, \\b for at most a year\\b0 . However, we will not " -"willingly disclose any of this individual data to third parties." -msgstr "" -"Для получения статистики использования программы мы можем хранить собранную " -"информацию \\b не более года\\b0 . Однако мы не будем добровольно раскрывать " -"какие-либо из этих персональных данных сторонним лицам." +msgid "For the purpose of generating private usage statistics, we may keep the information collected, \\b for at most a year\\b0 . However, we will not willingly disclose any of this individual data to third parties." +msgstr "Для получения статистики использования программы мы можем хранить собранную информацию \\b не более года\\b0 . Однако мы не будем добровольно раскрывать какие-либо из этих персональных данных сторонним лицам." #. • MSG_185 msgid "Update Process:" @@ -1285,13 +1129,10 @@ msgstr "Обновление:" #. • MSG_186 msgid "" -"Rufus does not install or run background services, therefore update checks " -"are performed only when the main application is running.\\line\n" +"Rufus does not install or run background services, therefore update checks are performed only when the main application is running.\\line\n" "Internet access is of course required when checking for updates." msgstr "" -"Rufus не устанавливает и не запускает фоновые службы, поэтому проверка " -"наличия обновлений выполняется, только когда запущено основное приложение." -"\\line\n" +"Rufus не устанавливает и не запускает фоновые службы, поэтому проверка наличия обновлений выполняется, только когда запущено основное приложение.\\line\n" "Для проверки обновлений требуется доступ к Интернету." #. • MSG_187 @@ -1299,12 +1140,8 @@ msgid "Invalid image for selected boot option" msgstr "Неверный образ для выбранного варианта загрузки" #. • MSG_188 -msgid "" -"The current image doesn't match the boot option selected. Please use a " -"different image or choose a different boot option." -msgstr "" -"Текущий образ не соответствует выбранному варианту загрузки. Выберите другой " -"образ или другой вариант загрузки." +msgid "The current image doesn't match the boot option selected. Please use a different image or choose a different boot option." +msgstr "Текущий образ не соответствует выбранному варианту загрузки. Выберите другой образ или другой вариант загрузки." #. • MSG_189 msgid "This ISO image is not compatible with the selected filesystem" @@ -1344,32 +1181,21 @@ msgstr "Использовать встроенную версию %s файло msgid "" "IMPORTANT: THIS DRIVE USES A NONSTANDARD SECTOR SIZE!\n" "\n" -"Conventional drives use a 512-byte sector size but this drive uses a %d-byte " -"one. In many cases, this means that you will NOT be able to boot from this " -"drive.\n" -"Rufus can try to create a bootable drive, but there is NO WARRANTY that it " -"will work." +"Conventional drives use a 512-byte sector size but this drive uses a %d-byte one. In many cases, this means that you will NOT be able to boot from this drive.\n" +"Rufus can try to create a bootable drive, but there is NO WARRANTY that it will work." msgstr "" "ВАЖНО: НА ЭТОМ ДИСКЕ СЕКТОРЫ НЕСТАНДАРТНОГО РАЗМЕРА!\n" "\n" -"Обычные накопители используют секторы размером 512 байт, а на этом диске они " -"%d-байтовые. Во многих случаях это означает, что вы НЕ СМОЖЕТЕ загрузиться с " -"этого диска.\n" -"Rufus попытается создать загрузочный диск, но БЕЗ ГАРАНТИИ, что он будет " -"работать." +"Обычные накопители используют секторы размером 512 байт, а на этом диске они %d-байтовые. Во многих случаях это означает, что Вы НЕ СМОЖЕТЕ загрузиться с этого диска.\n" +"Rufus попытается создать загрузочный диск, но БЕЗ ГАРАНТИИ, что он будет работать." #. • MSG_197 msgid "Nonstandard sector size detected" msgstr "Обнаружен нестандартный размер секторов" #. • MSG_198 -msgid "" -"'Windows To Go' can only be installed on a GPT partitioned drive if it has " -"the FIXED attribute set. The current drive was not detected as FIXED." -msgstr "" -"Windows To Go может быть установлена на диск с разделом GPT только в том " -"случае, если у диска есть атрибут FIXED (несъёмный). У выбранного диск " -"такого атрибута не обнаружено." +msgid "'Windows To Go' can only be installed on a GPT partitioned drive if it has the FIXED attribute set. The current drive was not detected as FIXED." +msgstr "Windows To Go может быть установлена на диск с разделом GPT только в том случае, если у диска есть атрибут FIXED (несъёмный). У выбранного диска такого атрибута не обнаружено." #. • MSG_199 msgid "This feature is not available on this platform." @@ -1570,15 +1396,11 @@ msgstr "Удаление разделов (%s)..." #. #. This message has to do with the signature validation that Rufus uses when downloading an update. msgid "" -"The signature for the downloaded update can not be validated. This could " -"mean that your system is improperly configured for signature validation or " -"indicate a malicious download.\n" +"The signature for the downloaded update can not be validated. This could mean that your system is improperly configured for signature validation or indicate a malicious download.\n" "\n" "The download will be deleted. Please check the log for more details." msgstr "" -"Невозможно проверить подпись загруженного обновления. Это может означать, " -"что ваша система неправильно настроена для проверки подписей, либо что было " -"загружено вредоносное ПО.\n" +"Невозможно проверить подпись загруженного обновления. Это может означать, что Ваша система неправильно настроена для проверки подписей, либо было загружено вредоносное ПО.\n" "\n" "Обновление будет удалено. См. подробности в файле-журнале." @@ -1728,21 +1550,15 @@ msgstr "Обнаружен образ %s" #. #. '%s' will be replaced with your translations for MSG_036 ("ISO Image") and MSG_095 ("DD Image") msgid "" -"The image you have selected is an 'ISOHybrid' image. This means it can be " -"written either in %s (file copy) mode or %s (disk image) mode.\n" -"Rufus recommends using %s mode, so that you always have full access to the " -"drive after writing it.\n" -"However, if you encounter issues during boot, you can try writing this image " -"again in %s mode.\n" +"The image you have selected is an 'ISOHybrid' image. This means it can be written either in %s (file copy) mode or %s (disk image) mode.\n" +"Rufus recommends using %s mode, so that you always have full access to the drive after writing it.\n" +"However, if you encounter issues during boot, you can try writing this image again in %s mode.\n" "\n" "Please select the mode that you want to use to write this image:" msgstr "" -"Выбран образ ISOHybrid. Это означает, что его можно записать либо в %s " -"режиме копирования файлов, либо в %s режиме образа диска.\n" -"Для полного доступа к диску после записи рекомендуется использовать режим " -"%s.\n" -"Если возникают проблемы при загрузке, ещё раз попробуйте записать образ в " -"режиме %s.\n" +"Выбран образ ISOHybrid. Это означает, что его можно записать либо в %s режиме копирования файлов, либо в %s режиме образа диска.\n" +"Для полного доступа к диску после записи рекомендуется использовать режим %s.\n" +"Если возникают проблемы при загрузке, ещё раз попробуйте записать образ в режиме %s.\n" "\n" "Выберите режим записи этого образа:" @@ -1789,8 +1605,7 @@ msgstr "У загруженного файла отсутствует цифро #. • MSG_285 msgid "" "The downloaded executable is signed by '%s'.\n" -"This is not a signature we recognize and could indicate some form of " -"malicious activity...\n" +"This is not a signature we recognize and could indicate some form of malicious activity...\n" "Are you sure you want to run this file?" msgstr "" "Загруженный файл подписан '%s'.\n" @@ -1857,19 +1672,15 @@ msgstr "Обнаружен усечённый образ ISO" #. • MSG_298 msgid "" -"The ISO file you have selected does not match its declared size: %s of data " -"is missing!\n" +"The ISO file you have selected does not match its declared size: %s of data is missing!\n" "\n" -"If you obtained this file from the Internet, you should try to download a " -"new copy and verify that the MD5 or SHA checksums match the official ones.\n" +"If you obtained this file from the Internet, you should try to download a new copy and verify that the MD5 or SHA checksums match the official ones.\n" "\n" "Note that you can compute the MD5 or SHA in Rufus by clicking the (✓) button." msgstr "" -"Выбранный образ ISO не соответствует заявленному размеру: %s данных " -"отсутствует!\n" +"Выбранный образ ISO не соответствует заявленному размеру: %s данных отсутствует!\n" "\n" -"Если вы скачали этот файл из Интернета, загрузите его снова и проверьте, " -"совпадают ли контрольные суммы MD5 или SHA.\n" +"Если Вы скачали этот файл из Интернета, загрузите его снова и проверьте, совпадают ли контрольные суммы MD5 или SHA.\n" "\n" "Чтобы вычислить MD5 или SHA в Rufus, нажмите кнопку (✓)." @@ -1879,18 +1690,13 @@ msgstr "Ошибка проверки временной метки" #. • MSG_300 msgid "" -"Rufus could not validate that the timestamp of the downloaded update is more " -"recent than the one for the current executable.\n" +"Rufus could not validate that the timestamp of the downloaded update is more recent than the one for the current executable.\n" "\n" -"In order to prevent potential attack scenarios, the update process has been " -"aborted and the download will be deleted. Please check the log for more " -"details." +"In order to prevent potential attack scenarios, the update process has been aborted and the download will be deleted. Please check the log for more details." msgstr "" -"Rufus не смог подтвердить, что временная метка загруженного обновления более " -"поздняя, ​​чем дата текущего исполняемого файла.\n" +"Rufus не смог подтвердить, что временная метка загруженного обновления более поздняя, ​​чем дата текущего исполняемого файла.\n" "\n" -"Чтобы предотвратить возможную атаку, обновление было прервано, а загруженный " -"файл - удалён. См. подробности в файле-журнале." +"Чтобы предотвратить возможную атаку, обновление было прервано, а загруженный файл - удалён. См. подробности в файле-журнале." #. • MSG_301 msgid "Show application settings" @@ -1909,12 +1715,8 @@ msgid "Create a disk image of the selected device" msgstr "Создать образ диска выбранного устройства" #. • MSG_305 -msgid "" -"Use this option to indicate if you plan to install Windows to a different " -"disk, or if you want to run Windows directly from this drive (Windows To Go)." -msgstr "" -"Используйте эту опцию, если вы хотите установить Windows на другой диск или " -"запускать Windows прямо с этого диска (Windows To Go)." +msgid "Use this option to indicate if you plan to install Windows to a different disk, or if you want to run Windows directly from this drive (Windows To Go)." +msgstr "Используйте эту опцию, если Вы хотите установить Windows на другой диск или запускать Windows прямо с этого диска (Windows To Go)." #. • MSG_306 #. @@ -1937,17 +1739,11 @@ msgstr "Сжатый архив" #. • MSG_310 msgid "" -"The ISO you have selected uses UEFI and is small enough to be written as an " -"EFI System Partition (ESP). Writing to an ESP, instead of writing to a " -"generic data partition occupying the whole disk, can be preferable for some " -"types of installations.\n" +"The ISO you have selected uses UEFI and is small enough to be written as an EFI System Partition (ESP). Writing to an ESP, instead of writing to a generic data partition occupying the whole disk, can be preferable for some types of installations.\n" "\n" "Please select the mode that you want to use to write this image:" msgstr "" -"Выбранный образ ISO использует UEFI и достаточно мал, чтобы его можно было " -"записать как системный раздел EFI (ESP). Запись в ESP вместо записи в общий " -"раздел данных, занимающий весь диск, может быть предпочтительнее для " -"некоторых типов установок.\n" +"Выбранный образ ISO использует UEFI и достаточно мал, чтобы его можно было записать как системный раздел EFI (ESP). Запись в ESP вместо записи в общий раздел данных, занимающий весь диск, может быть предпочтительнее для некоторых типов установок.\n" "\n" "Выберите режим записи этого образа:" @@ -1993,18 +1789,24 @@ msgstr "Обновление макета разделов (%s)..." #. • MSG_321 msgid "" -"The image you have selected is an ISOHybrid, but its creators have not made " -"it compatible with ISO/File copy mode.\n" +"The image you have selected is an ISOHybrid, but its creators have not made it compatible with ISO/File copy mode.\n" "As a result, DD image writing mode will be enforced." msgstr "" -"Выбранный образ - ISOHybrid, но создатели не сделали его совместимым с " -"режимом копирования ISO/файла.\n" +"Выбранный образ - ISOHybrid, но создатели не сделали его совместимым с режимом копирования ISO/файла.\n" "Из-за этого будет применён режим записи образа DD." #. • MSG_322 msgid "Unable to open or read '%s'" msgstr "Не удалось открыть или прочитать '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Применить SkuSiPolicy.p7b при установке (см. KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Улучшить жизнь (не принуждать к Copilot, OneDrive, Outlook, быстрому запуску и т.д.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Применение настройки Windows: %s" @@ -2055,21 +1857,17 @@ msgstr "Постоянный журнал" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to " -"install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" -"Note: The file will be downloaded in the application's directory and will be " -"reused automatically if present." +"Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Для установки MS-DOS необходимо загрузить дополнительный файл (diskcopy.dll) " -"с сайта Microsoft:\n" +"Для использования этой функции необходимо загрузить дополнительный файл ('%s') с сайта Microsoft:\n" " 'Да' - загрузить его из Интернета\n" " 'Нет' - отменить операцию\n" "\n" -"* Файл загрузится в папку приложения, если там есть одноимённый файл, он " -"будет автоматически перезаписан." +"* Файл загрузится в папку приложения, если там есть одноимённый файл, он будет автоматически перезаписан." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -2077,23 +1875,15 @@ msgstr "Обнаружен отозванный загрузчик UEFI" #. • MSG_339 msgid "" -"Rufus detected that the ISO you have selected contains a UEFI bootloader " -"that has been revoked and that will produce %s, when Secure Boot is enabled " -"on a fully up to date UEFI system.\n" +"Rufus detected that the ISO you have selected contains a UEFI bootloader that has been revoked and that will produce %s, when Secure Boot is enabled on a fully up to date UEFI system.\n" "\n" -"- If you obtained this ISO image from a non reputable source, you should " -"consider the possibility that it might contain UEFI malware and avoid " -"booting from it.\n" -"- If you obtained it from a trusted source, you should try to locate a more " -"up to date version, that will not produce this warning." +"- If you obtained this ISO image from a non reputable source, you should consider the possibility that it might contain UEFI malware and avoid booting from it.\n" +"- If you obtained it from a trusted source, you should try to locate a more up to date version, that will not produce this warning." msgstr "" -"Выбранный образ ISO содержит отозванный загрузчик UEFI, который выдаёт %s, " -"когда безопасная загрузка включена в полностью обновленной системе UEFI.\n" +"Выбранный образ ISO содержит отозванный загрузчик UEFI, который выдаёт %s, когда безопасная загрузка включена в полностью обновленной системе UEFI.\n" "\n" -"- Если вы получили этот образ ISO из ненадёжного источника, учтите, что он " -"может содержать вредоносное ПО UEFI, и не загружайтесь с него.\n" -"- Если вы получили его из надёжного источника, попробуйте найти более новую " -"версию, которая не будет выдавать это предупреждение." +"- Если Вы получили этот образ ISO из ненадёжного источника, учтите, что он может содержать вредоносное ПО UEFI, и не загружайтесь с него.\n" +"- Если Вы получили его из надёжного источника, попробуйте найти более новую версию, которая не будет выдавать это предупреждение." #. • MSG_340 msgid "a \"Security Violation\" screen" @@ -2117,13 +1907,11 @@ msgstr "Образ Full Flash Update (FFU)" #. • MSG_345 msgid "" -"Some additional data must be downloaded from Microsoft to use this " -"functionality:\n" +"Some additional data must be downloaded from Microsoft to use this functionality:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation" msgstr "" -"Для этой функции необходимо загрузить дополнительные данные с сайта " -"Microsoft:\n" +"Для этой функции необходимо загрузить дополнительные данные с сайта Microsoft:\n" " 'Да' - загрузить их из Интернета\n" " 'Нет' - отменить операцию" @@ -2143,15 +1931,123 @@ msgstr "Распаковка архивов: %s" msgid "Use Rufus MBR" msgstr "Использовать MBR Rufus" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Использовать загрузчики, подписанные 'Windows CA 2023' (требуется совместимый целевой компьютер)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Проверка отзыва загрузчика UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Проверка обновлений UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Доступно обновление DBX" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Обнаружена обновлённая версия файлов DBX, используемых для проверки отзыва безопасной загрузки UEFI. Загрузить это обновление?\n" +"- 'Да': подключиться к Интернету и загрузить этот контент.\n" +"- 'Нет': отменить операцию\n" +"\n" +"* Файлы будут загружены в папку приложения с автоматической перезаписью имеющихся." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠ТИХО⚠ стереть диск и установить:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Вы выбрали вариант \"тихой\" установки Windows.\n" +"\n" +"Это параметр для тех, кто хочет создать носитель, который не запрашивает реакций пользователя при установке Windows и, следовательно, БЕЗУСЛОВНО УДАЛЯЕТ первый обнаруженный диск в целевой системе. Если вы не будете осторожны, использование этой опции может привести к НЕОБРАТИМОЙ ПОТЕРЕ ДАННЫХ!\n" +"\n" +"Если это не то, что вам нужно, выберите 'Нет', чтобы вернуться назад и снять флажок с этой опции.\n" +"При выборе 'Да' вы соглашаетесь, что вся ответственность за любую потерю данных будет полностью лежать на ВАС." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Неподдерживаемое расположение образа" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Нельзя использовать образ, расположенный на целевом диске, поскольку этот диск будет полностью удалён. Это то же самое, как пилить сук, на котором сидишь!\n" +"\n" +"Переместите образ в другое место и повторите попытку." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Эту опцию безопасно оставлять включённой, даже если у вас есть модуль TPM или больше ОЗУ, поскольку данная опция только обходит требования установки и фактически не мешает Windows использовать все доступное оборудование." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Чтобы эта опция работала, сеть/Интернет ДОЛЖНЫ быть отключены во время установки!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Автоматически отвечать 'Нет' на вопросы установщика Windows, касающиеся обмена данными с Microsoft, вместо того, чтобы запрашивать это у пользователя." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Эту опцию следует оставить включённой, если только вас не устраивает доступ Windows To Go к внутренним дискам и автоматическое выполнение необратимых обновлений файловой системы." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Автоматически создавать локальную учётную запись с указанным именем пользователя, используя пустой пароль, который необходимо будет изменить при следующем входе в систему." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Дублировать региональные настройки с этого компьютера (клавиатура, часовой пояс, валюта) вместо запроса пользователя." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Не шифровать системный диск, если это явно не заявлено пользователем." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Используйте эту опцию, только если вы знаете, что такое S-Mode, и понимаете, что ваша система может быть заблокирована в S-Mode даже после того, как вы полностью удалите и переустановите Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Используйте эту опцию, если система, в которой вы планируете установить Windows, использует полностью актуальные сертификаты безопасной загрузки. При необходимости вы можете использовать Mosby для обновления системы." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Используйте эту опцию, чтобы отозвать дополнительные потенциально небезопасные загрузчики Windows, но с возможностью предотвращения загрузки стандартных носителей Windows." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Улучшить жизнь: отключить большинство нежелательных функций, которые Microsoft пытается навязать пользователям." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Если вы используете эту опцию, обязательно отключите от целевого компьютера все диски, кроме того, на котором вы хотите установить Windows, а также не оставляйте носитель подключённым к любому компьютеру, с которого вы не хотите стирать данные." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application -msgid "" -"Rufus is a utility that helps format and create bootable USB flash drives, " -"such as USB keys/pendrives, memory sticks, etc." -msgstr "" -"Rufus - это утилита для форматирования и создания загрузочных флеш-" -"накопителей USB." +msgid "Rufus is a utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc." +msgstr "Rufus - это утилита для форматирования и создания загрузочных флеш-накопителей USB." #. • MSG_901 msgid "Official site: %s" @@ -2170,12 +2066,10 @@ msgstr "Изменения: %s" #. The gnu.org website has many translations of the GPL (such as https://www.gnu.org/licenses/gpl-3.0.zh-cn.html, https://www.gnu.org/licenses/gpl-3.0.fr.html) #. Please make sure you try to locate the relevant https://www.gnu.org/licenses/gpl-3.0..html for your language and use it here. msgid "" -"This application is licensed under the terms of the GNU Public License (GPL) " -"version 3.\n" +"This application is licensed under the terms of the GNU Public License (GPL) version 3.\n" "See https://www.gnu.org/licenses/gpl-3.0.en.html for details." msgstr "" -"Это приложение распространяется по лицензии GNU Public License (GPL) версии " -"3.\n" +"Это приложение распространяется по лицензии GNU Public License (GPL) версии 3.\n" "Подробнее см. https://www.gnu.org/licenses/gpl-3.0.ru.html." #. • MSG_905 @@ -2187,12 +2081,8 @@ msgstr "Загрузочный" #. • MSG_910 #. #. This and subsequent messages will be listed in the 'Features' section of the Windows Store page -msgid "" -"Format USB, flash card and virtual drives to FAT/FAT32/NTFS/UDF/exFAT/ReFS/" -"ext2/ext3" -msgstr "" -"Форматирование USB, флешек и виртуальных дисков в FAT/FAT32/NTFS/UDF/exFAT/" -"ReFS/ext2/ext3" +msgid "Format USB, flash card and virtual drives to FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" +msgstr "Форматирование USB, флешек и виртуальных дисков в FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" #. • MSG_911 msgid "Create FreeDOS bootable USB drives" @@ -2200,32 +2090,23 @@ msgstr "Создание загрузочных USB-дисков FreeDOS" #. • MSG_912 msgid "Create bootable drives from bootable ISOs (Windows, Linux, etc.)" -msgstr "" -"Создание загрузочных дисков из загрузочных образов ISO (Windows, Linux и т." -"д.)" +msgstr "Создание загрузочных дисков из загрузочных образов ISO (Windows, Linux и т.д.)" #. • MSG_913 -msgid "" -"Create bootable drives from bootable disk images, including compressed ones" -msgstr "" -"Создание загрузочных дисков из образов загрузочных дисков, в том числе сжатых" +msgid "Create bootable drives from bootable disk images, including compressed ones" +msgstr "Создание загрузочных дисков из образов загрузочных дисков, в том числе сжатых" #. • MSG_914 msgid "Create BIOS or UEFI bootable drives, including UEFI bootable NTFS" -msgstr "" -"Создание загрузочных дисков BIOS или UEFI, включая загрузочный UEFI NTFS" +msgstr "Создание загрузочных дисков BIOS или UEFI, включая загрузочный UEFI NTFS" #. • MSG_915 msgid "Create 'Windows To Go' drives" msgstr "Создание дисков Windows To Go" #. • MSG_916 -msgid "" -"Create Windows 11 installation drives for PCs that don't have TPM or Secure " -"Boot" -msgstr "" -"Создание установочных дисков Windows 11 для компьютеров без TPM или " -"безопасной загрузки" +msgid "Create Windows 11 installation drives for PCs that don't have TPM or Secure Boot" +msgstr "Создание установочных дисков Windows 11 для компьютеров без TPM или безопасной загрузки" #. • MSG_917 msgid "Create persistent Linux partitions" @@ -2237,8 +2118,7 @@ msgstr "Создание образов VHD/DD выбранного диска" #. • MSG_919 msgid "Compute MD5, SHA-1, SHA-256 and SHA-512 checksums of the selected image" -msgstr "" -"Вычисление контрольных сумм MD5, SHA-1, SHA-256 и SHA-512 выбранного образа" +msgstr "Вычисление контрольных сумм MD5, SHA-1, SHA-256 и SHA-512 выбранного образа" #. • MSG_920 msgid "Perform bad blocks checks, including detection of \"fake\" flash drives" diff --git a/res/loc/po/sk-SK.po b/res/loc/po/sk-SK.po index c9916203..01f6026e 100644 --- a/res/loc/po/sk-SK.po +++ b/res/loc/po/sk-SK.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-12 10:18+0200\n" -"PO-Revision-Date: 2024-05-12 10:38+0200\n" +"POT-Creation-Date: 2026-04-17 06:04+0200\n" +"PO-Revision-Date: 2026-04-19 10:24+0200\n" "Last-Translator: martinco78\n" "Language-Team: \n" "Language: sk_SK\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Slovak (Slovensky)\n" "X-Rufus-LCID: 0x041B\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.6\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -153,7 +153,7 @@ msgstr "Zásady a nastavenia aktualizácií" #. • IDD_UPDATE_POLICY → IDS_UPDATE_SETTINGS_GRP msgid "Settings" -msgstr "Nastavenia automatických aktualizácií" +msgstr "Nastavenia" #. • IDD_UPDATE_POLICY → IDS_UPDATE_FREQUENCY_TXT msgid "Check for updates" @@ -310,7 +310,7 @@ msgstr "TB" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "PB" @@ -852,7 +852,7 @@ msgstr "Bez partície" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Nastavte veľkosť trvalej partície pre Live USB médium. Nastavením hodnoty na 0 zakážete trvalú partíciu." @@ -894,15 +894,15 @@ msgstr "Prístup k tejto jednotke má iný program alebo proces. Chcete ho napri #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Program Rufus zistil, že sa pokúšate vytvoriť Windows To Go médium založeného na 1809 ISO.\n" +"Program Rufus zistil, že sa pokúšate vytvoriť „Windows To Go\" médium založeného na 1809 ISO.\n" "\n" -"Kvôli *MICROSOFT BUG*, toto médium môže zlyhať počas zavádzania systému Windows (modrá obrazovka smrti), pokiaľ manuálne nenahradíte súbor „WppRecorder. sys\" verziou 1803.\n" +"Kvôli „MICROSOFT BUG*, toto médium môže zlyhať počas zavádzania systému Windows (modrá obrazovka smrti), pokiaľ manuálne nenahradíte súbor „WppRecorder. sys\" verziou 1803.\n" "\n" "Dôvodom, prečo program Rufus nemôže automaticky toto opraviť to, že súbor „WppRecorder.sys\" je chránený súbor spoločnosti Microsoft, takže nie je legálne vložiť kópiu súboru do aplikácie..." @@ -1093,7 +1093,7 @@ msgstr "Verzia %d.%d (Build %d)" #. • MSG_176 msgid "English translation: Pete Batard " -msgstr "Do slovenčiny preložil martinco78 " +msgstr "Do slovenčiny preložil martinco78 " #. • MSG_177 msgid "Report bugs or request enhancements at:" @@ -1796,13 +1796,21 @@ msgid "" "The image you have selected is an ISOHybrid, but its creators have not made it compatible with ISO/File copy mode.\n" "As a result, DD image writing mode will be enforced." msgstr "" -"Obráz, ktorý ste vybrali, je ISOHybrid a nie je kompatibilný s ISO/režim kopírovania súboru.\n" +"Obraz, ktorý ste vybrali, je ISOHybrid a nie je kompatibilný s ISO/režim kopírovania súboru.\n" "V dôsledku toho sa vynúti režim zápisu obrazu DD." #. • MSG_322 msgid "Unable to open or read '%s'" msgstr "Nedá sa otvoriť alebo prečítať „%s\"" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Použiť SkuSiPolicy.p7b pri inštalácii (pozri KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "QoL vylepšenia (nenúťte Copilot, OneDrive, Outlook, Fast Startup a podobne)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Použitie prispôsobenia systému Windows: %s" @@ -1821,11 +1829,11 @@ msgstr "Prajete si prispôsobiť inštaláciu systému Windows?" #. • MSG_329 msgid "Remove requirement for 4GB+ RAM, Secure Boot and TPM 2.0" -msgstr "Odstrániť požiadavku pre 4GB+ RAM, Secure Boot a TPM 2.0" +msgstr "Odstrániť požiadavky pre 4GB+ RAM, Secure Boot a TPM 2.0" #. • MSG_330 msgid "Remove requirement for an online Microsoft account" -msgstr "Odstrániť požiadavky na online konto Microsoft" +msgstr "Odstrániť požiadavku na online konto Microsoft" #. • MSG_331 msgid "Disable data collection (Skip privacy questions)" @@ -1853,13 +1861,13 @@ msgstr "Trvalý záznam činností" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Pre inštaláciu systému MS-DOS je potrebné prevziať od spoločnosti Microsoft ďalší súbor („diskcopy.dll\"):\n" +"Na použitie tejto funkcie je potrebné prevziať od spoločnosti Microsoft ďalší súbor („%s“):\n" "- Výberom možnosti „Áno\" ho stiahnete z internetu\n" "- Výberom možnosti „Nie\" zrušíte operáciu\n" "\n" @@ -1927,6 +1935,118 @@ msgstr "Extrahovanie archívnych súborov: %s" msgid "Use Rufus MBR" msgstr "Použiť Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Použiť podpísané bootloadery „Windows CA 2023\" (vyžaduje kompatibilný cieľový PC)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Prebieha kontrola zrušenia UEFI zavádzača..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Prebieha kontrola aktualizácie pre UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Dostupná aktualizácia DBX" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus našiel aktualizovanú verziu DBX súborov používaných na kontrolu odvolávania UEFI Secure Boot. Chcete si stiahnuť túto aktualizáciu?\n" +"- Vyberte „Áno\" ak chcete tieto súbory stiahnuť\n" +"- Vyberte „Nie\" pre zrušenie operácie\n" +"\n" +"Poznámka: Súbory budú stiahnuté do adresára aplikácie a budú automaticky znovu použité, ak budú prítomné." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠BEZ UPOZORNENIA⚠ vymažte disk a nainštaluje:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes', you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Vybrali ste možnosť „tichá\" inštalácia Windows.\n" +"\n" +"Ide o pokročilú možnosť, vyhradenú pre ľudí, ktorí chcú vytvárať médiá, ktoré počas inštalácie Windows neupozorňujú používateľa a teda BEZPODMIENEČNE VYMAŽÚ prvý zistený disk na cieľovom systéme. Ak nebudete opatrní, pri tejto možnosti môže dôjsť k NEVRATNEJ STRATE DÁT!\n" +"\n" +"Ak to nie je to, čo chcete, vyberte prosím „Nie\", aby ste sa vrátili späť a odškrtli túto možnosť.\n" +"Inak, ak zvolíte „Áno\", súhlasíte, že plná zodpovednosť za akúkoľvek stratu dát bude úplne na VÁS." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Nepodporované umiestnenie obrazu" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Nemôžete použiť obraz, ktorý sa nachádza na cieľovom disku, pretože tento disk bude úplne vymazaný. Je to to isté, ako keby ste sa snažili rezať konár, na ktorom sedíte!\n" +"\n" +"Prosím, presuňte tento obraz do iného umiestnenia a skúste to znova." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Je bezpečné nechať túto možnosť zapnutú aj v prípade, že máte TPM alebo viac RAM, pretože táto možnosť len obchádza požiadavky na nastavenie a v skutočnosti nebráni Windows v používaní všetkého dostupného hardvéru." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Aby táto možnosť fungovala, sieť/internet MUSIA byť počas inštalácie odpojené!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Automaticky odpovedá „NIE\" na otázky týkajúce sa Windows zdieľania dát s Microsoftom, namiesto toho, aby vyzývali používateľa." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Túto možnosť by ste mali nechať zapnutú, pokiaľ vám nevadí, že „Windows To Go\" pristupuje k interným diskom a potichu vykonáva nezvratné aktualizácie súborového systému." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Automaticky vytvorí lokálny účet s určeným používateľským menom s prázdnym heslom, ktoré bude potrebné zmeniť pri ďalšom prihlásení." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Duplikuje regionálne nastavenia z tohto PC (klávesnica, časové pásmo, mena) namiesto toho, aby výzýval používateľa." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Nešifrujte systémový disk, pokiaľ to používateľ výslovne nepožiada." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Použite túto možnosť len vtedy, ak viete, čo je S-Mode a chápete, že váš systém môže byť uzamknutý v S-Mode aj po úplnom vymazaní a preinštalovaní Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Použite túto možnosť, ak systém ktorý plánujete nainštalovať Windows, používa plne aktuálne certifikáty Secure Boot. Ak je to potrebné, môžete zvážiť použitie „Mosby\" na aktualizáciu systému." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Použite túto možnosť, ak chcete zrušiť ďalšie potenciálne nebezpečné bootloadery Windows, ale zároveň potenciálne zabrániť spusteniu štandardných Windows médií." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Vylepšenia „kvality života\": Vypne väčšinu nežiaducich funkcií, ktoré sa Microsoft snaží vnútiť koncovým používateľom." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Ak použijete túto možnosť, uistite sa, že máte odpojené všetky disky od cieľového PC, okrem toho na ktorý chcete nainštalovať systém Windows. Taktiež nenechávajte médium pripojené k žiadnemu PC, ktorý nechcete vymazať." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/sr-RS.po b/res/loc/po/sr-RS.po index a325ca9c..c8b851b0 100644 --- a/res/loc/po/sr-RS.po +++ b/res/loc/po/sr-RS.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-10 22:14+0200\n" -"PO-Revision-Date: 2024-05-10 22:25+0200\n" +"POT-Creation-Date: 2026-04-07 01:00+0200\n" +"PO-Revision-Date: 2026-04-07 22:18+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: sr_RS\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Serbian (Srpski)\n" "X-Rufus-LCID: 0x241a, 0x081a, 0x181a, 0x2c1a, 0x701a, 0x7c1a\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -846,7 +846,7 @@ msgstr "Bez stalne veličine" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Izaberite veličinu stalne particije za live USB datoteku. Podešavanjem na 0 onemogućava stalnu particiju." @@ -888,7 +888,7 @@ msgstr "NEki drugi program koristi uređaj. Da li idalje želiš da ga formatira #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -1795,6 +1795,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Nije moguće otvoriti ili pročitati '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Primenite SkuSiPolicy.p7b prilikom instalacije (pogledajte KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Poboljšanja „QoL“ (Ne forsirajte Copilot, OneDrive, Outlook, brzo pokretanje itd.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Premena prilagođavanja Winodows-a" @@ -1845,17 +1853,17 @@ msgstr "Trajna evidencija" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Додатна датотека ('diskcopy.dll') мора да се преузме са Microsoft-a да би се инсталирао MS-DOS:\n" -"- Изаберите „Да“ да бисте се повезали на Интернет и преузели га\n" -"- Изаберите „Не“ да бисте отказали операцију\n" +"Dodatna datoteka („%s“) mora biti preuzeta od kompanije Microsoft da biste koristili ovu funkciju:\n" +"- Izaberite „Da“ da biste se povezali na internet i preuzeli je\n" +"- Izaberite „Ne“ da biste otkazali operaciju\n" "\n" -"Напомена: Датотека ће бити преузета у директоријум апликације и аутоматски ће се поново користити ако постоји." +"Napomena: Datoteka će biti preuzeta u direktorijum aplikacije i biće automatski ponovo korišćena ako postoji." #. • MSG_338 msgid "Revoked UEFI bootloader detected" @@ -1919,6 +1927,118 @@ msgstr "Распакивање архивских датотека: %s" msgid "Use Rufus MBR" msgstr "Koritsti Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Koristite bootloadere potpisane od strane 'Windows CA 2023' (potreban je kompatibilan ciljni računar)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Proverava opoziv UEFI bootloadera..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Proverava ažuriranja za UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Dostupno ažuriranje DBX-a" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus je pronašao ažuriranu verziju DBX datoteka koje se koriste za izvođenje proverava opoziva UEFI Secure Boot-a. Želite li preuzeti ovo ažuriranje?\n" +"- Odaberite 'Da' da biste se povezali na internet i preuzeli ovaj sadržaj\n" +"- Odaberite 'Ne' da biste otkazali operaciju\n" +"\n" +"Napomena: Datoteke će biti preuzete u folderu aplikacije i automatski će se ponovo koristiti ako postoje." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠TIHO⚠ obriši disk i instaliraj:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Izabrali ste opciju „tihe“ instalacije sistema Windows.\n" +"\n" +"Ovo je napredna opcija, rezervisana za ljude koji žele da kreiraju medije koji ne obaveštavaju korisnika tokom instalacije sistema Windows i stoga BEZUSLOVNO BRIŠU prvi detektovani disk na ciljnom sistemu. Ako niste pažljivi, korišćenje ove opcije može dovesti do NEPOVRATNOG GUBITKA PODATAKA!\n" +"\n" +"Ako ovo nije ono što želite, izaberite „Ne“ da biste se vratili i opozvali izbor opcije.\n" +"U suprotnom, ako izaberete „Da“, slažete se da će sva odgovornost za bilo kakav gubitak podataka biti u potpunosti na VAMA." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Nepodržana lokacija slike" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Ne možete koristiti sliku koja se nalazi na ciljnom disku, jer će taj disk biti potpuno obrisan. To je isto kao i pokušaj da sečete granu na kojoj sedite!\n" +"\n" +"Molimo vas da premestite sliku na drugu lokaciju i pokušate ponovo." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Bezbedno je ostaviti ovu opciju omogućenu čak i ako imate TPM ili više RAM-a, jer ova opcija samo zaobilazi zahteve za podešavanje i zapravo ne sprečava Windows da koristi sav dostupan hardver." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Da bi ova opcija funkcionisala, mreža/internet MORA biti isključen tokom instalacije!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Automatski odgovori sa „ne“ na pitanja o podešavanju sistema Windows u vezi sa deljenjem podataka sa kompanijom Microsoft, umesto da to pita korisnika." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Trebalo bi da ostavite ovu opciju omogućenu, osim ako vam ne smeta da „Windows To Go“ pristupa internim diskovima i tiho izvršava nepovratne nadogradnje sistema datoteka." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Automatski kreirajte lokalni nalog sa navedenim korisničkim imenom, koristeći praznu lozinku koju će biti potrebno promeniti pri sledećem prijavljivanju." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Duplirajte regionalna podešavanja sa ovog računara (tastatura, vremenska zona, valuta), umesto da pitate korisnika." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Ne enkriptuj sistemski disk, osim ako to korisnik eksplicitno ne zahteva." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Koristite ovu opciju samo ako znate šta je S-režim i razumete da vaš sistem može biti zaključan u S-režimu čak i nakon što potpuno obrišete i ponovo instalirate Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Koristite ovu opciju ako sistem na koji planirate da instalirate Windows koristi potpuno ažurirane sertifikate za bezbedno pokretanje (Secure Boot). Ako je potrebno, možete razmotriti korišćenje „Mosby“-ja za ažuriranje sistema." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Koristite ovu opciju ako želite da opozovete dodatne potencijalno nebezbedne Windows pokretačke programe, ali sa mogućnošću da sprečite i pokretanje standardnih Windows medija." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Poboljšanja „Kvaliteta života“: Onemogućite većinu neželjenih funkcija koje Majkrosoft pokušava da nametne krajnjim korisnicima." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Ako koristite ovu opciju, obavezno isključite svaki disk sa ciljnog računara, osim onog na koji želite da instalirate Windows, kao i da ne ostavljate medijum priključen na bilo koji računar koji ne želite da obrišete." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/sv-SE.po b/res/loc/po/sv-SE.po index b21fd5c2..6c3a726a 100644 --- a/res/loc/po/sv-SE.po +++ b/res/loc/po/sv-SE.po @@ -1,11 +1,11 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-26 00:51+0200\n" -"PO-Revision-Date: 2024-04-26 14:23+0100\n" +"POT-Creation-Date: 2026-03-23 18:43+0000\n" +"PO-Revision-Date: 2026-03-23 18:43+0000\n" "Last-Translator: \n" -"Language-Team: Sopor \n" +"Language-Team: \n" "Language: sv_SE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Swedish (Svenska)\n" "X-Rufus-LCID: 0x041d, 0x081d\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -62,7 +62,7 @@ msgstr "Aktivera runtime UEFI-mediavalidering" #. • IDD_DIALOG → IDS_FORMAT_OPTIONS_TXT msgid "Format Options" -msgstr "Formateringsinställningar" +msgstr "Formatalternativ" #. • IDD_DIALOG → IDS_FILE_SYSTEM_TXT msgid "File system" @@ -309,7 +309,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -845,7 +845,7 @@ msgstr "Ej bestående" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Ställ in den bestående partitionens storlek för live USB-media. Om du ställer in storleken till 0 inaktiveras den bestående partitionen." @@ -887,7 +887,7 @@ msgstr "Ett annat program eller process använder denna enheten Vill du ändå f #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -1134,7 +1134,7 @@ msgstr "" #. • MSG_187 msgid "Invalid image for selected boot option" -msgstr "Ogiltig avbild för vald startinställning" +msgstr "Ogiltig avbild för valt startalternativ" #. • MSG_188 msgid "The current image doesn't match the boot option selected. Please use a different image or choose a different boot option." @@ -1796,6 +1796,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Det går inte att öppna eller läsa '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Verkställ SkuSiPolicy.p7b vid installationen (se KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Förbättringar av användarupplevelsen (tvinga inte på Copilot, OneDrive, Outlook, Snabbstart osv.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Verkställer Windows-anpassning: %s" @@ -1846,13 +1854,13 @@ msgstr "Bestående logg" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"En fil (diskcopy.dll) måste laddas ner från Microsoft för att installera MS-DOS:\n" +"En fil (%s) måste laddas ner från Microsoft för att använda den här funktionen:\n" "- Välj \"Ja\" för att ansluta till Internet och ladda ner den\n" "- Välj \"Nej\" för att avbryta operationen\n" "\n" @@ -1920,6 +1928,118 @@ msgstr "Extraherar arkivfiler: %s" msgid "Use Rufus MBR" msgstr "Använd Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Använd bootloaders signerade med ’Windows CA 2023’ (kräver en kompatibel mål‑PC)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Kontrollerar om UEFI‑bootloadern är återkallad..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Söker efter UEFI‑DBX‑uppdateringar..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "DBX‑uppdatering tillgänglig" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus har hittat en uppdaterad version av de DBX‑filer som används för att utföra UEFI Secure Boot‑återkallelsekontroller. Vill du ladda ned denna uppdatering?\n" +"- Välj ”Ja” för att ansluta till Internet och ladda ner innehållet\n" +"- Välj ”Nej” för att avbryta åtgärden\n" +"\n" +"Obs: Filerna laddas ner till programmets katalog och återanvänds automatiskt om de redan finns." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "Radera disken i ⚠TYST LÄGE⚠ och installera:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Du har valt alternativet ”tyst läge” för Windows‑installationen.\n" +"\n" +"Detta är ett avancerat alternativ, avsett för personer som vill skapa installationsmedia som inte visar några dialogrutor under Windows‑installationen och därför OVILLKORLIGT RADERAR den första upptäckta disken på målsystemet. Om du inte är försiktig kan användning av detta alternativ leda till OÅTERKALLELIG FÖRLUST AV DATA!\n" +"\n" +"Om detta inte är vad du vill, välj ”Nej” för att gå tillbaka och avmarkera alternativet.\n" +"Annars, om du väljer ”Ja”, godkänner du att hela ansvaret för eventuell dataförlust ligger på DIG." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Platsen för avbilden stöds inte" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Du kan inte använda en avbildning som ligger på målenheten, eftersom den enheten kommer att raderas helt. Det är som att försöka såga av grenen du sitter på!\n" +"\n" +"Flytta avbildningen till en annan plats och försök igen." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Det är säkert att lämna det här alternativet aktiverat även om du har en TPM eller mer RAM, eftersom det endast kringgår installationskraven och inte hindrar Windows från att använda all tillgänglig hårdvara." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "För att det här alternativet ska fungera måste nätverket/Internet vara frånkopplat under installationen!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Svara automatiskt ’nej’ på Windows‑installationsfrågorna som rör delning av data med Microsoft, i stället för att fråga användaren." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Du bör lämna det här alternativet aktiverat, om du inte är okej med att ’Windows To Go’ får åtkomst till interna diskar och tyst utför oåterkalleliga filsystemuppgraderingar." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Skapa automatiskt ett lokalt konto med det angivna användarnamnet, med ett tomt lösenord som måste ändras vid nästa inloggning." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Duplicera de regionala inställningarna från den här datorn (tangentbord, tidszon, valuta) i stället för att fråga användaren." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Kryptera inte systemdisken, om det inte uttryckligen begärs av användaren." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Använd det här alternativet endast om du vet vad S‑läge är och förstår att ditt system kan låsas i S‑läge även efter att du helt har raderat och installerat om Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Använd det här alternativet om systemet du planerar att installera Windows på använder helt uppdaterade Secure Boot‑certifikat. Vid behov kan du använda ’Mosby’ för att uppdatera systemet." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Använd det här alternativet om du vill återkalla ytterligare potentiellt osäkra Windows‑startprogram, men med risken att även förhindra att standard‑Windowsmedia kan starta." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Förbättringar för bättre användarupplevelse: Inaktivera de flesta av de oönskade funktioner som Microsoft försöker tvinga på slutanvändare." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Om du använder det här alternativet måste du se till att koppla bort alla diskar från måldatorn, förutom den du vill installera Windows på, och inte lämna mediet anslutet till någon dator som du inte vill radera." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/th-TH.po b/res/loc/po/th-TH.po index d89a4503..389ed973 100644 --- a/res/loc/po/th-TH.po +++ b/res/loc/po/th-TH.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-26 10:51+0700\n" -"PO-Revision-Date: 2024-04-26 18:32+0700\n" +"POT-Creation-Date: 2026-03-22 11:42+0700\n" +"PO-Revision-Date: 2026-03-22 14:37+0700\n" "Last-Translator: \n" "Language-Team: \n" "Language: th_TH\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Thai (ไทย)\n" "X-Rufus-LCID: 0x041e\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -573,9 +573,9 @@ msgstr "" "ซึ่งอาจทำให้เมนูการบูตไม่สามารถแสดงผลได้ถูกต้อง\n" "\n" "Rufus สามารถดาวน์โหลดเวอร์ชันที่ใหม่กว่าให้คุณได้:\n" -"- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" -"- เลือก 'No' เพื่อใช้อิมเมจไฟล์อันเดิม\n" -"หากไม่รู้จะเลือกวิธีใด ให้เลือก 'Yes'\n" +"- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" +"- เลือก 'ไม่ใช่ (No)' เพื่อใช้อิมเมจไฟล์อันเดิม\n" +"หากไม่รู้จะเลือกวิธีใด ให้เลือก 'ใช่ (Yes)'\n" "\n" "หมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และเมื่อไฟล์ '%s มีแล้ว ไฟล์จะถูกเลือกใช้โดยอัตโนมัติ" @@ -700,8 +700,8 @@ msgstr "" "เนื่องจากไฟล์นี้มีขนาดใหญ่กว่า 100 KB และพบเจอได้ใน ISO: %s ซึ่งไม่ได้รวมไว้ในโปรแกรม Rufus\n" "\n" "Rufus สามารถดาวน์โหลดไฟล์ดังกล่าวให้คุณได้:\n" -"- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" -"- เลือก 'No' คุณต้องการคัดลอกไฟล์ดังกล่าวด้วยตัวเอง\n" +"- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" +"- เลือก 'ไม่ใช่ (No)' คุณต้องการคัดลอกไฟล์ดังกล่าวด้วยตัวเอง\n" "\n" "หมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และเมื่อไฟล์ '%s มีแล้ว ไฟล์จะถูกเลือกใช้โดยอัตโนมัติ" @@ -767,8 +767,8 @@ msgstr "" "อิมเมจนี้ใช้ Syslinux %s%s แต่โปรแกรมนี้มีเฉพาะไฟล์ติดตั้งของ Syslinux %s%s \n" "\n" "โดยเวอร์ชันใหม่ของ Syslinux อาจไม่รองรับกับรุ่นที่ต่างกันไปไฟล์จำนวน 2 ไฟล์ต่อไปนี้จะถูกดาวน์โหลดจากอินเทอร์เน็ต ('ldlinux.sys' and 'ldlinux.bss'):\n" -"- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" -"- เลือก 'No' เมื่อคุณต้องการคัดลอกไฟล์ดังกล่าวด้วยตัวเอง\n" +"- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" +"- เลือก 'ไม่ใช่ (No)' เมื่อคุณต้องการคัดลอกไฟล์ดังกล่าวด้วยตัวเอง\n" "\n" "หมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และไฟล์ จะถูกเลือกใช้โดยอัตโนมัติ" @@ -793,9 +793,9 @@ msgstr "" "อิมเมจนี้ใช้ Grub %s แต่โปรแกรมนี้มีเฉพาะไฟล์ติดตั้งของ Grub %s \n" "\n" "โดยเวอร์ชันใหม่ของ Grub อาจไม่รองรับกับรุ่นที่ต่างกันไป Rufus สามารถค้นหาอิมเมจของ Grub เวอร์ชันล่าสุด ('core.img') ที่เข้ากันได้กับอิมเมจไฟล์ที่คุณเลือก:\n" -"- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" -"- เลือก 'No' เพื่อใช้เวอร์ชันปัจจุบันที่ติดมากับ Rufus\n" -"-เลือก 'Cancel' เพื่อยกเลิกการดำเนินการนี้\n" +"- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" +"- เลือก 'ไม่ใช่ (No)' เพื่อใช้เวอร์ชันปัจจุบันที่ติดมากับ Rufus\n" +"-เลือก 'ยกเลิก (Cancel)' เพื่อยกเลิกการดำเนินการนี้\n" "\n" "หมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และไฟล์จะถูกเลือกใช้โดยอัตโนมัติหากไม่พบไฟล์ที่ใหม่กว่า ไฟล์เวอร์ชันปัจจุบันจะถูกใช้แทน" @@ -846,7 +846,7 @@ msgstr "ไม่มี Persistent" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "ตั้งค่าขนาดของพาร์ติชันสำหรับ Live USB media (ตั้งขนาดเป็น 0 เพื่อปิดการทำงานของ persistent partition)" @@ -888,7 +888,7 @@ msgstr "ไดรฟ์นี้กำลังถูกใช้งานอย #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -1796,6 +1796,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "ไม่สามารถเปิดหรืออ่าน '%s' ได้" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "เปิดใช้งาน SkuSiPolicy.p7b ในการติดตั้ง (ดูที่ KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "การปรับปรุงคุณภาพการใช้งาน/QoL (ยกเลิกการบังคับใช้: Copilot, OneDrive, Outlook, Fast Startup, เป็นต้น)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "ปรับใช้งานการปรับแต่งขั้นตอนการติดตั้ง Windows: %s" @@ -1846,15 +1854,15 @@ msgstr "Log แบบถาวร" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"มีความจำเป็นต้องดาวน์โหลดไฟล์ ('diskcopy.dll') จาก Microsoft เพื่อติดตั้ง MS-DOS:\n" -"- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" -"- เลือก 'No' เพื่อยกเลิก\n" +"มีความจำเป็นต้องดาวน์โหลดไฟล์ ('%s') จาก Microsoft เพื่อใช้ฟีเจอร์นี้:\n" +"- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" +"- เลือก 'ไม่ใช่ (No)' เพื่อยกเลิก\n" "\n" "หมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และเมื่อไฟล์ '%s มีแล้ว ไฟล์จะถูกเลือกใช้โดยอัตโนมัติ" @@ -1892,7 +1900,7 @@ msgstr "อิมเมจ VHDX ที่ไม่บีบอัด" #. • MSG_344 msgid "Full Flash Update Image" -msgstr "" +msgstr "ไฟล์อิมเมจสำหรับ Full Flash Update" #. • MSG_345 msgid "" @@ -1901,8 +1909,8 @@ msgid "" "- Select 'No' to cancel the operation" msgstr "" "มีความจำเป็นต้องดาวน์โหลดข้อมูลเพิ่มเติมจาก Microsoft เพื่อใช้งานฟังก์ชั่นนี้:\n" -"- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" -"- เลือก 'No' เพื่อยกเลิก" +"- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" +"- เลือก 'ไม่ใช่ (No)' เพื่อยกเลิก" #. • MSG_346 msgid "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" @@ -1920,6 +1928,118 @@ msgstr "กำลังแตกไฟล์: %s" msgid "Use Rufus MBR" msgstr "Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "ใช้งานบูตโหลดเดอร์ที่รับรองโดย 'Windows CA 2023' (ตัวเครื่องคอมพิวเตอร์ปลายทางต้องรองรับด้วย)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "กำลังตรวจสอบการเพิกถอนสิทธิ์ของบูตโหลดเดอร์แบบ UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "กำลังตรวจสอบการอัปเดตรายการเพิกถอนสิทธิ์ของ UEFI (DBX)..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "มีการอัปเดตรายการเพิกถอนสิทธิ์ (DBX) พร้อมใช้งานแล้ว" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus ตรวจเจอเวอร์ชั่นอัพเดตที่ใหม่กว่าของไฟล์ DBX ซึ่งใช้สำหรับตรวจสอบการเพิกถอนสิทธิ์ของ UEFI Secure Boot คุณต้องการดาวน์โหลดไฟล์อัพเดตหรือไม่?\n" +"- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n" +"- เลือก 'ไม่ใช่ (No)' เพื่อยกเลิกการดำเนินการ\n" +"\n" +"หมายเหตุ: ไฟล์จะถูกดาวน์โหลดลงในไดเรกทอรีของแอปพลิเคชัน และจะถูกนำกลับมาใช้ใหม่โดยอัตโนมัติหากมีไฟล์อยู่แล้ว" + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠จะไม่มีการถามยืนยันซ้ำ⚠ ลบข้อมูลดิสก์ แล้วติดตั้ง:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"คุณเลือกที่จะใช้งานตัวเลือก การติดตั้ง Windows \"แบบเงียบ\"\n" +"\n" +"นี่คือตัวเลือกขั้นสูง ซึ่งสงวนไว้สำหรับผู้ที่ต้องการสร้างสื่อติดตั้งที่จะไม่ถามผู้ใช้ในระหว่างการติดตั้ง Windows ดังนั้นมันจะลบข้อมูลในดิสก์ตัวแรกที่ตรวจพบในระบบปลายทาง **โดยไม่มีเงื่อนไข** หากคุณไม่ระมัดระวัง การใช้ตัวเลือกนี้อาจส่งผลให้ **เกิดการสูญเสียข้อมูลอย่างถาวรและไม่สามารถกู้คืนได้!**\n" +"\n" +"หากนี่ไม่ใช่สิ่งที่คุณต้องการ โปรดเลือก 'ไม่ใช่ (No)' เพื่อย้อนกลับและยกเลิกการเลือกตัวเลือกดังกล่าว\n" +"มิฉะนั้น หากคุณเลือก 'ใช่ (Yes)' คุณยอมรับว่าความรับผิดชอบทั้งหมดต่อการสูญหายของข้อมูลใดๆ จะตกอยู่ที่ตัวคุณแต่เพียงผู้เดียว" + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "ไม่รองรับตำแหน่งที่ตั้งของไฟล์อิมเมจ" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"คุณไม่สามารถใช้ไฟล์อิมเมจที่อยู่ในไดรฟ์เป้าหมายได้ เนื่องจากไดรฟ์นั้นกำลังจะถูกลบข้อมูลทั้งหมด มันก็เหมือนกับการพยายามทำลายที่มั่นตัวเองอยู่นั่นแหละ!\n" +"\n" +"โปรดย้ายอิมเมจไปยังตำแหน่งอื่นแล้วลองใหม่อีกครั้ง" + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "การเปิดตัวเลือกนี้ทิ้งไว้มีความปลอดภัย ถึงแม้ว่าคุณจะมี TPM หรือแรมที่มากกว่าก็ตาม ตัวเลือกนี้มีผลแค่การข้าม ข้อกำหนดในการติดตั้ง เท่านั้น ไม่ได้ลดทอนการทำงานของ Windows ในการดึงประสิทธิภาพฮาร์ดแวร์มาใช้อย่างเต็มที่" + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "เพื่อให้ตัวเลือกนี้ทำงานได้ จะต้องปิดการเชื่อมต่อเครือข่าย/อินเทอร์เน็ตขณะทำการติดตั้งก่อน" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "ตอบ 'ไม่ใช่ (no)' โดยอัตโนมัติ สำหรับคำถามในการตั้งค่า Windows ที่เกี่ยวกับการแชร์ข้อมูลให้กับ Microsoft โดยไม่ต้องเด้งถามผู้ใช้" + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "คุณควรจะเปิดตัวเลือกนี้ทิ้งไว้ ยกเว้นว่าคุณจะยอมรับได้หาก 'Windows To Go' เข้าถึงดิสก์ภายในเครื่อง และทำการอัปเกรดระบบไฟล์โดยอัตโนมัติ ซึ่งเป็นการดำเนินการที่ไม่สามารถย้อนกลับได้" + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "สร้างบัญชีผู้ใช้ภายในเครื่อง (Local account) ตามชื่อที่ระบุโดยอัตโนมัติ ซึ่งจะไม่มีรหัสผ่าน และอาจจะต้องเปลี่ยนรหัสเมื่อเข้าสู่ระบบครั้งถัดไป" + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "คัดลอกการตั้งค่าภูมิภาคจากพีซีปัจจุบัน (ภาษาแป้นพิมพ์, โซนเวลา, สกุลเงิน, ฯลฯ) โดยไม่ต้องเด้งถามผู้ใช้" + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "อย่าเข้ารหัสดิสก์ระบบ นอกเหนือจากว่าจะเป็นผู้ใช้งานจะเป็นผู้สั่งให้เข้ารหัสเอง" + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "โปรดใช้ตัวเลือกนี้เฉพาะในกรณีที่คุณทราบว่า S-Mode คืออะไร และเข้าใจว่าระบบของคุณอาจถูกล็อกให้อยู่ใน S-Mode ต่อไป แม้ว่าคุณจะทำการล้างข้อมูลทั้งหมดและติดตั้ง Windows ใหม่แล้วก็ตาม" + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "ใช้ตัวเลือกนี้หากระบบที่คุณต้องการติดตั้ง Windows มีการใช้ใบรับรอง Secure Boot ที่อัปเดตเป็นเวอร์ชันล่าสุดแล้ว หากจำเป็น คุณสามารถศึกษาการใช้เครื่องมือ 'Mosby' เพื่อทำการอัปเดตระบบของคุณได้" + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "ใช้ตัวเลือกนี้หากคุณต้องการเพิกถอนสิทธิ์บูตโหลดเดอร์ของ Windows เพิ่มเติมที่อาจจะไม่ปลอดภัย แต่โปรดทราบว่ามีความเสี่ยงที่จะทำให้สื่อติดตั้ง Windows มาตรฐานทั่วไปไม่สามารถบูตได้ด้วยเช่นกัน" + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"การปรับปรุงคุณภาพการใช้งาน (Quality of Life)\": ปิดการใช้งานคุณสมบัติส่วนใหญ่ที่ไม่พึงประสงค์ที่ Microsoft พยายามบังคับให้ผู้ใช้งานทั่วไปต้องใช้" + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "ถ้าหากคุณเลือกตัวเลือกนี้ กรุณาเช็คให้มั่นใจว่าคุณถอดดิสก์ที่เชื่อมกับพีซีเป้าหมาย เหลือไว้เฉพาะดิสก์ที่คุณต้องการจะติดตั้ง Windows เท่านั้น และห้ามเสียบตัวติดตั้ง (เช่น แฟลชไดรฟ์) ทิ้งไว้ในคอมพิวเตอร์เครื่องใดก็ตามที่คุณไม่ต้องการให้ข้อมูลถูกลบ\"" + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/tr-TR.po b/res/loc/po/tr-TR.po index 27dd91de..1b4d7b96 100644 --- a/res/loc/po/tr-TR.po +++ b/res/loc/po/tr-TR.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-28 09:05+0300\n" -"PO-Revision-Date: 2024-04-28 09:32+0300\n" +"POT-Creation-Date: 2026-03-23 20:10+0300\n" +"PO-Revision-Date: 2026-03-25 16:24+0000\n" "Last-Translator: \n" "Language-Team: \n" "Language: tr_TR\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Turkish (Türkçe)\n" "X-Rufus-LCID: 0x041F\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "TB" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "PB" @@ -846,7 +846,7 @@ msgstr "Kalıcı bölüm yok" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Canlı USB ortamı için kalıcı disk bölümünün boyutunu ayarlayın. Boyutu 0 olarak ayarlamak, kalıcı bölümü devre dışı bırakır." @@ -888,17 +888,17 @@ msgstr "Başka bir program ya da işlem bu sürücüye erişiyor. Yine de biçim #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus, 1809 ISO tabanlı bir Windows To Go ortamı oluşturmaya çalıştığınızı algıladı.\n" +"Rufus, 1809 ISO'suna dayalı bir 'Windows To Go' medyası oluşturmaya çalıştığınızı algıladıi.\n" "\n" -"Bir *MICROSOFT HATASI* nedeniyle, 'WppRecorder.sys' dosyasını 1803 sürümüyle el ile değiştirmediğiniz sürece, bu medya Windows açılışında (Ölü Mavi Ekran) çökecektir.\n" +"*Bir MICROSOFT HATASI* nedeniyle, 'WppRecorder.sys' dosyasının 1803 sürümünündekini el ile değiştirmediğiniz sürece bu medya Windows önyüklemesi sırasında çökecektir (Mavi Ekran Hatası).\n" "\n" -"Ayrıca, Rufus'un bunu sizin için otomatik olarak çözememesinin nedeninin 'WppRecorder.sys' dosyasının Microsoft'un telif hakkı olan bir dosya olduğunu ve bu nedenle dosyanın yasal olarak bir kopyasını uygulamaya koyamayacağımızı unutmayın..." +"Ayrıca, Rufus'un bunu sizin için otomatik olarak düzeltememesinin nedeni, 'WppRecorder.sys' dosyasının Microsoft'un telif hakkıyla korunan bir dosyası olması ve bu nedenle dosyanın bir kopyasını uygulamaya yasal olarak yerleştiremememizdir..." #. • MSG_134 msgid "" @@ -1795,6 +1795,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "'%s' açılamıyor veya okunamıyor" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "SkuSiPolicy.p7b yükleme sırasında uygulansın (Bakınız KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "QoL(Yaşam Kalitesi) iyileştirmeleri (Copilot, OneDrive, Outlook, Hızlı Başlat vb. dayatılmasın)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Windows özelleştirmesi uygulanıyor: %s" @@ -1845,13 +1853,13 @@ msgstr "Kalıcı günlük" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"MS-DOS'u yüklemek için Microsoft'tan ek bir dosyanın ('diskcopy.dll') indirilmesi gerekir:\n" +"Bu özelliği kullanmak için Microsoft'tan ek bir dosyanın ('%s') indirilmesi gerekmektedir:\n" "- İnternete bağlanıp indirmek için 'Evet'i seçin\n" "- İşlemden vazgeçmek için 'Hayır'ı seçin\n" "\n" @@ -1919,6 +1927,118 @@ msgstr "Arşiv dosyaları çıkarılıyor: %s" msgid "Use Rufus MBR" msgstr "Rufus MBR'yi kullanın" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "'Windows CA 2023' imzalı önyükleyicileri kullanılsın (Uyumlu bir hedef bilgisayar gerektirir)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "UEFI önyükleyicisinin etkinlik durumu kontrol ediliyor..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "UEFI DBX güncellemeleri kontrol ediliyor..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "DBX güncellemesi mevcut" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus, UEFI Güvenli Önyükleme etkinlik durum kontrollerini gerçekleştirmek için kullanılan DBX dosyalarının güncellenmiş bir sürümünü buldu. Bu güncellemeyi indirmek ister misiniz?\n" +"- İnternete bağlanmak ve bu içeriği indirmek için 'Evet'i seçin\n" +"- İşlemden vazgeçmek için 'Hayır'ı seçin\n" +"\n" +"Not: Dosyalar uygulamanın dizinine indirilecek ve mevcutsa otomatik olarak yeniden kullanılacaktır." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠SESSİZCE⚠ diski silin ve yükleyin:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"\"silent\" Katılımsız Windows kurulum seçeneğini kullanmayı seçtiniz.\n" +"\n" +"Bu, Windows kurulumu sırasında kullanıcıya sorulmayan ve bu nedenle hedef sistemdeki ilk algılanan diski KOŞULSUZ OLARAK SİLEN bir ortam oluşturmak isteyenler için ayrılmış gelişmiş bir seçenektir. Dikkatli olmazsanız, bu seçeneği kullanmak GERİ DÖNÜŞÜ OLMAYAN VERİ KAYBINA neden olabilir!\n" +"\n" +"Bunu istemiyorsanız, geri dönmek ve seçeneğin işaretini kaldırmak için lütfen 'Hayır'ı seçin.\n" +"Aksi takdirde, 'Evet'i seçerseniz, herhangi bir veri kaybından doğacak tüm sorumluluğun tamamen SİZDE olacağınıı kabul etmiş olursunuz." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Desteklenmeyen yansı konumu" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Hedef sürücüde bulunan bir yansıyı, sürücü tamamen silineceğinden dolayı kullanamazsınız. Bu, oturduğunuz dalı kesmeye çalışmakla aynı şey!\n" +"\n" +"Lütfen yansıyı farklı bir konuma taşıyın ve yeniden deneyin." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "TPM veya daha fazla RAM'iniz olsa bile bu seçeneği etkin bırakmak güvenlidir, çünkü bu seçenek yalnızca kurulum gereksinimlerini atlar ve Windows'un mevcut tüm donanımı kullanmasını fiilen engellemez." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Bu seçeneğin çalışması için kurulum sırasında Ağ/Internet bağlantısının KESİLMESİ GEREKMEKTEDİR!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Windows kurulumunda Microsoft ile veri paylaşımıyla ilgili sorulara kullanıcıya sormak yerine otomatik olarak 'hayır' yanıtını verilsin." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "'Windows To Go'nun dahili disklere erişmesine ve geri döndürülemez dosya sistemi yükseltmeleri gerçekleştirmesine istemiyorsanız, bu seçeneği etkin bırakmalısınız." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Belirtilen kullanıcı adıyla otomatik olarak yerel bir hesap oluşturur; bu hesapta, bir sonraki oturum açmada değiştirilmesi gerekecek boş bir parola kullanılacaktır." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Kullanıcıdan onay istemek yerine, bu bilgisayardaki bölgesel ayarları (klavye, saat dilimi, para birimi) kopyalansın." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Kullanıcı tarafından özellikle tercih edilmediği sürece sistem diskini şifrelemeyin." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Bu seçeneği yalnızca S-Modu'nun ne olduğunu biliyorsanız ve Windows'u tamamen silip yeniden yükledikten sonra bile sisteminizin S-Modu'nda kilitli kalabileceğini anlıyorsanız kullanın." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Windows'u kurmayı planladığınız sistemde tamamen güncel Güvenli Önyükleme sertifikaları kullanılıyorsa bu seçeneği kullanın. Gerekirse, sisteminizi güncellemek için 'Mosby'yi kullanmayı düşünebilirsiniz." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Potansiyel olarak güvenli olmayan ek Windows önyükleme yükleyicilerinden vazgeçmek istiyorsanız, ancak bu işlem standart Windows medyalarının önyüklemesini de engelleme olasılığı varsa bu seçeneği kullanın." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "\"Yaşam Kalitesi\" iyileştirmeleri: Microsoft'un son kullanıcılara zorla dayatmaya çalıştığı istenmeyen özelliklerin çoğunu devre dışı bırakın." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Bu seçeneği kullanıyorsanız, lütfen Windows'u kurmak istediğiniz disk dışındaki, hedef bilgisayardaki tüm diskleri çıkarın ve silmek istemediğiniz hiçbir bilgisayara disk takılı bırakmayın." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/uk-UA.po b/res/loc/po/uk-UA.po index dc93bf4b..2fdeaa56 100644 --- a/res/loc/po/uk-UA.po +++ b/res/loc/po/uk-UA.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-07-23 23:38+0300\n" -"PO-Revision-Date: 2024-07-23 23:42+0300\n" +"POT-Creation-Date: 2026-04-03 21:31+0300\n" +"PO-Revision-Date: 2026-04-10 21:29+0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: uk_UA\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Ukrainian (Українська)\n" "X-Rufus-LCID: 0x0422\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "Тб" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "Пб" @@ -846,7 +846,7 @@ msgstr "Деактивовано" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Встановіть розмір розділу збереження для Live USB-накопичувача. Щоб вимкнути розділ збереження встановіть розмір 0." @@ -888,13 +888,13 @@ msgstr "Інша програма чи процес отримують дост #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." msgstr "" -"Rufus виявив, що ви намагаєтесь створити носій Windows To Go, заснований на версії ISO 1809\n" +"Rufus виявив, що ви намагаєтесь створити носій Windows To Go, заснований на версії ISO 1809.\n" "\n" "Через *ПОМИЛКУ MICROSOFT* цей носій буде припиняти роботу під час завантаження Windows (Синій екран смерті), доки ви вручну не перенесете файл 'WppRecorder.sys' з версії 1803.\n" "\n" @@ -1504,7 +1504,7 @@ msgstr "Видалення каталога '%s'" #. • MSG_265 msgid "VMWare disk detection" -msgstr "Виявлено диск VMWare" +msgstr "Виявлення дисків VMWare" #. • MSG_266 msgid "Dual UEFI/BIOS mode" @@ -1795,6 +1795,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Неможливо відкрити чи прочитати '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Застосувати SkuSiPolicy.p7b під час встановлення (дивись KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Покращення QoL (виключено Copilot, OneDrive, Outlook, Fast Startup, тощо)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Застосування налаштувань Windows: %s" @@ -1845,13 +1853,13 @@ msgstr "Постійний журнал" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Необхідно завантажити додатковий файл ('diskcopy.dll') з сайту Microsoft для встановлення MS-DOS:\n" +"Щоб скористатися цією функцією, необхідно завантажити додатковий файл ('%s') з веб-сайту Microsoft:\n" "- Виберіть 'Так' для з'єднання з інтернетом та його завантаження\n" "- Виберіть 'Ні' для скасування операції\n" "\n" @@ -1919,6 +1927,118 @@ msgstr "Видобування архівованих файлів: %s" msgid "Use Rufus MBR" msgstr "Використовувати Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Використати завантажувач з підписом 'Windows CA 2023' (потребує сумісне обладнання)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Перевірка відкликання завантажувача UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Перевірка оновлень UEFI DBX..." + +#. • MSG_353 +msgid "DBX update available" +msgstr "Доступне оновлення DBX" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus знайшов оновлену версію файлів DBX, що використовуються для перевірки відкликання завантажувача UEFI. Чи хочете ви їх завантажити?\n" +"- Виберіть 'Так', щоб завантажити файл з інтернету\n" +"- Виберіть 'Ні', щоб скасувати операцію\n" +"\n" +"Примітка: Файли будуть завантажені в поточний каталог додатку і будуть використовуватися повторно за необхідності." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠ТИХЕ⚠ видалення та встановлення:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Ви вибрали \"тихе\" встановлення Windows.\n" +"\n" +"Це додаткова опція, призначена для тих, хто хоче створити завантажувальний диск, який не відволікає користувача під час встановлення Windows, тому ПРИМУСОВО СТИРАЄ перший виявлений диск у цільовій системі. Необачне використання цього параметра може привести до БЕЗПОВОРОТНОЇ ВТРАТИ ДАНИХ!\n" +"\n" +"Якщо це не те, чого ви прагнете, будь ласка, виберіть 'Ні', щоб повернутись назад і деактивувати цю опцію.\n" +"В іншому випадку, якщо ви виберете 'Так', - ви ПОВНІСТЮ берете на себе відповідальність за можливу втрату інформації." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Непідтримуване розташування образа" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Ви не можете використовувати образ, що знаходиться на цільовому диску, так як цей диск буде повністю очищено. Як то кажуть \"не розхитуй човна, бо вивернешся\"!\n" +"\n" +"Будь ласка, перемістіть образ в інше місце і спробуйте знову." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Безпечно залишати цю опцію ввімкненою, навіть якщо у вас є TPM чи достатня кількість ОЗП, оскільки ця функція лише обходить вимоги до обладнання та не забороняє Windows використовувати всі наявні ресурси." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Щоб ця опція працювала необхідно вимкнути доступ до інтернету/мережі!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Автоматично відповідати 'ні' на запитання Windows, щодо обміну даними з Microsoft за користувача." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Залиште цю опцію ввімкненою, щоб заборонити 'Windows To Go' доступ до внутрішніх дисків та виконання непомітних безповоротних змін у файловій системі." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Автоматично створити локальний обліковий запис з заданим іменем користувача, використовуючи порожній пароль, який необхідно буде змінити під час наступного входу в систему." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Скопіювати регіональні налаштування з цього ПК (розкладка клавіатури, часовий пояс, валюти) замість того, щоб запитувати користувача." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Не шифрувати системний диск, окрім випадків, коли цього вимагає користувач." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Ввімкніть цю опцію, якщо знаєте, що таке S-Mode та розумієте, що ваша система може бути заблокована в S-Mode навіть після повної очистки та перевстановлення Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Ввімкніть цю опцію, якщо система, на яку ви плануєте встановити Windows має оновлені сертифікати завантажувача. За потреби, ви можете розглянути можливість використання 'Mosby' для оновлення системи." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Ввімкніть цю опцію, якщо хочете відкликати додаткові потенційно небезпечні завантажувачі Windows, але з можливістю також запобігти завантаженню стандартних носіїв Windows." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Покращення \"Quality of Life\": Вимкнення більшості небажаних функцій, які Microsoft намагається нав'язати кінцевому користувачу." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "За використання цієї функції відключіть від ПК будь-які диски за виключенням того, на який ви хочете встановити Windows, а, також, не залишайте носій підключеним до будь-якого ПК, дані з якого ви не хочете стерти." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/vi-VN.po b/res/loc/po/vi-VN.po index a6d8fdbb..f8c66515 100644 --- a/res/loc/po/vi-VN.po +++ b/res/loc/po/vi-VN.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-26 02:45+0900\n" -"PO-Revision-Date: 2024-04-26 03:13+0900\n" +"POT-Creation-Date: 2026-04-22 21:20+0700\n" +"PO-Revision-Date: 2026-04-23 16:15+0100\n" "Last-Translator: \n" "Language-Team: \n" "Language: vi_VN\n" @@ -13,19 +13,19 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Vietnamese (Tiếng Việt)\n" "X-Rufus-LCID: 0x042A\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" -msgstr "Thuộc tính ổ đĩa" +msgstr "Thuộc tính thiết bị lưu" #. • IDD_DIALOG → IDS_DEVICE_TXT msgid "Device" -msgstr "Thiết bị" +msgstr "Thiết bị lưu" #. • IDD_DIALOG → IDS_BOOT_SELECTION_TXT msgid "Boot selection" -msgstr "Phương thức khởi động" +msgstr "Tùy chọn khởi động" #. • IDD_DIALOG → IDC_SELECT msgid "Select" @@ -37,28 +37,28 @@ msgstr "Tùy chọn tệp tin" #. • IDD_DIALOG → IDS_PARTITION_TYPE_TXT msgid "Partition scheme" -msgstr "Định dạng phân vùng" +msgstr "Sơ đồ phân vùng" #. • IDD_DIALOG → IDS_TARGET_SYSTEM_TXT msgid "Target system" -msgstr "Hệ thống áp dụng" +msgstr "Hệ thống khởi động" #. • IDD_DIALOG → IDC_LIST_USB_HDD msgid "List USB Hard Drives" -msgstr "Danh sách ổ cứng USB" +msgstr "Liệt kê danh sách ổ USB" #. • IDD_DIALOG → IDC_OLD_BIOS_FIXES #. #. It is acceptable to drop the parenthesis () if you are running out of space #. as there is a tooltip (MSG_169) providing these details. msgid "Add fixes for old BIOSes (extra partition, align, etc.)" -msgstr "Thêm khắc phục cho BIOS cũ (phân vùng, sắp xếp...khác)" +msgstr "Thêm các bản sửa lỗi cho BIOS cũ (phân vùng phụ, căn lề phân vùng, v.v...)" #. • IDD_DIALOG → IDC_UEFI_MEDIA_VALIDATION #. #. It is acceptable to drop the "runtime" if you are running out of space msgid "Enable runtime UEFI media validation" -msgstr "Bật xác thực phương tiện UEFI tại thời điểm chạy" +msgstr "Bật xác minh thiết bị UEFI trong thời gian chạy" #. • IDD_DIALOG → IDS_FORMAT_OPTIONS_TXT msgid "Format Options" @@ -70,11 +70,11 @@ msgstr "Hệ thống tập tin" #. • IDD_DIALOG → IDS_CLUSTER_SIZE_TXT msgid "Cluster size" -msgstr "Kích thước liên cung" +msgstr "Kích thước cụm" #. • IDD_DIALOG → IDS_LABEL_TXT msgid "Volume label" -msgstr "Nhãn ổ đĩa" +msgstr "Nhãn thiết bị lưu" #. • IDD_DIALOG → IDC_QUICK_FORMAT msgid "Quick format" @@ -82,11 +82,11 @@ msgstr "Định dạng nhanh" #. • IDD_DIALOG → IDC_BAD_BLOCKS msgid "Check device for bad blocks" -msgstr "Kiểm tra khối hỏng trong thiết bị" +msgstr "Kiểm tra lỗi khối trên thiết bị lưu trữ" #. • IDD_DIALOG → IDC_EXTENDED_LABEL msgid "Create extended label and icon files" -msgstr "Tạo tên mở rộng và tập tin biểu tượng" +msgstr "Tạo nhãn mở rộng và tệp tin biểu tượng" #. • IDD_DIALOG → IDS_STATUS_TXT msgid "Status" @@ -115,7 +115,7 @@ msgstr "Giấy phép" #. • IDD_ABOUTBOX → IDOK msgid "OK" -msgstr "OK" +msgstr "" #. • IDD_LICENSE → IDD_LICENSE msgid "Rufus License" @@ -161,7 +161,7 @@ msgstr "Kiểm tra cập nhật" #. • IDD_UPDATE_POLICY → IDS_INCLUDE_BETAS_TXT msgid "Include beta versions" -msgstr "Gồm bản thử nghiệm" +msgstr "Bao gồm bản thử nghiệm" #. • IDD_UPDATE_POLICY → IDC_CHECK_NOW msgid "Check Now" @@ -173,7 +173,7 @@ msgstr "Kiểm tra cập nhật - Rufus" #. • IDD_NEW_VERSION → IDS_NEW_VERSION_AVAIL_TXT msgid "A newer version is available. Please download the latest version!" -msgstr "Đã có phiên bản mới. Vui lòng tải phiên bản mới nhất!" +msgstr "Đã có phiên bản mới hơn. Vui lòng tải phiên bản mới nhất!" #. • IDD_NEW_VERSION → IDC_WEBSITE msgid "Click here to go to the website" @@ -191,7 +191,7 @@ msgstr "Tải xuống" #. • MSG_001 msgid "Other instance detected" -msgstr "Phát hiện tiến trình chạy đồng thời" +msgstr "Đã phát hiện tiến trình chạy đồng thời" #. • MSG_002 msgid "" @@ -199,14 +199,14 @@ msgid "" "Please close the first application before running another one." msgstr "" "Ứng dụng Rufus khác đang chạy.\n" -"Vui lòng đóng ứng dụng đầu tiên trước khi chạy tiếp." +"Vui lòng đóng ứng dụng đầu tiên trước khi chạy một ứng dụng mới." #. • MSG_003 msgid "" "WARNING: ALL DATA ON DEVICE '%s' WILL BE DESTROYED.\n" "To continue with this operation, click OK. To quit click CANCEL." msgstr "" -"CẢNH BÁO: TẤT CẢ DỮ LIỆU TRÊN THIẾT BỊ '%s' SẼ BỊ HUỶ.\n" +"CẢNH BÁO: TẤT CẢ DỮ LIỆU TRÊN THIẾT BỊ '%s' SẼ BỊ XOÁ.\n" "Để tiếp tục tiến trình này, nhấn OK. Để thoát nhấn HUỶ." #. • MSG_004 @@ -215,7 +215,7 @@ msgstr "Chính sách cập nhật Rufus" #. • MSG_005 msgid "Do you want to allow Rufus to check for application updates online?" -msgstr "Bạn có muốn cho phép Rufus kiểm tra cập nhật ứng dụng trực tuyến?" +msgstr "Bạn có muốn cho phép Rufus kiểm tra các bản cập nhật ứng dụng trực tuyến?" #. • MSG_007 msgid "Cancel" @@ -280,45 +280,45 @@ msgstr "Phiên bản mới nhất: %d.%d (Bản dựng %d)" #. • MSG_020 #. • MSG_026 msgid "bytes" -msgstr "bytes" +msgstr "" #. • MSG_021 #. #. *Short* version of the kilobyte size suffix msgid "KB" -msgstr "KB" +msgstr "" #. • MSG_022 #. #. *Short* version of the megabyte size suffix msgid "MB" -msgstr "MB" +msgstr "" #. • MSG_023 #. #. *Short* version of the gigabyte size suffix msgid "GB" -msgstr "GB" +msgstr "" #. • MSG_024 #. #. *Short* version of the terabyte size suffix msgid "TB" -msgstr "TB" +msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" -msgstr "PB" +msgstr "" #. • MSG_027 msgid "kilobytes" -msgstr "kilobytes" +msgstr "" #. • MSG_028 msgid "megabytes" -msgstr "megabytes" +msgstr "" #. • MSG_029 msgid "Default" @@ -346,14 +346,14 @@ msgstr "BIOS hoặc UEFI" #. #. Number of bad block check passes (singular for 1 pass) msgid "%d pass" -msgstr "Qua %d lần" +msgstr "Đạt %d lần" #. • MSG_035 #. #. Number of bad block check passes (plural for 2 or more passes). #. See MSG_087 for the message that %s gets replaced with. msgid "%d passes %s" -msgstr "Qua %d lần %s" +msgstr "Đã đạt %d lần %s" #. • MSG_036 msgid "ISO Image" @@ -373,7 +373,7 @@ msgstr "Khởi chạy" #. • MSG_041 msgid "Operation cancelled by the user" -msgstr "Tiến trình bị huỷ bởi người dùng" +msgstr "Tiến trình đã bị huỷ bởi người dùng" #. • MSG_042 msgid "Error" @@ -403,11 +403,11 @@ msgstr "Đa phân vùng" #. • MSG_048 msgid "Rufus - Flushing buffers" -msgstr "Rufus - Xoá bộ đệm" +msgstr "Rufus - Đang xả bộ đệm" #. • MSG_049 msgid "Rufus - Cancellation" -msgstr "Rufus - Huỷ" +msgstr "Rufus - Hủy bỏ" #. • MSG_050 msgid "Success." @@ -423,15 +423,15 @@ msgstr "Không thể dùng hệ thống tập tin đã chọn cho thiết bị n #. • MSG_053 msgid "Access to the device is denied." -msgstr "Thiết bị từ chối truy cập." +msgstr "Truy cập tới thiết bị đã bị từ chối." #. • MSG_054 msgid "Media is write protected." -msgstr "Thiết bị được bảo vệ ghi." +msgstr "Thiết bị đang được bảo vệ ghi." #. • MSG_055 msgid "The device is in use by another process. Please close any other process that may be accessing the device." -msgstr "Thiết bị đang được dùng bởi tiến trình khác. Vui lòng đóng mọi tiến trình có thể truy cập thiết bị." +msgstr "Thiết bị đang được dùng bởi tiến trình khác. Vui lòng đóng mọi tiến trình có thể đang truy cập thiết bị." #. • MSG_056 msgid "Quick format is not available for this device." @@ -439,23 +439,23 @@ msgstr "Định dạng nhanh không khả dụng với thiết bị này." #. • MSG_057 msgid "The volume label is invalid." -msgstr "Tên ổ đĩa không hợp lệ." +msgstr "Nhãn ổ đĩa không hợp lệ." #. • MSG_058 msgid "The device handle is invalid." -msgstr "Xử lý thiết bị không hợp lệ." +msgstr "Tham chiếu thiết bị không hợp lệ." #. • MSG_059 msgid "The selected cluster size is not valid for this device." -msgstr "Kích cỡ liên cung đã chọn không thích hợp với thiết bị này." +msgstr "Kích thước cụm đã chọn không hợp lệ với thiết bị này." #. • MSG_060 msgid "The volume size is invalid." -msgstr "Kích cỡ ổ đĩa không hợp lệ." +msgstr "Kích cỡ thiết bị không hợp lệ." #. • MSG_061 msgid "Please insert a removable media in drive." -msgstr "Vui lòng kết nối ổ gắn ngoài vào." +msgstr "Vui lòng cắm thiết bị lưu trữ di động vào ổ." #. • MSG_062 msgid "An unsupported command was received." @@ -483,11 +483,11 @@ msgstr "Không thể mở thiết bị. Có thể nó đang được tiến trì #. • MSG_068 msgid "Could not partition drive." -msgstr "Không thể phân vùng ổ đĩa." +msgstr "Không thể phân vùng thiết bị." #. • MSG_069 msgid "Could not copy files to target drive." -msgstr "Không thể chép tập tin vào đĩa." +msgstr "Không thể sao chép tệp vào thiết bị đích." #. • MSG_070 msgid "Cancelled by user." @@ -521,11 +521,11 @@ msgstr "Không thể vá/cài đặt tập tin cho việc khởi động." #. • MSG_077 msgid "Unable to assign a drive letter." -msgstr "Không thể định ký tự ổ đĩa." +msgstr "Không thể gán ký tự ổ đĩa." #. • MSG_078 msgid "Can't mount GUID volume." -msgstr "Không thể gắn kết ổ GUID." +msgstr "Không thể gắn kết phân vùng GUID." #. • MSG_079 msgid "The device is not ready." @@ -539,11 +539,11 @@ msgid "" "\n" "We recommend that you let Windows finish, to avoid corruption. But if you grow tired of waiting, you can just unplug the device..." msgstr "" -"Rufus đã phát hiện Windows vẫn đang làm sạch bộ đệm bên trong thiết bị USB.\n" +"Rufus đã phát hiện Windows vẫn đang xả bộ đệm bên trong thiết bị USB.\n" "\n" -"Tuỳ thuộc vào tốc độ của thiết bị USB, hoạt động này có thể mất một thời gian dài để hoàn tất, đặc biệt với những tập tin lớn.\n" +"Tuỳ thuộc vào tốc độ thiết bị USB của bạn, hoạt động này có thể mất một thời gian dài để hoàn tất, đặc biệt với những tập tin lớn.\n" "\n" -"Chúng tôi khuyên bạn nên để Windows kết thúc để phòng hỏng dữ liệu. Nhưng nếu bạn cảm thấy quá lâu, hãy cứ tháo thiết bị ra..." +"Chúng tôi khuyên rằng bạn nên để Windows kết thúc để phòng hỏng dữ liệu. Nhưng nếu bạn cảm thấy quá lâu, hãy cứ tháo thiết bị ra..." #. • MSG_081 msgid "Unsupported image" @@ -551,7 +551,7 @@ msgstr "Tệp tin không được hỗ trợ" #. • MSG_082 msgid "This image is either non-bootable, or it uses a boot or compression method that is not supported by Rufus..." -msgstr "Tệp này không có khả năng khởi động hoặc sử dụng một phương thức khởi động hoặc nén không được Rufus hỗ trợ..." +msgstr "Tệp này không có khả năng khởi động hoặc sử dụng một tuỳ chọn khởi động hoặc nén không được Rufus hỗ trợ..." #. • MSG_083 msgid "Replace %s?" @@ -585,7 +585,7 @@ msgstr "Đang tải xuống %s" #. • MSG_086 msgid "No image selected" -msgstr "Chưa chọn tệp tin" +msgstr "Chưa tệp tin nào được chọn" #. • MSG_087 #. @@ -604,7 +604,7 @@ msgstr "Tệp tin quá lớn" #. • MSG_089 msgid "The image is too big for the selected target." -msgstr "Tệp tin quá lớn cho đĩa đã chọn." +msgstr "Tệp tin quá lớn cho thiết bị đích đã chọn." #. • MSG_090 msgid "Unsupported ISO" @@ -612,7 +612,7 @@ msgstr "ISO không được hỗ trợ" #. • MSG_091 msgid "When using UEFI Target Type, only EFI bootable ISO images are supported. Please select an EFI bootable ISO or set the Target Type to BIOS." -msgstr "Khi dùng loại hệ thống là UEFI, chỉ có tệp ISO có thể khởi động với EFI được hỗ trợ. Vui lòng chọn tệp phù hợp hoặc chọn loại hệ thống là BIOS." +msgstr "Khi sử dụng kiểu hệ thống khởi động UEFI, chỉ hỗ trợ các tệp ISO có khả năng khởi động bằng EFI. Vui lòng chọn một tệp ISO có hỗ trợ EFI hoặc chuyển kiểu hệ thống khởi động sang BIOS." #. • MSG_092 msgid "Unsupported filesystem" @@ -638,7 +638,7 @@ msgstr "Tệp tin DD" #. • MSG_096 msgid "The file system currently selected can not be used with this type of ISO. Please select a different file system or use a different ISO." -msgstr "Không thể dùng loại ISO này với hệ thống tập tin đã chọn. Vui lòng chọn một hệ thống tập tin hoặc ISO khác." +msgstr "Không thể dùng loại ISO này với hệ thống tập tin đã chọn. Vui lòng chọn một hệ thống tập tin hoặc chọn tệp ISO khác." #. • MSG_097 msgid "'%s' can only be applied if the file system is NTFS." @@ -652,11 +652,11 @@ msgid "" "\n" "Note: The 'FIXED/REMOVABLE' attribute is a hardware property that can only be changed using custom tools from the drive manufacturer. However those tools are ALMOST NEVER provided to the public..." msgstr "" -"QUAN TRỌNG: Bạn đang cố cài đặt 'Windows To Go', nhưng ổ đĩa không có thuộc tính 'CỐ ĐỊNH'. Vì vậy, Windows có thể sẽ đóng băng tại điểm khởi động, do Microsoft không thiết kế nó để chạy với ổ đĩa có thuộc tính 'CÓ THỂ THÁO ĐƯỢC'. \n" +"QUAN TRỌNG: Bạn đang cố cài đặt Windows To Go, nhưng ổ đĩa đích của bạn không có thuộc tính “CỐ ĐỊNH” (FIXED). Do đó, Windows có thể bị treo khi khởi động, vì Microsoft không thiết kế Windows To Go để hoạt động với ổ đĩa có thuộc tính “THÁO RỜI” (REMOVABLE).\n" "\n" -"Bạn vẫn muốn tiến hành?\n" +"Bạn có chắc chắn muốn tiếp tục không?\n" "\n" -"Ghi chú: Thuộc tính 'CỐ ĐỊNH/CÓ THỂ THÁO ĐƯỢC' là một thuộc tính phần cứng chỉ có thể thay đổi bằng các công cụ tuỳ chỉnh từ nhà sản xuất ổ đĩa. Tuy nhiên những công cụ này HẦU NHƯ KHÔNG BAO GIỜ được cung cấp công khai..." +"Lưu ý: Thuộc tính “CỐ ĐỊNH/THÁO RỜI” là một đặc điểm phần cứng và chỉ có thể thay đổi bằng công cụ đặc biệt từ nhà sản xuất ổ đĩa. Tuy nhiên, những công cụ này HẦU NHƯ KHÔNG bao giờ được cung cấp cho người dùng phổ thông..." #. • MSG_099 msgid "Filesystem limitation" @@ -697,7 +697,7 @@ msgid "" "Note: The file will be downloaded in the current directory and once a '%s' exists there, it will be reused automatically." msgstr "" "%s hoặc mới hơn yêu cầu tập tin '%s' được cài đặt.\n" -"Vì tập tin này lớn hơn 100 KB, và luôn có trong ảnh ISO %s, nó không được kèm theo trong Rufus.\n" +"Vì tập tin này lớn hơn 100 KB, và luôn có trong các tệp ISO %s, nó không được kèm theo trong Rufus.\n" "\n" "Rufus có thể tải xuống tập tin còn thiếu cho bạn:\n" "- Chọn 'Có' để kết nối với Internet và tải tập tin\n" @@ -737,12 +737,12 @@ msgid "" "MS-DOS cannot boot from a drive using a 64 kilobytes Cluster size.\n" "Please change the Cluster size or use FreeDOS." msgstr "" -"MS-DOS không thể khởi động từ ổ đĩa dùng kích thước liên cung 64 kilobytes.\n" -"Vui lòng thay đổi kích thước liên cung hoặc dùng FreeDOS." +"MS-DOS không thể khởi động từ ổ đĩa có kích thước cụm là 64 kilobyte.\n" +"Vui lòng thay đổi kích thước cụm hoặc sử dụng FreeDOS thay thế." #. • MSG_111 msgid "Incompatible Cluster size" -msgstr "Kích thước liên cung không tương thích" +msgstr "Kích thước cụm không tương thích" #. • MSG_112 #. @@ -809,7 +809,7 @@ msgstr "Cài đặt Windows tiêu chuẩn" #. http://en.wikipedia.org/wiki/Windows_To_Go in your language. #. Otherwise, you may add a parenthesis eg. "Windows To Go ()" msgid "Windows To Go" -msgstr "Windows To Go" +msgstr "" #. • MSG_119 msgid "advanced drive properties" @@ -846,7 +846,7 @@ msgstr "Không cố định" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "Đặt kích thước phân vùng cố định cho live USB. Đặt kích thước là 0 để bỏ phân vùng cố định." @@ -884,11 +884,11 @@ msgstr "" #. • MSG_132 msgid "Another program or process is accessing this drive. Do you want to format it anyway?" -msgstr "Có một chương trình hoặc tiến trình nào đó đang truy cập ổ. Bạn vẫn muốn định dạng ổ đĩa?" +msgstr "Có một chương trình hoặc tiến trình khác đang truy cập ổ. Bạn vẫn muốn định dạng ổ đĩa?" #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -896,7 +896,7 @@ msgid "" msgstr "" "Rufus nhận thấy bạn đang cố gắng tạo ổ đĩa Windows To Go dựa vào ISO phiên bản 1809.\n" "\n" -"Bởi vì một *LỖI CỦA MICROSOFT*, ổ đĩa này sẽ bị lỗi trong quá trình khởi động Windows (Màn hình xanh chết chóc), trừ khi bạn thay thế thủ công file 'WppRecorder.sys' của phiên bản 1803.\n" +"Bởi vì một *LỖI CỦA MICROSOFT*, ổ đĩa này sẽ bị lỗi trong quá trình khởi động Windows (Màn hình xanh chết chóc), trừ khi bạn tự tay thay thế file 'WppRecorder.sys' của phiên bản 1803.\n" "\n" "Cũng xin lưu ý rằng Rufus không thể tự động sửa lỗi này vì file 'WppRecorder.sys' thuộc bản quyền của Microsoft, vì vậy chúng tôi không thể nhúng file này vào chương trình..." @@ -1014,11 +1014,11 @@ msgstr "" #. • MSG_160 msgid "Toggle advanced options" -msgstr "Bật/tắt tuỳ chọn nâng cao" +msgstr "Bật/tắt các tuỳ chọn nâng cao" #. • MSG_161 msgid "Check the device for bad blocks using a test pattern" -msgstr "Kiểm tra khối hỏng bằng mẫu thử" +msgstr "Kiểm tra thiết bị tìm khối lỗi bằng mẫu kiểm tra" #. • MSG_162 msgid "Uncheck this box to use the \"slow\" format method" @@ -1054,7 +1054,7 @@ msgstr "" #. • MSG_170 msgid "Enable the listing of USB Hard Drive enclosures. USE AT YOUR OWN RISKS!!!" -msgstr "Kích hoạt liệt kê ổ cứng USB trong máy. DÙNG CẨN TRỌNG!!!" +msgstr "Bật hiển thị các ổ cứng gắn ngoài qua USB. TỰ CHỊU RỦI RO KHI SỬ DỤNG!!!" #. • MSG_171 msgid "" @@ -1085,7 +1085,7 @@ msgstr "Phiên bản %d.%d (Bản dựng %d)" #. • MSG_176 msgid "English translation: Pete Batard " -msgstr "Bản dịch tiếng Việt:\\line• thanhtai2009 \\line• caobach \\line• VNSpringRice " +msgstr "Bản dịch Tiếng Việt:\\line• thanhtai2009 \\line• caobach \\line• Nguyễn Quang Minh (MinhNQ101) \\line• Trần Thái An " #. • MSG_177 msgid "Report bugs or request enhancements at:" @@ -1580,7 +1580,7 @@ msgstr "Không có khả năng khởi động" #. • MSG_280 msgid "Disk or ISO image" -msgstr "Đĩa hoặc tệp tin" +msgstr "Đĩa hoặc tệp tin ISO" #. • MSG_281 msgid "%s (Please select)" @@ -1588,7 +1588,7 @@ msgstr "%s (Vui lòng chọn)" #. • MSG_282 msgid "Exclusive USB drive locking" -msgstr "Khoá ổ USB đặc biệt" +msgstr "Chặn truy cập ổ USB từ chương trình khác" #. • MSG_283 msgid "Invalid signature" @@ -1618,7 +1618,7 @@ msgstr "Phát hiện ổ đĩa tháo được không phải USB" #. • MSG_288 msgid "Missing elevated privileges" -msgstr "Thiếu đặc quyền" +msgstr "Thiếu quyền quản trị" #. • MSG_289 msgid "This application can only run with elevated privileges" @@ -1727,7 +1727,7 @@ msgstr "điều này có thể mất một thời gian" #. • MSG_308 msgid "VHD detection" -msgstr "phát hiện VHD" +msgstr "Phát hiện VHD" #. • MSG_309 msgid "Compressed archive" @@ -1795,6 +1795,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "Không thể mở hoặc đọc '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "Áp dụng SkuSiPolicy.p7b trong khi cài đặt (Xem KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Những cải \"QoL\" (Không ép buộc Copilot, OneDrive, Outlook, Khởi động Nhanh, v.v.)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "Đang áp dụng tuỳ biến Windows: %s" @@ -1805,7 +1813,7 @@ msgstr "Đang áp dụng các cài đặt người dùng..." #. • MSG_327 msgid "Windows User Experience" -msgstr "Trải nghiệm người dùng Windows" +msgstr "Trải nghiệm Người dùng Windows" #. • MSG_328 msgid "Customize Windows installation?" @@ -1829,7 +1837,7 @@ msgstr "Ngăn cản Windows To Go truy cập ổ đĩa trong" #. • MSG_333 msgid "Create a local account with username:" -msgstr "Tạo tài khoản nội bộ với tên:" +msgstr "Tạo tài khoản nội bộ với tên người dùng:" #. • MSG_334 msgid "Set regional options to the same values as this user's" @@ -1841,17 +1849,17 @@ msgstr "Vô hiệu tự động mã hoá thiết bị BitLocker" #. • MSG_336 msgid "Persistent log" -msgstr "Nhật ký" +msgstr "Nhật ký lưu vĩnh viễn" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"Một tệp tin bổ sung ('diskcopy.dll') phải được tải về từ Microsoft để cài đặt MS-DOS:\n" +"Một tệp tin bổ sung ('%s') cần được tải xuống từ Microsoft để sử dụng tính năng này:\n" "- Chọn 'Có' để kết nối tới Internet và tải nó xuống\n" "- Chọn 'Không' để huỷ tiến trình\n" "\n" @@ -1899,7 +1907,7 @@ msgid "" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation" msgstr "" -"Một vài dữ lieu phải được tải xuống từ Microsoft để sử dụng tính năng này:\n" +"Một vài dữ liệu phải được tải xuống từ Microsoft để sử dụng tính năng này:\n" "- Chọn 'Có' để kết nối tới Internet và tải xuống nó\n" "- Chọn 'Không' để huỷ tiến trình" @@ -1919,11 +1927,123 @@ msgstr "Đang giải nén tệp lưu trữ: %s" msgid "Use Rufus MBR" msgstr "Sử dụng Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "Sử dụng bootloader đã được ký bởi chứng chỉ “Windows UEFI CA 2023” (Cần có PC tương thích)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "Đang kiểm tra trạng thái thu hồi của bootloader UEFI..." + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "Đang kiểm tra cập nhật cơ sở dữ liệu chặn (DBX) của UEFI…" + +#. • MSG_353 +msgid "DBX update available" +msgstr "Đã phát hiện bản cập nhật DBX của UEFI" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus đã phát hiện phiên bản cập nhật của các tệp DBX, được dùng để kiểm tra thu hồi Secure Boot trong UEFI. Bạn có muốn tải bản cập nhật này không?\n" +"- Chọn “Có” để kết nối Internet và tải nội dung này.\n" +"- Chọn “Không” để hủy thao tác.\n" +"\n" +"Lưu ý: Các tệp sẽ được tải về thư mục của ứng dụng và sẽ tự động được sử dụng lại nếu đã có sẵn." + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "Xoá sạch ổ cứng và cài đặt ⚠MỘT CÁCH ÂM THẦM⚠:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes', you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"Bạn đã lựa chọn phương thức cài đặt Windows \"im lặng\".\n" +"\n" +"Đây là một tuỳ chọn nâng cao, dành riêng cho những người muốn tạo một bản cài đặt không thông báo cho người dung xuyên suốt quá trình cài đặt Windows và qua đó XOÁ SẠCH VÔ ĐIỀU KIỆN ổ đĩa được nhận diện đầu tiên. Nếu bạn không cẩn than, sử dụng tuỳ chọn nào có thể gây ra MẤT HOÀN TOÀN DỮ LIỆU\n" +"\n" +"Nếu đó không phải thứ bạn muốn, vui long chọn 'Không' để quay trở lại và huỷ chọn tuỳ chọn đó.\n" +"Thay vào đó, nếu bạn chọn 'Có', bạn chấp thuận rằng mọi trách nhiệm về dữ liệu bị mất hoàn toàn thuộc về BẠN." + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "Vị trí tập tin ảnh đĩa không được hỗ trợ" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"Bạn không thể sử dụng một ảnh đĩa nằm trên thiết bị mục tiêu, vì thiết bị đó sẽ bị xoá hoàn toàn. Nó giống như việc bạn tự chặt cành cây mà bạn đang đứng lên vậy!\n" +"\n" +"Vui lòng di chuyển ảnh đĩa tới một vị trí khác và thử lại." + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "Việc bật tuỳ chọn này là hoàn toàn an toàn kể cả khi bạn có TPM hay nhiều RAM hơn, vì tuỳ chọn này chỉ bỏ qua nhừng yêu cầu cài đặt và không ngăn Windows sử dụng mọi tài nguyên phần cứng có thể." + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "Để tuỳ chọn này có hiệu quả, các mạng PHẢI được ngắt kết nối trong quá trình cài đặt!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "Tự động trả lời 'không' cho những câu hỏi liên quan tới việc chia sẻ dữ liệu cho Microsoft, thay vì thông báo cho người dùng." + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "Bạn nên để tuỳ chọn này ở mức 'Bật', trừ khi bạn ổn với việc Windows To Go truy cập vào các thiết bị nội bộ và âm thầm tạo ra những bản cập nhật hệ thống không thể hoàn tác." + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "Tự động tạo một tài khoản nội bộ với tên người dùng đã nêu, cùng một mật khẩu rỗng sẽ cần phải thay đổi trong lần đăng nhập tiếp theo." + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "Sao chép những cài đặt về vùng từ PC này (bàn phím, múi giờ, đơn vị), thay vì thông báo cho người dùng." + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "Không mã hoá ổ đĩa hệ thống, trừ khi được người dùng đích danh yêu cầu." + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "Chỉ sử dụng tuỳ chọn này khi bạn biết S-Mode là gì và bạn hiểu rằng hệ thống của bạn có thể bị khoá ở S-Mode kể cả khi bạn xoá sạch và cài đặt lại Windows." + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "Dùng tuỳ chọn này nếu hệ thống bạn muốn cài đặt Windows đang sử dụng những chứng chỉ Secure Boot (chế độ khởi động bảo mật) mới nhất. Nếu cần thiết, bạn có thể tìm hiểu việc dùng 'Mosby' để cập nhật hệ thống của bạn." + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "Dùng tuỳ chọn này nếu bạn muốn thu hồi những trình khởi động Windows có nguy cơ, nhưng cũng có khả năng ngăn ảnh đĩa Windows cơ bản khởi động." + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Những nâng cấp \"tiện ích trải nghiệm\": Vô hiệu hoá đa số những tính năng không mong muốn Microsoft đang cố nhồi nhét cho người dùng." + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "Nếu bạn sử dụng tuỳ chọn này, hãy chắc chắn rằng bạn đã ngắt kết nối tất cả các ổ đĩa khỏi PC đích, ngoại trừ ổ bạn muốn cài Windows, cũng như là không cắm ảnh đĩa vào bất kì PC nào bạn không muốn xoá sạch." + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application msgid "Rufus is a utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc." -msgstr "Rufus là một tiện ích giúp định dạng và tạo khả năng khởi động cho USB, chẳng hạn như thẻ USB/đĩa di động, thẻ nhớ, vv." +msgstr "Rufus là một tiện ích giúp định dạng và tạo khả năng khởi động cho các thiết bị USB, ví dụ như thẻ USB/đĩa di động, thẻ nhớ, v.v..." #. • MSG_901 msgid "Official site: %s" diff --git a/res/loc/po/zh-CN.po b/res/loc/po/zh-CN.po index 0ace1d99..c831a062 100644 --- a/res/loc/po/zh-CN.po +++ b/res/loc/po/zh-CN.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-04-28 10:38+0800\n" -"PO-Revision-Date: 2024-04-28 10:59+0800\n" +"POT-Creation-Date: 2026-03-31 15:46+0800\n" +"PO-Revision-Date: 2026-03-31 16:20+0800\n" "Last-Translator: \n" "Language-Team: \n" "Language: zh_CN\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Chinese Simplified (简体中文)\n" "X-Rufus-LCID: 0x0804, 0x1004\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.4.4\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -850,7 +850,7 @@ msgstr "无持久分区" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "设置Live USB驱动器的持久分区大小。设置为零将禁用持久分区。" @@ -892,7 +892,7 @@ msgstr "另一程序正在使用此驱动器。您仍然要格式化它吗?" #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -1801,6 +1801,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "无法打开或读取 '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "安装时应用 SkuSiPolicy.p7b(参见 KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "优化使用体验(不强制启用 Copilot、OneDrive、Outlook、快速启动等)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "正在应用 Windows 设置: %s" @@ -1851,13 +1859,13 @@ msgstr "持久化日志" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"必须从微软下载额外的文件(\"diskcopy.dll\"),以安装 MS-DOS:\n" +"必须从 Microsoft 下载附加文件(“%s”)才能使用此功能:\n" "- 选择 '是' 连接网络并下载这些文件\n" "- 选择 '否' 取消此项操作\n" "\n" @@ -1925,6 +1933,118 @@ msgstr "正在解压文件: %s" msgid "Use Rufus MBR" msgstr "使用 Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "使用'Windows CA 2023'签名的引导加载程序(需要目标电脑兼容)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "正在检查 UEFI 引导加载程序吊销状态…" + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "正在检查 UEFI DBX 更新…" + +#. • MSG_353 +msgid "DBX update available" +msgstr "有可用的 DBX 更新" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus 发现了 DBX 文件的更新版本(用于检查 UEFI 安全启动吊销情况)。是否下载此更新?\n" +"- 选择'是'以连接互联网并下载该内容\n" +"- 选择'否'以取消操作\n" +"\n" +"注意:该文件将下载到应用程序所在目录,若文件已存在则会自动复用。" + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "⚠静默⚠擦除磁盘并安装:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes, you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"您已选择使用\"静默\"Windows 安装选项。\n" +"\n" +"这是一个高级选项,适用于希望创建在 Windows 安装过程中不提示用户、无条件擦除目标系统上首个检测到磁盘的安装介质的用户。如果操作不慎,使用此选项可能导致不可逆的数据丢失!\n" +"\n" +"如果这不是您想要的,请选择'否'返回并取消勾选该选项。\n" +"否则,如果您选择'是',即表示您同意承担数据丢失的全部责任。" + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "不支持的映像位置" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"您不能使用位于目标驱动器上的映像,因为该驱动器将被完全擦除。这就好比坐在树枝上锯树枝!\n" +"\n" +"请将映像移动到其他位置后重试。" + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "即使您的电脑配备了 TPM 或拥有充足的内存,启用此选项也是安全的,因为该选项仅绕过安装程序的硬件要求检查,并不会阻止 Windows 使用所有可用硬件。" + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "要使此选项生效,安装过程中必须断开网络/互联网连接!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "自动对 Windows 安装过程中有关与 Microsoft 共享数据的问题回答'否',而非提示用户手动选择。" + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "建议保持此选项启用,除非您允许 'Windows To Go' 访问内部磁盘并静默执行不可逆的文件系统升级。" + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "使用指定的用户名自动创建本地账户,初始密码为空,用户在下次登录时需要更改密码。" + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "从当前电脑复制区域设置(键盘布局、时区、货币格式),而非提示用户手动选择。" + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "除非用户明确要求,不加密系统磁盘。" + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "仅在您了解什么是 S 模式、并理解即使完全擦除并重新安装 Windows 后系统仍可能被锁定在 S 模式下的情况下,才使用此选项。" + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "如果您计划安装 Windows 的系统已使用完全最新的安全启动证书,请使用此选项。如有需要,您可以考虑使用 'Mosby' 来更新您的系统。" + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "如果您希望吊销更多可能不安全的 Windows 引导加载程序,请使用此选项,但请注意这也可能导致标准 Windows 安装介质无法启动。" + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "优化使用体验:禁用 Microsoft 试图强加给用户的大部分不必要功能。" + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "如果您使用此选项,请务必断开目标电脑上除要安装 Windows 的磁盘以外的所有磁盘,同时不要将该安装介质插在任何您不想被擦除数据的电脑上。" + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application diff --git a/res/loc/po/zh-TW.po b/res/loc/po/zh-TW.po index dbec848a..e405f062 100644 --- a/res/loc/po/zh-TW.po +++ b/res/loc/po/zh-TW.po @@ -1,9 +1,9 @@ msgid "" msgstr "" -"Project-Id-Version: 4.5\n" +"Project-Id-Version: 4.14\n" "Report-Msgid-Bugs-To: pete@akeo.ie\n" -"POT-Creation-Date: 2024-05-25 18:11+0800\n" -"PO-Revision-Date: 2024-05-25 20:05+0800\n" +"POT-Creation-Date: 2026-04-14 02:06+0800\n" +"PO-Revision-Date: 2026-04-14 03:18+0800\n" "Last-Translator: \n" "Language-Team: \n" "Language: zh_TW\n" @@ -13,7 +13,7 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Rufus-LanguageName: Chinese Traditional (正體中文)\n" "X-Rufus-LCID: 0x0404, 0x0c04, 0x1404, 0x7c04\n" -"X-Generator: Poedit 3.4.4\n" +"X-Generator: Poedit 3.9\n" #. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT msgid "Drive Properties" @@ -308,7 +308,7 @@ msgstr "" #. • MSG_025 #. -#. *Short* version of the pentabyte size suffix +#. *Short* version of the petabyte size suffix msgid "PB" msgstr "" @@ -843,7 +843,7 @@ msgstr "不固定" #. • MSG_125 #. -#. Tooltips used for the peristence size slider and edit control +#. Tooltips used for the persistence size slider and edit control msgid "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." msgstr "設定 live USB 的固定磁區大小。大小設定為 0 則移除固定磁區。" @@ -885,7 +885,7 @@ msgstr "另一個程式或程序正在使用此裝置,要繼續格式化?" #. • MSG_133 msgid "" -"Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n" +"Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n" "\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n" "\n" @@ -893,7 +893,7 @@ msgid "" msgstr "" "Rufus 偵測到您將要建立 'Windows To Go' 1809 版本。\n" "\n" -"由於微軟的程式錯誤,您將無法正常開機 (藍白當機),除非您自行更換 'WppRecorder.sys' 成 1803 版本。\n" +"由於微軟的程式錯誤,您將無法正常開機 (藍底白字當機),除非您自行更換 'WppRecorder.sys' 成 1803 版本。\n" "\n" "此檔案版權擁有者為微軟,Rufus 愛莫能助..." @@ -1790,6 +1790,14 @@ msgstr "" msgid "Unable to open or read '%s'" msgstr "無法開啟或讀取 '%s'" +#. • MSG_323 +msgid "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +msgstr "在安裝時套用 SkuSiPolicy.p7b (參閱 KB5042562)" + +#. • MSG_324 +msgid "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" +msgstr "Windows 體驗改善 (不強制安裝 Copilot、OneDrive、Outlook、 快速啟動等功能)" + #. • MSG_325 msgid "Applying Windows customization: %s" msgstr "正在套用 Windows 客製化設定:%s" @@ -1840,13 +1848,13 @@ msgstr "持久化日誌" #. • MSG_337 msgid "" -"An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +"An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n" "\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." msgstr "" -"必須從微軟下載額外的 'diskcopy.dll' 檔案,才能安裝 MS-DOS:\n" +"必須從 Microsoft 下載附加檔案 (“%s”) 才能使用此功能:\n" "- 選 '是' 將連線到網路並進行下載\n" "- 選 '否' 將取消操作\n" "\n" @@ -1914,6 +1922,120 @@ msgstr "正在擷取封存檔案: %s" msgid "Use Rufus MBR" msgstr "使用 Rufus MBR" +#. • MSG_350 +msgid "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" +msgstr "使用以 Windows CA 2023 簽署的開機引導程式 (需搭配相容的電腦)" + +#. • MSG_351 +msgid "Checking for UEFI bootloader revocation..." +msgstr "正在檢查 UEFI 開機引導程式是否被撤銷…" + +#. • MSG_352 +msgid "Checking for UEFI DBX updates..." +msgstr "正在檢查 UEFI DBX 更新…" + +#. • MSG_353 +msgid "DBX update available" +msgstr "有可用的 DBX 更新" + +#. • MSG_354 +msgid "" +"Rufus has found an updated version of the DBX files used to perform UEFI Secure Boot revocation checks. Do you want to download this update?\n" +"- Select 'Yes' to connect to the Internet and download this content\n" +"- Select 'No' to cancel the operation\n" +"\n" +"Note: The files will be downloaded in the application's directory and will be reused automatically if present." +msgstr "" +"Rufus 發現用於執行 UEFI 安全開機撤銷檢查的 DBX 檔案更新版本,是否下載此更新?\n" +"- 選擇 '是': 將連線到網路並進行下載\n" +"- 選擇 '否': 取消此操作\n" +"\n" +"註: 該檔案將被下載到 Rufus 所在的資料夾中,如果已存在將會自動使用。" + +#. • MSG_355 +msgid "⚠SILENTLY⚠ erase disk and install:" +msgstr "以 ⚠靜默模式⚠ 清除磁碟並進行安裝:" + +#. • MSG_356 +msgid "" +"You have selected to use the \"silent\" Windows installation option.\n" +"\n" +"This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n" +"\n" +"If this is not what you want, please select 'No' to go back and uncheck the option.\n" +"Otherwise, if you select 'Yes', you agree that the whole responsibility for any data loss will be entirely with YOU." +msgstr "" +"你已選擇使用 \"靜默\" Windows 安裝選項。\n" +"\n" +"此為進階選項,僅供希望建立在安裝 Windows 過程中不提示使用者的安裝媒體之使用者使用,過程中會直接清除目標系統中偵測到的第一顆磁碟。\n" +"\n" +"若操作不慎,此選項可能導致發生無法復原的資料遺失!\n" +"\n" +"如果這不是你想要的結果,請選擇 '否' 返回並取消勾選此選項。\n" +"若你選擇 '是',表示你了解且同意承擔所有可能發生的資料遺失風險。" + +#. • MSG_358 +msgid "Unsupported image location" +msgstr "不支援的映像檔位置" + +#. • MSG_359 +msgid "" +"You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n" +"\n" +"Please move the image to a different location and try again." +msgstr "" +"你無法使用位於目標磁碟上的映像檔,因為該磁碟將會被完全清除。這就像是試圖鋸斷自己正坐著的樹枝一樣!\n" +"\n" +"請將映像檔移至其它位置後再試一次。" + +#. • MSG_360 +msgid "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +msgstr "即使支援 TPM 或有更大的記憶體容量,保持啟用此選項也是安全的,因為此選項僅會略過硬體安裝需求,並不會影響 Windows 使用所有可用的硬體資源。" + +#. • MSG_361 +msgid "For this option to work, network/Internet MUST be disconnected during installation!" +msgstr "為了讓此選項生效,安裝過程中必須切斷網路連線!" + +#. • MSG_362 +msgid "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +msgstr "自動拒絕 Windows 初始化中與微軟共享資料的相關問題,而非提示使用者進行選擇。" + +#. • MSG_363 +msgid "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +msgstr "除非你可以接受 'Windows To Go' 存取內部磁碟,並在未經提示的情況下執行不可逆的檔案系統升級,否則建議保持啟用此選項。" + +#. • MSG_364 +msgid "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +msgstr "自動以指定的使用者名稱建立本機帳戶,並設定空白密碼,該密碼需在下次登入時進行變更。" + +#. • MSG_365 +msgid "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +msgstr "複製此電腦的區域設定 (鍵盤、時區、貨幣),而非提示使用者進行選擇。" + +#. • MSG_366 +msgid "Don't encrypt the system disk, unless explicitly requested by the user." +msgstr "除非使用者明確要求,否則不要加密系統磁碟。" + +#. • MSG_367 +msgid "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +msgstr "僅在你了解 S 模式是什麼,且知道即使完全清除並重新安裝 Windows,系統仍可能被鎖定在 S 模式的情況下使用此選項。" + +#. • MSG_368 +msgid "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +msgstr "若你打算安裝 Windows 的系統已完整更新過安全開機憑證,請使用此選項。若有需要,你可以考慮使用 'Mosby' 來更新系統。" + +#. • MSG_369 +msgid "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +msgstr "如果你希望撤銷更多可能不安全的 Windows 開機引導程式,請使用此選項,但此操作有可能導致標準 Windows 安裝媒體無法開機。" + +#. • MSG_370 +msgid "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +msgstr "Windows 體驗增強: 停用微軟試圖強制提供給終端使用者的大多數不必要功能。" + +#. • MSG_371 +msgid "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +msgstr "如果你使用此選項,請確保目標電腦中除了要安裝 Windows 的磁碟以外,其它所有磁碟都已斷開連接,並且不要將安裝媒體插在任何你不想被清除資料的電腦上。" + #. • MSG_900 #. #. The following messages are for the Windows Store listing only and are not used by the application @@ -1994,7 +2116,7 @@ msgstr "計算被選取映像的 MD5、SHA-1、SHA-256 和 SHA-512 檢查碼" #. • MSG_920 msgid "Perform bad blocks checks, including detection of \"fake\" flash drives" msgstr "" -"執行壞軌檢查,包括對”假“USB 快閃磁碟\n" +"執行壞軌檢查,包括對 ”假“ USB 快閃磁碟\n" "的偵測" #. • MSG_921 diff --git a/res/loc/pollock/Pollock.cs b/res/loc/pollock/Pollock.cs index 44af459a..a532e824 100644 --- a/res/loc/pollock/Pollock.cs +++ b/res/loc/pollock/Pollock.cs @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Poedit <-> rufus.loc conversion utility - * Copyright © 2018-2024 Pete Batard + * Copyright © 2018-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -43,7 +43,7 @@ using System.Windows.Forms; [assembly: AssemblyProduct("Pollock")] [assembly: AssemblyCopyright("Copyright © 2018-2024 Pete Batard ")] [assembly: AssemblyTrademark("GNU GPLv3")] -[assembly: AssemblyVersion("1.6.*")] +[assembly: AssemblyVersion("1.8.*")] namespace pollock { @@ -124,7 +124,6 @@ namespace pollock private static int download_status; private static int console_x_pos; private static bool in_progress = false; - private static bool in_on_change = false; private static double speed = 0.0f; /// @@ -883,53 +882,9 @@ namespace pollock return (response == ConsoleKey.Y); } - // Event handler for FileSystemWatcher. As usual, this is a completely BACKWARDS - // implementation by Microsoft that has to be worked around with timers and stuff... - private static void OnChanged(object source, FileSystemEventArgs e) - { - if (in_on_change) - return; - in_on_change = true; - FileInfo file = new FileInfo(e.FullPath); - FileStream stream = null; - if (file.LastWriteTime >= last_changed.AddMilliseconds(250)) - { - // File may still be locked by Poedit => detect that - bool file_locked = true; - do - { - try - { - stream = file.Open(FileMode.Open, FileAccess.Read, FileShare.None); - file_locked = false; - } - catch (IOException) - { - if (cancel_requested) - break; - Thread.Sleep(100); - } - finally - { - if (!file_locked) - { - if (stream != null) - stream.Close(); - last_changed = file.LastWriteTime; - Console.Write(file.LastWriteTime.ToLongTimeString() + " - "); - UpdateLocFile(ParsePoFile(e.FullPath)); - } - } - } - while (file_locked); - } - in_on_change = false; - } - // // Main entrypoint. // - [STAThread] static void Main(string[] args) { // Fix needed for Windows 7 to download from github SSL @@ -1146,7 +1101,7 @@ Retry: else { var old_loc_file = $"rufus-{list[index][2]}.loc"; - Console.WriteLine($"Note: This language is at v{list[index][2]} but the English base it at v{list[0][2]}."); + Console.WriteLine($"Note: This language is at v{list[index][2]} but the English base is at v{list[0][2]}."); Console.Write($"Checking for the presence of '{old_loc_file}' to compute the differences... "); if (File.Exists(old_loc_file)) { @@ -1188,23 +1143,15 @@ Retry: if (maintainer_mode) goto Exit; - // Watch for file modifications - FileSystemWatcher watcher = new FileSystemWatcher(); - watcher.Path = app_dir; - watcher.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite; - watcher.Filter = po_file; - watcher.Changed += new FileSystemEventHandler(OnChanged); - watcher.EnableRaisingEvents = true; - // Open the file in PoEdit if we can - var poedit = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86) + @"\Poedit\Poedit.exe"; + var poedit = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles) + @"\Poedit\Poedit.exe"; if (File.Exists(poedit)) { Console.WriteLine(); // Console.WriteLine("Please press any key to launch Poedit and edit the PO file."); Console.WriteLine("*************************************************************************************"); Console.WriteLine($"* The {list[index][0]} translation file ({list[index][1]}) is now ready to be edited in Poedit."); - Console.WriteLine("* Please look for entries highlited in orange - they are the ones requiring an update."); + Console.WriteLine("* Please look for entries highlighted in orange: they are the ones requiring an update."); Console.WriteLine("*"); Console.WriteLine("* Whenever you save your changes in Poedit, a new 'rufus.loc' will be generated so"); Console.WriteLine($"* that you can test it with '{rufus_file}' in the same directory."); @@ -1227,7 +1174,52 @@ Retry: Console.SetCursorPosition(0, Console.CursorTop - 1); Console.WriteLine("Running Poedit... "); DateTime launch_date = DateTime.Now; - process.WaitForExit(); + + // Somehow, Palp... I mean, Microsoft broke FileSystemWatcher, so perform our own file system monitoring + var info = new FileInfo(po_file); + var length = info.Length; + var write_time = info.LastWriteTime; + var create_time = info.CreationTime; + while (!process.WaitForExit(500)) + { + info = new FileInfo(po_file); + if (info.Length != length || info.LastWriteTime != write_time || info.CreationTime != create_time) + { + FileStream stream = null; + if (info.LastWriteTime >= last_changed.AddMilliseconds(250)) + { + // File may still be locked by Poedit => detect that + bool file_locked = true; + do + { + try + { + stream = info.Open(FileMode.Open, FileAccess.Read, FileShare.None); + file_locked = false; + } + catch (IOException) + { + if (cancel_requested) + break; + Thread.Sleep(100); + } + finally + { + if (!file_locked) + { + if (stream != null) + stream.Close(); + last_changed = info.LastWriteTime; + Console.Write(info.LastWriteTime.ToLongTimeString() + " - "); + UpdateLocFile(ParsePoFile(info.FullName)); + } + } + } + while (file_locked); + } + } + } + Console.WriteLine($"Poedit {((DateTime.Now - launch_date).Milliseconds < 100? "is already running (?)..." : "was closed.")}"); // Delete the .mo files which we don't need var dir = new DirectoryInfo(app_dir); diff --git a/res/loc/pollock/Pollock.csproj b/res/loc/pollock/Pollock.csproj index ab2e74c0..d19a421e 100644 --- a/res/loc/pollock/Pollock.csproj +++ b/res/loc/pollock/Pollock.csproj @@ -8,27 +8,31 @@ Exe pollock pollock - v4.8 + v4.8.1 512 true - + AnyCPU true full + x64 false bin\Debug\ DEBUG;TRACE + 8.0 prompt 4 - + AnyCPU pdbonly + x64 true bin\Release\ TRACE + 8.0 prompt 4 @@ -55,6 +59,13 @@ + + + False + Microsoft .NET Framework 4.8 %28x86 and x64%29 + true + + diff --git a/res/loc/pollock/Pollock.sln b/res/loc/pollock/Pollock.sln index 602c1777..601e6b5c 100644 --- a/res/loc/pollock/Pollock.sln +++ b/res/loc/pollock/Pollock.sln @@ -1,20 +1,20 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27703.2035 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.37111.16 d17.14 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pollock", "Pollock.csproj", "{759D557D-FA9B-4EE2-A6B3-3D30FC35F3CE}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {759D557D-FA9B-4EE2-A6B3-3D30FC35F3CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {759D557D-FA9B-4EE2-A6B3-3D30FC35F3CE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {759D557D-FA9B-4EE2-A6B3-3D30FC35F3CE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {759D557D-FA9B-4EE2-A6B3-3D30FC35F3CE}.Release|Any CPU.Build.0 = Release|Any CPU + {759D557D-FA9B-4EE2-A6B3-3D30FC35F3CE}.Debug|x64.ActiveCfg = Debug|x64 + {759D557D-FA9B-4EE2-A6B3-3D30FC35F3CE}.Debug|x64.Build.0 = Debug|x64 + {759D557D-FA9B-4EE2-A6B3-3D30FC35F3CE}.Release|x64.ActiveCfg = Release|x64 + {759D557D-FA9B-4EE2-A6B3-3D30FC35F3CE}.Release|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/res/loc/pollock/app.config b/res/loc/pollock/app.config index 3e0e37cf..eca069e4 100644 --- a/res/loc/pollock/app.config +++ b/res/loc/pollock/app.config @@ -1,3 +1,3 @@ - + diff --git a/res/loc/rufus.loc b/res/loc/rufus.loc index 1bf7746a..ee07b4fb 100644 --- a/res/loc/rufus.loc +++ b/res/loc/rufus.loc @@ -3,48 +3,48 @@ ######################################################################### # List of all languages included in this file (with version) -# • v4.5 "en-US" "English (English)" -# • v4.5 "ar-SA" "Arabic (العربية)" -# • v3.22 "bg-BG" "Bulgarian (Български)" -# • v4.5 "zh-CN" "Chinese Simplified (简体中文)" -# • v4.5 "zh-TW" "Chinese Traditional (正體中文)" -# • v4.5 "hr-HR" "Croatian (Hrvatski)" -# • v4.5 "cs-CZ" "Czech (Čeština)" -# • v4.5 "da-DK" "Danish (Dansk)" -# • v4.5 "nl-NL" "Dutch (Nederlands)" -# • v4.5 "fi-FI" "Finnish (Suomi)" -# • v4.5 "fr-FR" "French (Français)" -# • v4.5 "de-DE" "German (Deutsch)" -# • v4.5 "el-GR" "Greek (Ελληνικά)" -# • v4.5 "he-IL" "Hebrew (עברית)" -# • v4.5 "hu-HU" "Hungarian (Magyar)" -# • v3.22 "id-ID" "Indonesian (Bahasa Indonesia)" -# • v4.5 "it-IT" "Italian (Italiano)" -# • v4.5 "ja-JP" "Japanese (日本語)" -# • v4.5 "ko-KR" "Korean (한국어)" -# • v4.5 "lv-LV" "Latvian (Latviešu)" -# • v3.22 "lt-LT" "Lithuanian (Lietuvių)" -# • v3.22 "ms-MY" "Malay (Bahasa Malaysia)" -# • v4.5 "nb-NO" "Norwegian (Norsk)" -# • v4.5 "fa-IR" "Persian (پارسی)" -# • v4.5 "pl-PL" "Polish (Polski)" -# • v4.5 "pt-BR" "Portuguese Brazilian (Português do Brasil)" -# • v4.5 "pt-PT" "Portuguese Standard (Português)" -# • v4.5 "ro-RO" "Romanian (Română)" -# • v4.5 "ru-RU" "Russian (Русский)" -# • v4.5 "sr-RS" "Serbian (Srpski)" -# • v4.5 "sk-SK" "Slovak (Slovensky)" +# • v4.14 "en-US" "English (English)" +# • v4.14 "ar-SA" "Arabic (العربية)" +# • v4.14 "bg-BG" "Bulgarian (Български)" +# • v4.14 "zh-CN" "Chinese Simplified (简体中文)" +# • v4.14 "zh-TW" "Chinese Traditional (正體中文)" +# • v4.14 "hr-HR" "Croatian (Hrvatski)" +# • v4.14 "cs-CZ" "Czech (Čeština)" +# • v4.14 "da-DK" "Danish (Dansk)" +# • v4.14 "nl-NL" "Dutch (Nederlands)" +# • v4.14 "fi-FI" "Finnish (Suomi)" +# • v4.14 "fr-FR" "French (Français)" +# • v4.14 "de-DE" "German (Deutsch)" +# • v4.14 "el-GR" "Greek (Ελληνικά)" +# • v4.14 "he-IL" "Hebrew (עברית)" +# • v4.14 "hu-HU" "Hungarian (Magyar)" +# • v4.14 "id-ID" "Indonesian (Bahasa Indonesia)" +# • v4.14 "it-IT" "Italian (Italiano)" +# • v4.14 "ja-JP" "Japanese (日本語)" +# • v4.14 "ko-KR" "Korean (한국어)" +# • v4.14 "lv-LV" "Latvian (Latviešu)" +# • v4.14 "lt-LT" "Lithuanian (Lietuvių)" +# • v4.14 "ms-MY" "Malay (Bahasa Malaysia)" +# • v4.14 "nb-NO" "Norwegian (Norsk)" +# • v4.14 "fa-IR" "Persian (پارسی)" +# • v4.14 "pl-PL" "Polish (Polski)" +# • v4.14 "pt-BR" "Portuguese Brazilian (Português do Brasil)" +# • v4.14 "pt-PT" "Portuguese Standard (Português)" +# • v4.14 "ro-RO" "Romanian (Română)" +# • v4.14 "ru-RU" "Russian (Русский)" +# • v4.14 "sr-RS" "Serbian (Srpski)" +# • v4.14 "sk-SK" "Slovak (Slovensky)" # • v4.5 "sl-SI" "Slovenian (Slovenščina)" -# • v4.5 "es-ES" "Spanish (Español)" -# • v4.5 "sv-SE" "Swedish (Svenska)" -# • v4.5 "th-TH" "Thai (ไทย)" -# • v4.5 "tr-TR" "Turkish (Türkçe)" -# • v4.5 "uk-UA" "Ukrainian (Українська)" -# • v4.5 "vi-VN" "Vietnamese (Tiếng Việt)" +# • v4.14 "es-ES" "Spanish (Español)" +# • v4.14 "sv-SE" "Swedish (Svenska)" +# • v4.14 "th-TH" "Thai (ไทย)" +# • v4.14 "tr-TR" "Turkish (Türkçe)" +# • v4.14 "uk-UA" "Ukrainian (Українська)" +# • v4.14 "vi-VN" "Vietnamese (Tiếng Việt)" ######################################################################### l "en-US" "English (English)" 0x0409, 0x0809, 0x0c09, 0x1009, 0x1409, 0x1809, 0x1c09, 0x2009, 0x2409, 0x2809, 0x2c09, 0x3009, 0x3409, 0x3809, 0x3c09, 0x4009, 0x4409, 0x4809 -v 4.5 +v 4.14 g IDD_DIALOG t IDS_DRIVE_PROPERTIES_TXT "Drive Properties" @@ -140,7 +140,7 @@ t MSG_022 "MB" t MSG_023 "GB" # *Short* version of the terabyte size suffix t MSG_024 "TB" -# *Short* version of the pentabyte size suffix +# *Short* version of the petabyte size suffix t MSG_025 "PB" # We use two different messages with the same translation for convenience t MSG_026 "bytes" @@ -319,7 +319,7 @@ t MSG_123 "Persistent partition size" # It is okay to use "No partition" or "None" or "Deactivated" to indicate that a persistent partition will not be # created if the width of the control is too small (since the 'Size' edit control is *not* adjusted for width). t MSG_124 "No persistence" -# Tooltips used for the peristence size slider and edit control +# Tooltips used for the persistence size slider and edit control t MSG_125 "Set the size of the persistent partition for live USB media. Setting the size to 0 disables the persistent partition." t MSG_126 "Set the partition size units." t MSG_127 "Do not show this message again" @@ -329,7 +329,7 @@ t MSG_129 "You have just created a media that uses the UEFI:NTFS bootloader. Ple t MSG_130 "Windows image selection" t MSG_131 "This ISO contains multiple Windows images.\nPlease select the image you wish to use for this installation:" t MSG_132 "Another program or process is accessing this drive. Do you want to format it anyway?" -t MSG_133 "Rufus has detected that you are attempting to create a Windows To Go media based on a 1809 ISO.\n\n" +t MSG_133 "Rufus has detected that you are attempting to create a 'Windows To Go' media based on a 1809 ISO.\n\n" "Because of a *MICROSOFT BUG*, this media will crash during Windows boot (Blue Screen Of Death), unless you manually replace the file 'WppRecorder.sys' with a 1803 version.\n\n" "Also note that the reason Rufus cannot automatically fix this for you is that 'WppRecorder.sys' is a Microsoft copyrighted file, so we cannot legally embed a copy of the file in the application..." t MSG_134 "Because MBR has been selected for the partition scheme, Rufus can only create a partition up to 2 TB on this media, which will leave %s of disk space unavailable.\n\n" @@ -577,6 +577,8 @@ t MSG_320 "Refreshing partition layout (%s)..." t MSG_321 "The image you have selected is an ISOHybrid, but its creators have not made it compatible with ISO/File " "copy mode.\nAs a result, DD image writing mode will be enforced." t MSG_322 "Unable to open or read '%s'" +t MSG_323 "Apply SkuSiPolicy.p7b on installation (See KB5042562)" +t MSG_324 "QoL improvements (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" t MSG_325 "Applying Windows customization: %s" t MSG_326 "Applying user options..." t MSG_327 "Windows User Experience" @@ -589,7 +591,7 @@ t MSG_333 "Create a local account with username:" t MSG_334 "Set regional options to the same values as this user's" t MSG_335 "Disable BitLocker automatic device encryption" t MSG_336 "Persistent log" -t MSG_337 "An additional file ('diskcopy.dll') must be downloaded from Microsoft to install MS-DOS:\n" +t MSG_337 "An additional file ('%s') must be downloaded from Microsoft to use this feature:\n" "- Select 'Yes' to connect to the Internet and download it\n" "- Select 'No' to cancel the operation\n\n" "Note: The file will be downloaded in the application's directory and will be reused automatically if present." @@ -609,7 +611,7 @@ t MSG_346 "Restrict Windows to S-Mode (INCOMPATIBLE with online account bypass)" t MSG_347 "Expert Mode" t MSG_348 "Extracting archive files: %s" t MSG_349 "Use Rufus MBR" -t MSG_350 "Use 'Windows UEFI CA 2023' signed bootloaders [EXPERIMENTAL]" +t MSG_350 "Use 'Windows CA 2023' signed bootloaders (Requires a compatible target PC)" t MSG_351 "Checking for UEFI bootloader revocation..." t MSG_352 "Checking for UEFI DBX updates..." t MSG_353 "DBX update available" @@ -617,6 +619,29 @@ t MSG_354 "Rufus has found an updated version of the DBX files used to perform U "- Select 'Yes' to connect to the Internet and download this content\n" "- Select 'No' to cancel the operation\n\n" "Note: The files will be downloaded in the application's directory and will be reused automatically if present." +t MSG_355 "⚠SILENTLY⚠ erase disk and install:" +t MSG_356 "You have selected to use the \"silent\" Windows installation option.\n\n" + "This is an advanced option, reserved for people who want to create media that does not prompt the user during Windows installation and therefore UNCONDITIONALLY ERASES the first detected disk on " + "the target system. If you are not careful, using this option can result in IRREVERSIBLE DATA LOSS!\n\nYou MUST read and accept all of the following propositions to proceed:" +t MSG_358 "Unsupported image location" +t MSG_359 "You cannot use an image that is located on the target drive, since that drive is going to be completely erased. It's the same thing as trying to saw the branch you are sitting on!\n\n" + "Please move the image to a different location and try again." +t MSG_360 "It is safe to leave this option enabled even if you have a TPM or more RAM, as this option only bypasses the setup requirements and does not actually prevent Windows from using all the hardware available." +t MSG_361 "For this option to work, network/Internet MUST be disconnected during installation!" +t MSG_362 "Automatically answer 'no' to the Windows setup questions relating to the sharing of data with Microsoft, instead of prompting the user." +t MSG_363 "You should leave this option enabled, unless you are okay with 'Windows To Go' accessing internal disks and silently performing irreversible file system upgrades." +t MSG_364 "Automatically create a local account with the specified user name, using an empty password that will need to be changed on next logon." +t MSG_365 "Duplicate the regional settings from this PC (keyboard, timezone, currency), instead of prompting the user." +t MSG_366 "Don't encrypt the system disk, unless explicitly requested by the user." +t MSG_367 "Use this option only if you know what S-Mode is and understand that your system may be locked into S-Mode even after you completely erase and reinstall Windows." +t MSG_368 "Use this option if the system you plan to install Windows on is using fully up-to-date Secure Boot certificates. If needed, you can look into using 'Mosby' to update your system." +t MSG_369 "Use this option if you want to revoke additional potentially unsafe Windows bootloaders, but with the potential of also preventing standard Windows media from booting." +t MSG_370 "\"Quality of Life\" enhancements: Disable most of the unwanted features Microsoft is trying to force onto end users." +t MSG_371 "If you use this option, please make sure to disconnect every disk from the target PC, except the one you want to install Windows on, as well as not leave the media plugged into any PC you don't want to erase." +t MSG_372 "I WILL ensure that all disks, except the one I want to install Windows on, are disconnected." +t MSG_373 "I WILL ensure that I don't leave this media plugged on a PC I do not plan to erase." +t MSG_374 "I AGREE that any data loss resulting from the use of this option lies entirely with me." + # The following messages are for the Windows Store listing only and are not used by the application t MSG_900 "Rufus is a utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc." t MSG_901 "Official site: %s" @@ -644,7 +669,7 @@ t MSG_922 "Download UEFI Shell ISOs" ######################################################################### l "ar-SA" "Arabic (العربية)" 0x0401, 0x0801, 0x0c01, 0x1001, 0x1401, 0x1801, 0x1c01, 0x2001, 0x2401, 0x2801, 0x2c01, 0x3001, 0x3401, 0x3801, 0x3c01, 0x4001 -v 4.5 +v 4.14 b "en-US" a "r" @@ -826,6 +851,7 @@ t MSG_114 "تستخدم هذه الصورة Syslinux %s%s لكن هذا التط t MSG_115 "التنزيل من الانترنت مطلوب" t MSG_116 "هذه الصورة (image) تستعمل Grub %s لكن التطبيق يحتوي فقط على ملفات تثبيت Grub %s.\n\nبما أن إصدارات Grub المختلفة قد لا تتوافق مع بعضهاالبعض، وبما أنه لا يمكن ضمها كلها، فسيحاول Rufus تحديد مكان إصدار من ملف تثبيت Grub ('core.img') يتوافق مع الموجود في صورتك:\n- إختر 'نعم' للاتصال بلالأنترنت ومحاولة تنزيله\n- إختر 'لا' لاستعمال الإصدار الافتراضي من Rufus\n- إختر 'إلغاء' لوقف العملية\n\nملاحظة: سيتم تنزيل الملف في المجلد الحالي للتطبيق و سيستعمل تلقائيا إذا كان موجداً. إذا لم يتم العثور على إصدار موافق، فسيُستعمل الإصدار الافتراضي كبديل." t MSG_117 "التثبيت القياسي لنظام التشغيل Windows" +t MSG_118 "ويندوز المحمول (Windows To Go)" t MSG_119 "خصائص محرك الأقراص المتقدّمة" t MSG_120 "خيارات التهّيئة المتقدّمة" t MSG_121 "أظهار %s" @@ -840,7 +866,7 @@ t MSG_129 "لقد قمت لتوك بإنشاء وسائط تستخدم محمل t MSG_130 "اختيار صورة Windows" t MSG_131 "يحتوي ملف ISO هذا على العديد من صور Windows.\nالرجاء تحديد الصورة التي ترغب في استخدامها لهذا التثبيت:" t MSG_132 "هذا القرص يستخدم من قبل برنامج آخر. هل تود التهيئة على أية حال ؟" -t MSG_133 "لقد قام Rufus بإكتشاف أنك تحاول إنشاء وسائط Windows To Go بناءً على ISO 1809\n\nبسبب عيب في Microsoft, سوف تتوقف الوسائط خلال إقلاع Windows (شاشة الموت الزرقاء) ما لم تقم يدوياً بإستبدال ملف 'WppRecorder.sys' بإصدار 1803.\n\nيرجى العلم أن سبب عدم إمكانية Rufus من إصلاح المشكلة تلقائيا هو أن ملف 'WppRecorder.sys' محفوظ الحقوق ل Microsoft, لذلك لا يمكننا تضمين نسخة من الملف في التطبيق..." +t MSG_133 "اكتشف برنامج روفوس Rufus أنك تحاول إنشاء وسائط \"Windows To Go\" باستخدام ملف ISO من إصدار 1809.\n\nبسبب خلل برمجي في مايكروسوفت، ستتعطل هذه الوسائط أثناء تشغيل ويندوز (شاشة الموت الزرقاء)، ما لم تستبدل الملف \"WppRecorder.sys\" يدويًا بنسخة من إصدار 1803.\n\nيُرجى العلم أيضًا أن سبب عدم قدرة روفوس Rufus على إصلاح هذه المشكلة تلقائيًا هو أن الملف \"WppRecorder.sys\" محمي بحقوق الطبع والنشر لمايكروسوفت، لذا لا يمكننا قانونيًا تضمين نسخة منه في التطبيق." t MSG_134 "بسبب إختيار نظام التجزئة MBR, Rufus(Rufus) قادر فقط على إنشاء تجزئة لغاية 2 TB على هذه الوسائط, الذي سوف يؤدي إلى عدم توفر %s من مساحة القرص.\n\nهل تريد المتابعة ؟" t MSG_135 "الإصدار" t MSG_136 "الإطلاق" @@ -1028,6 +1054,8 @@ t MSG_319 "تجاهل علامة الإقلاع" t MSG_320 "جاري تحديث تخطيط القسم (%s) ..." t MSG_321 "الصورة التي حددتها هي ISO-Hybrid (هجينة) ، لكن منشئوها لم يجعلوها متوافقة مع وضع نسخ ملف ISO. \nنتيجة لذلك ، سيتم فرض وضع DD لكتابة الصورة." t MSG_322 "غير قادر على فتح أو قراءة '%s'" +t MSG_323 "قم بتطبيق SkuSiPolicy.p7b عند التثبيت (ألق نظرة على KB5042562)" +t MSG_324 "تحسينات جودة الحياة QoL (لا تفرض استخدام Copilot أو OneDrive أو Outlook أو Fast Startup، إلخ..)." t MSG_325 "جاري تطبيق تخصيصات ويندوز: %s" t MSG_326 "جاري تطبيق خيارات المستخدم ..." t MSG_327 "تجربة مستخدم ويندوز" @@ -1040,7 +1068,7 @@ t MSG_333 "قم بإنشاء حساب محلي باسم المستخدم:" t MSG_334 "قم بتعيين الخيارات الإقليمية لتطابق خيارات المستخدم الحالي" t MSG_335 "تعطيل التشفير التلقائي BitLocker للجهاز" t MSG_336 "سجل متواصل" -t MSG_337 "يجب تنزيل ملف إضافي ('diskcopy.dll') من Microsoft لتثبيت MS-DOS:\n- حدد \"نعم\" للاتصال بالإنترنت وتنزيله\n- اختر \"لا\" لإلغاء العملية\n\nملاحظة: سيتم تنزيل الملف في مجلد التطبيق وسيتم إعادة استخدامه تلقائيًا إذا كان موجودًا." +t MSG_337 "يجب تنزيل ملف إضافي ('%s') من مايكروسفت Microsoft لاستخدام هذه الميزة:\n- حدد \"نعم\" للاتصال بالإنترنت وتنزيله\n- اختر \"لا\" لإلغاء العملية\n\nملاحظة: سيتم تنزيل الملف في مجلد التطبيق وسيتم إعادة استخدامه تلقائيًا إذا كان موجودًا." t MSG_338 "تم اكتشاف أداة تحميل التشغيل UEFI التي تم إبطالها سابقا" t MSG_339 "اكتشف Rufus أن ملف ISO الذي حددته يحتوي على أداة تحميل التشغيل UEFI التي تم إبطالها سابقا والتي ستنتج %s، عند تمكين Secure Boot محدث بالكامل على نظام UEFI .\n\n- إذا حصلت على صورة ISO هذه من مصدر غير حسن السمعة، فيجب أن تفكر في احتمالية احتوائها على برامج UEFI ضارة وتجنب التشغيل منها.\n- إذا حصلت على صورة ISO هذه من مصدر موثوق به، فعليك محاولة العثور على إصدار أكثر حداثة، والذي لن ينتج عنه هذا التحذير." t MSG_340 "شاشة \"الانتهاكات الأمنية\"" @@ -1049,10 +1077,34 @@ t MSG_342 "صورة VHDX مضغوطة" t MSG_343 "صورة VHD غير مضغوطة" t MSG_344 "صورة (image) لتحديث فلاشة كاملة (FFU)" t MSG_345 "يجب تنزيل بعض البيانات الإضافية من Microsoft لاستخدام هذه الوظيفة:\n- اختر \"نعم\" للاتصال بالإنترنت وتنزيلها\n- اختر \"لا\" لإلغاء العملية" -t MSG_346 "تقييد Windows على الوضع \"S\" (S-Mode، غير متوافق مع تجاوز الحساب عبر الإنترنت)" +t MSG_346 "تقييد Windows على الوضع \"S-Mode\" (غير متوافق مع تجاوز الحساب عبر الإنترنت)" t MSG_347 "وضع الخبير" t MSG_348 "استخراج ملفات الأرشيف: %s" t MSG_349 "استخدم Refus MBR" +t MSG_350 "استخدم برامج الإقلاع المُوَقع \"Windows CA 2023\" (يتطلب أن يكون جهاز كمبيوتر المستهدف متوافقا)" +t MSG_351 "جارٍ التحقق من إلغاء صلاحية برنامج الإقلاع UEFI bootloader..." +t MSG_352 "جارٍ التحقق من وجود تحديثات لـ UEFI DBX..." +t MSG_353 "تحديث الـ DBX متوفر" +t MSG_354 "عثر روفوس Rufus على نسخة محدثة من ملفات DBX المستخدمة لإجراء فحوصات إلغاء التمهيد الآمن لـ UEFI. هل ترغب بتنزيل هذا التحديث؟\n- اختر «نعم» للاتصال بالإنترنت وتنزيل هذا المحتوى\n- اختر «لا» لإلغاء العملية\n\nملاحظة: سيتم تنزيل الملفات في مجلد التطبيق، وسيتم إعادة استخدامها تلقائيًا في حال وجودها." +t MSG_355 "⚠بصمت⚠ امسح القرص وقم بالتثبيت:" +t MSG_356 "لقد اخترتَ استخدام خيار التثبيت الصامت لنظام ويندوز.\n\nحذار: هذا خيار متقدم، مخصص لمن يرغبون في إنشاء وسائط تثبيت لا تُطالب المستخدم بأي إجراء أثناء تثبيت ويندوز، وبالتالي ** تمسح القرص الأول المُكتشف على النظام المستهدف مسحًا تامًا **. في حال عدم توخي الحذر، قد يؤدي استخدام هذا الخيار إلى فقدان البيانات بشكل لا رجعة فيه!\n\nيجب عليك قراءة وقبول جميع الاقتراحات التالية للمتابعة:" +t MSG_358 "موقع الصورة غير مدعوم" +t MSG_359 "لا يمكنك استخدام صورة موجودة على القرص المستهدف، لأن هذا القرص سيُمسح بالكامل. الأمر أشبه بمحاولة قطع الغصن الذي تجلس عليه!\n\nيرجى نقل الصورة إلى قرص آخر ثم المحاولة مرة أخرى." +t MSG_360 "من الآمن ترك هذا الخيار مفعلاً حتى لو لم يكن لديك وحدة TPM أو المزيد من ذاكرة الوصول العشوائي، لأن هذا الخيار يتجاوز متطلبات الإعداد فقط ولا يمنع نظام التشغيل Windows فعليًا من استخدام جميع الأجهزة المتاحة." +t MSG_361 "لكي يعمل هذا الخيار، يجب فصل شبكة الإنترنت أثناء التثبيت!" +t MSG_362 "قم بالإجابة تلقائيًا بـ \"لا\" على أسئلة إعداد ويندوز Windows المتعلقة بمشاركة البيانات مع مايكروسفت Microsoft، بدلاً من مطالبة المستخدم بذلك." +t MSG_363 "يجب عليك ترك هذا الخيار مفعلاً، إلا إذا كنت موافقًا على وصول \"Windows To Go\" إلى الأقراص الداخلية والإجراء بصمت ترقيات نظام الملفات التي لا رجعة فيها." +t MSG_364 "إنشاء حساب محلي تلقائيًا باسم المستخدم المحدد، باستخدام كلمة مرور فارغة والتي يجب تغييرها عند تسجيل الدخول التالي." +t MSG_365 "قم بإستخدم نفس الإعدادات الإقليمية لهذا الكمبيوتر (لوحة المفاتيح، المنطقة الزمنية، العملة)، بدلاً من مطالبة المستخدم." +t MSG_366 "لا تقم بتشفير قرص النظام، إلا إذا طلب المستخدم ذلك صراحةً." +t MSG_367 "حذار: استخدم هذا الخيار فقط إذا كنت تعرف ما هو الوضع S-Mode وتفهم أن نظامك قد يظل عالقًا في الوضع S-Mode حتى بعد مسح نظام التشغيل ويندوز Windows وإعادة تثبيته بالكامل." +t MSG_368 "استخدم هذا الخيار إذا كان النظام الذي تنوي تثبيت ويندوز عليه يستخدم شهادات التمهيد الآمن Secure Boot المحدثة بالكامل. إذا لزم الأمر، يمكنك البحث في استخدام \"موسبي\" Mosby لتحديث نظامك." +t MSG_369 "استخدم هذا الخيار إذا كنت ترغب في إلغاء برامج اقلاع نظام التشغيل ويندوز الإضافية التي يحتمل أن تكون غير آمنة bootloaders، ولكن هذا يمكن أن يمنع وسائط ويندوز القياسية من الإقلاع أيضًا." +t MSG_370 "تحسينات \"جودة الحياة\": تعطيل معظم الميزات غير المرغوب فيها التي تحاول مايكروسوفت فرضها على المستخدمين." +t MSG_371 "إذا كنت تستخدم هذا الخيار، فيرجى التأكد من فصل كل الأقراص عن جهاز الكمبيوتر المستهدف، باستثناء القرص الذي تريد تثبيت نظام التشغيل ويندوز Windows عليه، وكذلك عدم ترك هذه الفلاشة موصولة بأي جهاز كمبيوتر لا تريد مسحه." +t MSG_372 "سأتأكد من فصل جميع الأقراص، باستثناء القرص الذي أريد تثبيت Windows عليه." +t MSG_373 "سأتأكد من عدم ترك هذا الوسيط متصلاً بجهاز كمبيوتر لا أنوي مسحه." +t MSG_374 "أوافق على أن أي فقدان للبيانات ناتج عن استخدام هذا الخيار يقع على عاتقي بالكامل." t MSG_900 "برنامج Rufus هو أداة تساعد في تنسيق وإنشاء أقراص الإقلاع USB، مثل مفاتيح USB، بطاقات الذاكرة، وغيرها." t MSG_901 "الموقع الرسمي: %s" t MSG_902 "كود المصدر: %s" @@ -1075,7 +1127,7 @@ t MSG_922 "قم بتنزيل UEFI Shell ISOs" ###################################################################### l "bg-BG" "Bulgarian (Български)" 0x0402 -v 3.22 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -1093,7 +1145,7 @@ t IDS_PARTITION_TYPE_TXT "Дялова схема" t IDS_TARGET_SYSTEM_TXT "Целева система" t IDC_LIST_USB_HDD "Изброяване на USB дискове" t IDC_OLD_BIOS_FIXES "Добави поправки за стари BIOS-и" -t IDC_UEFI_MEDIA_VALIDATION "Активиране на валидирането на UEFI медия по време на изпълнение" +t IDC_UEFI_MEDIA_VALIDATION "Активиране на валидиране на UEFI носителя по време на работа" t IDS_FORMAT_OPTIONS_TXT "Опции за форматиране" t IDS_FILE_SYSTEM_TXT "Файлова система" t IDS_CLUSTER_SIZE_TXT "Размер на клъстера" @@ -1139,7 +1191,7 @@ t IDC_CHECK_NOW "Провери сега" t MSG_001 "Засечена е друга инстанция" t MSG_002 "Засечено е друго работещо Rufus приложение.\nМоля, затворете първото приложение преди да стартирате ново." -t MSG_003 "ВНИМАНИЕ: ВСИЧКАТА ИНФОРМАЦИЯ НА УСТРОЙСТВО '%s' ЩЕ БЪДЕ УНИЩОЖЕНА.\nЗа да продължите с тази операция, натиснете OK. За да я прекратите, натиснете CANCEL." +t MSG_003 "ВНИМАНИЕ: ВСИЧКАТА ИНФОРМАЦИЯ НА УСТРОЙСТВО '%s' ЩЕ БЪДЕ УНИЩОЖЕНА.\nЗа да продължите с тази операция, натиснете OK. За да я прекратите, натиснете ОТКАЖИ." t MSG_004 "Rufus политика за актуализации" t MSG_005 "Желаете ли да разрешите на Rufus да проверява за актуализации в интернет?" t MSG_006 "Затвори" @@ -1220,7 +1272,7 @@ t MSG_080 "Rufus засече, че Windows все още прочиства в t MSG_081 "Неподдържан образ" t MSG_082 "Този образ не е зареждащ или използва зареждащ или компресиращ метод който не се поддържа от Rufus..." t MSG_083 "Заместване на %s ?" -t MSG_084 "Изглежда, че този ISO образ използва стара версия на '%s'.\nПоради тази причина стартиращите менюта може да не бъдат изобразени правилно.\n\nПо-нова версия може да бъде изтеглена от Rufus, за да отстрани този проблем:\n- Изберете 'Yes', за да се свържете с интернет и да изтеглите необходимият файл\n- Изберете 'No', за да продължите с настоящият ISO файл\nАко не знаете какво да правите, е препоръчително да изберете 'Yes'.\n\nБележка: Този файл ще бъде изтеглен в настоящата директория и щом '%s' е наличен, процесът ще продължи автоматично." +t MSG_084 "Изглежда, че този ISO образ използва стара версия на '%s'.\nПоради тази причина стартиращите менюта може да не бъдат изобразени правилно.\n\nПо-нова версия може да бъде изтеглена от Rufus, за да отстрани този проблем:\n- Изберете 'Да', за да се свържете с интернет и да изтеглите необходимият файл\n- Изберете 'Не', за да продължите с настоящият ISO файл\nАко не знаете какво да правите, е препоръчително да изберете 'Да'.\n\nБележка: Този файл ще бъде изтеглен в настоящата директория и щом '%s' е наличен, процесът ще продължи автоматично." t MSG_085 "Изтегляне %s" t MSG_086 "Не е избран образ" t MSG_087 "за %s NAND" @@ -1240,7 +1292,7 @@ t MSG_100 "Този ISO образ съдържа файл по голям от t MSG_101 "Липсваща WIM подръжка" t MSG_102 "Вашата платформа не може да извлече файлове от WIM архивите. WIM извличането е необходимо за създаване на EFI стартиращи Windows 7 и Windows Vista USB устройства. Може да поправите това като инсталирате последната версия на 7-Zip.\nИскате ли да посетите страницата за изтегляне на 7-zip?" t MSG_103 "Изтегляне на %s?" -t MSG_104 "%s или по-нов изисква '%s' файл да бъде инсталиран.\nТъй като този файл е повече от 100 KB в размер и винаги присъства на %s ISO образи, той не е включен в Rufus.\n\nRufus може да изтегли липсващият файл за вас:\n- Изберете 'Yes', за да се свържете с интернет и да изтеглите файла\n- Изберете 'No', ако искате ръчно да копирате този файл\n\nБележка: Този файл ще бъде изтеглен в настоящата директория и щом '%s' е наличен, процесът ще продължи автоматично." +t MSG_104 "%s или по-нов изисква '%s' файл да бъде инсталиран.\nТъй като този файл е повече от 100 KB в размер и винаги присъства на %s ISO образи, той не е включен в Rufus.\n\nRufus може да изтегли липсващият файл за вас:\n- Изберете 'Да', за да се свържете с интернет и да изтеглите файла\n- Изберете 'Не', ако искате ръчно да копирате този файл\n\nБележка: Този файл ще бъде изтеглен в настоящата директория и щом '%s' е наличен, процесът ще продължи автоматично." t MSG_105 "Прекратяването може да остави устройството в НЕИЗПОЛЗВАЕМО състояние.\nАко сте сигурни, че искате да прекратите, натиснете YES. В противен случай, натиснете NO." t MSG_106 "Моля изберете папка" t MSG_107 "Всички файлове" @@ -1250,9 +1302,9 @@ t MSG_110 "MS-DOS не може да стартира от устройство t MSG_111 "Несъвместим размер на клъстера" t MSG_112 "Форматирането на големи UDF томове може да отнеме много време. При USB 2.0 скорости, изчисленото време за форматиране е %d:%02d, при което процесната лента ще изглежда като замръзнала. Моля, бъдете търпеливи!" t MSG_113 "Голям UDF дял" -t MSG_114 "Този образ използва Syslinux %s%s, но тази програма включва само инсталационни файлове за Syslinux %s%s.\n\nТъй като новите версии на Syslinux не са съвместими една с друга и няма да е възможно Rufus да ги включи всичките, два допълнителни файла трябва да бъдат изтеглени от Интернет ('ldlinux.sys' и 'ldlinux.bss'):\n- Изберете 'Yes', за да се свържете с интернет и да изтеглите тези файлове\n- Изберете 'No', за да прекратите тази операция\n\nБележка: Тези файлове ще бъдат изтеглени в настоящата директория на програмата и ще бъдат използвани автоматично щом са налични." +t MSG_114 "Този образ използва Syslinux %s%s, но тази програма включва само инсталационни файлове за Syslinux %s%s.\n\nТъй като новите версии на Syslinux не са съвместими една с друга и няма да е възможно Rufus да ги включи всичките, два допълнителни файла трябва да бъдат изтеглени от Интернет ('ldlinux.sys' и 'ldlinux.bss'):\n- Изберете 'Да', за да се свържете с интернет и да изтеглите тези файлове\n- Изберете 'Не', за да прекратите тази операция\n\nБележка: Тези файлове ще бъдат изтеглени в настоящата директория на програмата и ще бъдат използвани автоматично щом са налични." t MSG_115 "Необходимо е изтегляне" -t MSG_116 "Този образ използва GRUB %s Но приложението съдържа само инсталацйонните файлове за GRUB %s.\n\n Тъй като различните версии на GRUB може да не са съвместими една с друга и не е възможно да се включат всички, Rufus ще опита да намери версия на GRUB инсталационният файл ('core.img'), който съвпада с този от вашият образ: \n- Изберете 'Yes', за да се свържете с интернет и да я изтеглите\n- Изберете 'No', за да използвате версията по подразбиране на Rufus\n- Изберете 'Cancel', за да прекратите операцията\n\nЗабележка: Файлът ще бъде изтеглен в настоящата директория и ще бъде използван автоматично, щом е наличен. Ако не е намерено съвпадение, ще бъде използвана версията по подразбиране." +t MSG_116 "Този образ използва GRUB %s Но приложението съдържа само инсталацйонните файлове за GRUB %s.\n\n Тъй като различните версии на GRUB може да не са съвместими една с друга и не е възможно да се включат всички, Rufus ще опита да намери версия на GRUB инсталационният файл ('core.img'), който съвпада с този от вашият образ: \n- Изберете 'Да', за да се свържете с интернет и да я изтеглите\n- Изберете 'Не', за да използвате версията по подразбиране на Rufus\n- Изберете 'Откажи', за да прекратите операцията\n\nЗабележка: Файлът ще бъде изтеглен в настоящата директория и ще бъде използван автоматично, щом е наличен. Ако не е намерено съвпадение, ще бъде използвана версията по подразбиране." t MSG_117 "Стандартна Windows инсталация" t MSG_118 "Windows To Go (Windows за USB Flash устройство)" t MSG_119 "разширени свойства на устройството" @@ -1269,7 +1321,7 @@ t MSG_129 "Създадохте носител, който използва UEFI t MSG_130 "Избор на образ на Windows" t MSG_131 "Този ISO съдържа няколко образа на Windows.\nМоля, изберете образа, който искате да използвате за тази инсталация:" t MSG_132 "Друга програма или процес използва това устройство. Наистина ли искате да го форматирате?" -t MSG_133 "Rufus забеляза, че се опитвате да създадете носител с \"Windows To Go\", базиран на 1809 ISO.\n\nПоради *MICROSOFT BUG*, този носител ще крашне при зареждане на Windows (Син екран на смъртта), ако не замените ръчно файла 'WppRecorder.sys' със същия от версия 1803.\n\nЗабележка: Rufus не може автоматично да поправи това, защото файлът 'WppRecorder.sys' е запазен с авторско право от Microsoft, поради което не можем да съхраняваме легално копие на този файл в програмата..." +t MSG_133 "Rufus установи, че се опитвате да създадете носител с \"Windows To Go\", базиран на ISO с версия 1809.\n\nПоради *БЪГ НА MICROSOFT*, този носител ще крашне при зареждане на Windows (Син екран на смъртта), освен ако не замените ръчно файла 'WppRecorder.sys' с версията от 1803.\n\nЗабележка: Rufus не може автоматично да поправи това, тъй като файлът 'WppRecorder.sys' е обект на авторско право на Microsoft и не можем законно да включим копие от него в приложението..." t MSG_134 "Тъй като за схемата за дял е избрано MBR, Rufus може да създаде дял до максимум 2 ТБ на този носител, което ще остави %s дисково пространство неизползвано.\n\nНаистина ли искате да продължите?" t MSG_135 "Версия" t MSG_136 "Издание" @@ -1302,8 +1354,7 @@ t MSG_163 "Метод по който ще бъдат създадени дял t MSG_164 "Метод, който ще бъде използван, за да се направи устройството стартиращо" t MSG_165 "Натиснете, за да изберете или изтеглите образ..." t MSG_166 "Сложете тази отметка за да разрешите показването на интернационални етикети и да зададете икона на устройството (създава autorun.inf)" -t MSG_167 "Инсталира MBR, който позволява избор на операционна система и може да маскира BIOS USB устройствения ИД" -t MSG_168 "Опитва да маскираш първото USB устройство(обикновено 0x80) като различен диск.\nТова би трябвало да е необходимо само ако инсталирате Windows XP и имате повече от един диск." +t MSG_167 "Инсталиране на UEFI bootloader, който извършва MD5 проверка на файловете на носителя" t MSG_169 "Създай допълнителен скрит дял и опитай да подредиш границите на дяловете.\nТова може да подобри засичането на стартиращи системи при по-стари версии на BIOS." t MSG_170 "Разреши изброяването на USB хард дискови заграждения. ИЗПОЛЗВАЙТЕ НА СВОЙ РИСК!!!" t MSG_171 "Стартиране на форматиращата операция.\nТова ще УНИЩОЖИ всякаква информация на целта!" @@ -1311,7 +1362,7 @@ t MSG_172 "Невалиден подпис на изтеглянето" t MSG_173 "Натиснете тук за да изберете..." t MSG_174 "Rufus - Надеждната USB форматираща програма" t MSG_175 "Версия %d.%d (Build %d)" -t MSG_176 "Български превод:\\line• Krasimir Nevenov \\line• Kaloyan Nikolov " +t MSG_176 "Български превод:\\line• Krasimir Nevenov \\line• Kaloyan Nikolov \\line• Niko " t MSG_177 "Докладвайте за проблем или поискайте подобрения на:" t MSG_178 "Допълнителни авторски права:" t MSG_179 "Политика за актуализации:" @@ -1442,7 +1493,7 @@ t MSG_303 "Покажи регистъра" t MSG_304 "Създай дисков образ на избраното устройство" t MSG_305 "Използвайте тази опция, за да изберете дали искате да използвате това устройство, за да инсталирате Windows на друг диск, или за да създадете преносима инсталация на Windows на това устройство (Windows To Go)." t MSG_306 "Бързо нулиране на устройството: %s" -t MSG_307 "Това може да отнеме време" +t MSG_307 "това може да отнеме време" t MSG_308 "Засичане на VHD" t MSG_309 "Компресиран архив" t MSG_310 "ISO-то, което сте избрали, използва UEFI и е достатъчно малко да бъде записано като EFI System Partition (ESP). Записването в ESP, вместо в обикновен дял, може да е по-подходящо за някои типове инсталации.\n\nМоля, изберете режимът, който искате да използвате, за да запишете този образ:" @@ -1458,6 +1509,8 @@ t MSG_319 "Игнорирай Boot маркер" t MSG_320 "Обновяване на дяловете (%s)..." t MSG_321 "Образът, който сте избрали, е ISOHybrid, но създателите му не са го направили съвместим с ISO/File режим на копиране.\nЗатова ще бъде използван DD метод на записване на образа." t MSG_322 "Неуспешно отваряне или прочитане на '%s'" +t MSG_323 "Прилагане на SkuSiPolicy.p7b по време на инсталация (вж. KB5042562)" +t MSG_324 "Подобрения за улеснение (без принудително активиране на Copilot, OneDrive, Outlook, Fast Startup и др.)" t MSG_325 "Прилагане на персонализации на Windows: %s" t MSG_326 "Прилагане на настройки на потребителя..." t MSG_328 "Персонализиране на инсталацията на Windows?" @@ -1469,6 +1522,43 @@ t MSG_333 "Създаване на локален акаунт с потреби t MSG_334 "Задаване на регионални настройки със същите стойности, като на този потребител" t MSG_335 "Изключване на автоматичното криптиране на устройството с BitLocker" t MSG_336 "Устойчив лог" +t MSG_337 "За да използвате тази функция, трябва да бъде изтеглен допълнителен файл ('%s') от Microsoft:\n- Изберете 'Да', за да се свържете с интернет и да го изтеглите\n- Изберете 'Не', за да отмените операцията\n\nЗабележка: Файлът ще бъде изтеглен в директорията на приложението и ще бъде използван повторно автоматично, ако вече е наличен." +t MSG_338 "Открит е анулиран UEFI bootloader" +t MSG_339 "Rufus откри, че избраният ISO образ съдържа UEFI bootloader, който е анулиран и който ще доведе до %s, когато Secure Boot е активиран на напълно актуална UEFI система.\n\n- Ако сте получили този ISO образ от ненадежден източник, трябва да обмислите възможността той да съдържа UEFI зловреден софтуер и да избягвате зареждане от него.\n- Ако сте го получили от доверен източник, трябва да потърсите по-нова версия, която няма да предизвиква това предупреждение." +t MSG_340 "екран \"Security Violation\"" +t MSG_341 "Windows Recovery екран (BSOD) с '%s'" +t MSG_342 "Компресиран VHDX образ" +t MSG_343 "Некомпресиран VHD образ" +t MSG_344 "Full Flash Update образ" +t MSG_345 "За да използвате тази функционалност, трябва да бъдат изтеглени допълнителни данни от Microsoft:\n- Изберете 'Да', за да се свържете с интернет и да ги изтеглите\n- Изберете 'Не', за да отмените операцията" +t MSG_346 "Ограничаване на Windows до S режим (НЕСЪВМЕСТИМО с заобикаляне на онлайн акаунт)" +t MSG_347 "Експертен режим" +t MSG_348 "Извличане на файлове от архив: %s" +t MSG_349 "Използване на MBR на Rufus" +t MSG_350 "Използване на подписани с 'Windows CA 2023' bootloader-и (изисква съвместим целеви компютър)" +t MSG_351 "Проверка за анулирани UEFI bootloader-и..." +t MSG_352 "Проверка за актуализации на UEFI DBX..." +t MSG_353 "Налична е актуализация на DBX" +t MSG_354 "Rufus откри актуализирана версия на DBX файловете, използвани за проверка на анулирани UEFI Secure Boot заредители. Желаете ли да изтеглите тази актуализация?\n- Изберете 'Да', за да се свържете с интернет и да изтеглите това съдържание\n- Изберете 'Не', за да отмените операцията\n\nЗабележка: Файловете ще бъдат изтеглени в директорията на приложението и ще бъдат използвани повторно автоматично, ако са налични." +t MSG_355 "⚠ТИХО⚠ изтриване на диска и инсталиране:" +t MSG_356 "Избрахте опцията за \"тиха\" инсталация на Windows.\n\nТова е разширена настройка, предназначена за потребители, които желаят да създадат носител, който не изисква намеса по време на инсталацията и съответно БЕЗУСЛОВНО ИЗТРИВА първия открит диск на целевата система. Ако не бъдете внимателни, използването на тази опция може да доведе до НЕВЪЗВРАТИМА ЗАГУБА НА ДАННИ!\n\nТРЯБВА да прочетете и приемете всички от следните условия, за да продължите:" +t MSG_358 "Неподдържано местоположение на образа" +t MSG_359 "Не можете да използвате образ, който се намира върху целевото устройство, тъй като това устройство ще бъде напълно изтрито. Това е същото като да се опитвате да отрежете клона, на който седите!\n\nМоля, преместете образа на друго място и опитайте отново." +t MSG_360 "Безопасно е да оставите тази опция включена, дори ако имате TPM или повече RAM, тъй като тя само заобикаля изискванията на инсталатора и не пречи на Windows да използва целия наличен хардуер." +t MSG_361 "За да работи тази опция, мрежата/интернет ТРЯБВА да бъдат прекъснати по време на инсталацията!" +t MSG_362 "Автоматично отговаряне с 'не' на въпросите от инсталацията на Windows, свързани със споделянето на данни с Microsoft, вместо да се изисква намеса от потребителя." +t MSG_363 "Трябва да оставите тази опция включена, освен ако нямате нищо против 'Windows To Go' да осъществява достъп до вътрешните дискове и тихомълком да извършва невъзвратими ъпгрейди на файловата система." +t MSG_364 "Автоматично създаване на локален акаунт с указаното потребителско име, използвайки празна парола, която ще трябва да бъде променена при следващото влизане." +t MSG_365 "Дублиране на регионалните настройки от този компютър (клавиатура, часова зона, валута), вместо да се изисква намеса от потребителя." +t MSG_366 "Системният диск да не се криптира, освен ако това не е изрично поискано от потребителя." +t MSG_367 "Използвайте тази опция само ако знаете какво е S режим и разбирате, че системата ви може да остане заключена в S режим дори след като напълно изтриете и преинсталирате Windows." +t MSG_368 "Използвайте тази опция, ако системата, на която планирате да инсталирате Windows, използва напълно актуални сертификати за Secure Boot. Ако е необходимо, можете да проучите възможността за използване на 'Mosby' за актуализиране на вашата система." +t MSG_369 "Използвайте тази опция, ако желаете да анулирате допълнителни потенциално опасни Windows bootloader-и, но с риск това да попречи на зареждането и на стандартни инсталационни носители на Windows." +t MSG_370 "Подобрения за по-лесна работа: Изключване на повечето нежелани функции, които Microsoft се опитва да наложи на потребителите." +t MSG_371 "Ако използвате тази опция, моля, уверете се, че сте изключили всеки диск от целевия компютър, освен този, на който искате да инсталирате Windows, както и че не сте оставили носителя включен в компютър, който не желаете да бъде изтрит." +t MSG_372 "ЩЕ се уверя, че всички дискове, освен този, на който искам да инсталирам Windows, са изключени." +t MSG_373 "ЩЕ се уверя, че не оставям този носител включен в компютър, който не планирам да изтрия." +t MSG_374 "СЪГЛАСЯВАМ СЕ, че всяка загуба на данни от тази опция е изцяло моя отговорност." t MSG_900 "Rufus е програма, с която можете лесно да форматирате и създавате стартиращи USB устройства, карти с памет и др." t MSG_901 "Официален сайт: %s" t MSG_902 "Изходен код: %s" @@ -1490,7 +1580,7 @@ t MSG_922 "Изтегляне на UEFI Shell образи" ######################################################################### l "zh-CN" "Chinese Simplified (简体中文)" 0x0804, 0x1004 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -1865,6 +1955,8 @@ t MSG_319 "忽视启动标记(Boot Marker)" t MSG_320 "刷新分区布局 (%s)..." t MSG_321 "您选择了一个 ISOHybrid 镜像文件,但此文件与 ISO/File 复制模式不兼容。\n因此强制使用DD镜像写入模式。" t MSG_322 "无法打开或读取 '%s'" +t MSG_323 "安装时应用 SkuSiPolicy.p7b(参见 KB5042562)" +t MSG_324 "优化使用体验(不强制启用 Copilot、OneDrive、Outlook、快速启动等)" t MSG_325 "正在应用 Windows 设置: %s" t MSG_326 "正在应用用户设置..." t MSG_327 "Windows 用户体验" @@ -1877,7 +1969,7 @@ t MSG_333 "创建一个使用此用户名的本地账号:" t MSG_334 "使用当前用户的区域设置" t MSG_335 "禁用 BitLocker 自动设备加密" t MSG_336 "持久化日志" -t MSG_337 "必须从微软下载额外的文件(\"diskcopy.dll\"),以安装 MS-DOS:\n- 选择 '是' 连接网络并下载这些文件\n- 选择 '否' 取消此项操作\n\n注意:文件将会被下载到当前应用程序目录,如果存在则会自动选用。" +t MSG_337 "必须从 Microsoft 下载附加文件(“%s”)才能使用此功能:\n- 选择 '是' 连接网络并下载这些文件\n- 选择 '否' 取消此项操作\n\n注意:文件将会被下载到当前应用程序目录,如果存在则会自动选用。" t MSG_338 "检测到被吊销的 UEFI 引导加载器" t MSG_339 "Rufus 检测到您选择的 ISO 包含一个已被吊销的 UEFI 引导加载器,当在最新的 UEFI 系统上启用安全启动时,将产生%s。\n\n- 如果您从非可信来源获取此 ISO 镜像,则应考虑其中可能包含 UEFI 恶意软件,应当避免启动此镜像。\n- 如果是从可信来源获取的,则应尝试查找不会产生此警告的最新版本。" t MSG_340 "一个“安全违规”界面" @@ -1890,6 +1982,30 @@ t MSG_346 "将 Windows 限制为 S 模式(与绕过在线账户功能不兼容 t MSG_347 "专家模式" t MSG_348 "正在解压文件: %s" t MSG_349 "使用 Rufus MBR" +t MSG_350 "使用'Windows CA 2023'签名的引导加载程序(需要目标电脑兼容)" +t MSG_351 "正在检查 UEFI 引导加载程序吊销状态…" +t MSG_352 "正在检查 UEFI DBX 更新…" +t MSG_353 "有可用的 DBX 更新" +t MSG_354 "Rufus 发现了 DBX 文件的更新版本(用于检查 UEFI 安全启动吊销情况)。是否下载此更新?\n- 选择'是'以连接互联网并下载该内容\n- 选择'否'以取消操作\n\n注意:该文件将下载到应用程序所在目录,若文件已存在则会自动复用。" +t MSG_355 "⚠静默⚠擦除磁盘并安装:" +t MSG_356 "您已选择使用\"静默\"Windows 安装选项。\n\n这是一个高级选项,适用于希望创建在 Windows 安装过程中不提示用户、无条件擦除目标系统上首个检测到磁盘的安装介质的用户。如果操作不慎,使用此选项可能导致不可逆的数据丢失!\n\n您必须阅读并接受以下所有条款才能继续:" +t MSG_358 "不支持的映像位置" +t MSG_359 "您不能使用位于目标驱动器上的映像,因为该驱动器将被完全擦除。这就好比坐在树枝上锯树枝!\n\n请将映像移动到其他位置后重试。" +t MSG_360 "即使您的电脑配备了 TPM 或拥有充足的内存,启用此选项也是安全的,因为该选项仅绕过安装程序的硬件要求检查,并不会阻止 Windows 使用所有可用硬件。" +t MSG_361 "要使此选项生效,安装过程中必须断开网络/互联网连接!" +t MSG_362 "自动对 Windows 安装过程中有关与 Microsoft 共享数据的问题回答'否',而非提示用户手动选择。" +t MSG_363 "建议保持此选项启用,除非您允许 'Windows To Go' 访问内部磁盘并静默执行不可逆的文件系统升级。" +t MSG_364 "使用指定的用户名自动创建本地账户,初始密码为空,用户在下次登录时需要更改密码。" +t MSG_365 "从当前电脑复制区域设置(键盘布局、时区、货币格式),而非提示用户手动选择。" +t MSG_366 "除非用户明确要求,不加密系统磁盘。" +t MSG_367 "仅在您了解什么是 S 模式、并理解即使完全擦除并重新安装 Windows 后系统仍可能被锁定在 S 模式下的情况下,才使用此选项。" +t MSG_368 "如果您计划安装 Windows 的系统已使用完全最新的安全启动证书,请使用此选项。如有需要,您可以考虑使用 'Mosby' 来更新您的系统。" +t MSG_369 "如果您希望吊销更多可能不安全的 Windows 引导加载程序,请使用此选项,但请注意这也可能导致标准 Windows 安装介质无法启动。" +t MSG_370 "优化使用体验:禁用 Microsoft 试图强加给用户的大部分不必要功能。" +t MSG_371 "如果您使用此选项,请务必断开目标电脑上除要安装 Windows 的磁盘以外的所有磁盘,同时不要将该安装介质插在任何您不想被擦除数据的电脑上。" +t MSG_372 "我将确保除要安装 Windows 的磁盘外,所有其他磁盘均已断开连接。" +t MSG_373 "我将确保不会将此介质插在我不打算擦除的电脑上。" +t MSG_374 "我同意因使用此选项而导致的任何数据丢失完全由我自己负责。" t MSG_900 "Rufus 是一个帮助您格式化并创建可启动 USB 驱动器(如 U 盘和存储卡)的工具。" t MSG_901 "官方网站: %s" t MSG_902 "源代码: %s" @@ -1912,7 +2028,7 @@ t MSG_922 "下载 UEFI Shell 镜像" ######################################################################### l "zh-TW" "Chinese Traditional (正體中文)" 0x0404, 0x0c04, 0x1404, 0x7c04 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -2100,7 +2216,7 @@ t MSG_129 "你已建立使用 UEFI:NTFS 開機引導程式的裝置。如要使 t MSG_130 "Windows 映像檔選擇" t MSG_131 "此 ISO 包含多個 Windows 映像\n請選擇要安裝的映像:" t MSG_132 "另一個程式或程序正在使用此裝置,要繼續格式化?" -t MSG_133 "Rufus 偵測到您將要建立 'Windows To Go' 1809 版本。\n\n由於微軟的程式錯誤,您將無法正常開機 (藍白當機),除非您自行更換 'WppRecorder.sys' 成 1803 版本。\n\n此檔案版權擁有者為微軟,Rufus 愛莫能助..." +t MSG_133 "Rufus 偵測到您將要建立 'Windows To Go' 1809 版本。\n\n由於微軟的程式錯誤,您將無法正常開機 (藍底白字當機),除非您自行更換 'WppRecorder.sys' 成 1803 版本。\n\n此檔案版權擁有者為微軟,Rufus 愛莫能助..." t MSG_134 "由於選擇使用 MBR 磁區,Rufus 最大只能建立 2 TB 磁區,而剩下空間 %s 將無法使用\n\n請確認是否繼續?" t MSG_135 "版本" t MSG_136 "發布版本" @@ -2287,6 +2403,8 @@ t MSG_319 "忽略 Boot Marker" t MSG_320 "正在重新整理磁區分割 (%s)..." t MSG_321 "你選擇的映像檔是 ISOHybrid,但是檔案作者沒有使之與 ISO/檔案複製模式相容。\n因此強制使用 DD 映像寫入模式。" t MSG_322 "無法開啟或讀取 '%s'" +t MSG_323 "在安裝時套用 SkuSiPolicy.p7b (參閱 KB5042562)" +t MSG_324 "Windows 體驗改善 (不強制安裝 Copilot、OneDrive、Outlook、 快速啟動等功能)" t MSG_325 "正在套用 Windows 客製化設定:%s" t MSG_326 "正在套用使用者設定..." t MSG_327 "Windows 使用者體驗" @@ -2299,7 +2417,7 @@ t MSG_333 "使用此使用者名建立一個本機帳戶:" t MSG_334 "使用目前用戶的區域設定" t MSG_335 "關閉 BitLocker 自動設備加密" t MSG_336 "持久化日誌" -t MSG_337 "必須從微軟下載額外的 'diskcopy.dll' 檔案,才能安裝 MS-DOS:\n- 選 '是' 將連線到網路並進行下載\n- 選 '否' 將取消操作\n\n註: 該檔案將被下載到 Rufus 所在的資料夾中,如果已存在將會自動使用。" +t MSG_337 "必須從 Microsoft 下載附加檔案 (“%s”) 才能使用此功能:\n- 選 '是' 將連線到網路並進行下載\n- 選 '否' 將取消操作\n\n註: 該檔案將被下載到 Rufus 所在的資料夾中,如果已存在將會自動使用。" t MSG_338 "偵測到被撤銷的 UEFI 開機引導程式" t MSG_339 "Rufus 偵測到選取的 ISO 包含一個被撤銷的 UEFI 開機引導程式,當你在完全更新的 UEFI 系統上啟用安全開機時,將產生 %s。\n\n- 如果你從無法信任的來源取得這個 ISO 映像,應該考慮到它可能包含 UEFI 惡意程式,並避免以此進行開機。\n- 如果你從可以信任的來源取得,應該嘗試找到一個更新的版本,才不會出現這個警告。" t MSG_340 "一個 \"安全違規\" 畫面" @@ -2312,6 +2430,30 @@ t MSG_346 "將 Windows 限制為 S-模式 (不相容繞過線上帳號)。" t MSG_347 "專家模式" t MSG_348 "正在擷取封存檔案: %s" t MSG_349 "使用 Rufus MBR" +t MSG_350 "使用以 Windows CA 2023 簽署的開機引導程式 (需搭配相容的電腦)" +t MSG_351 "正在檢查 UEFI 開機引導程式是否被撤銷…" +t MSG_352 "正在檢查 UEFI DBX 更新…" +t MSG_353 "有可用的 DBX 更新" +t MSG_354 "Rufus 發現用於執行 UEFI 安全開機撤銷檢查的 DBX 檔案更新版本,是否下載此更新?\n- 選擇 '是': 將連線到網路並進行下載\n- 選擇 '否': 取消此操作\n\n註: 該檔案將被下載到 Rufus 所在的資料夾中,如果已存在將會自動使用。" +t MSG_355 "以 ⚠靜默模式⚠ 清除磁碟並進行安裝:" +t MSG_356 "你已選擇使用 \"靜默\" Windows 安裝選項。\n\n此為進階選項,僅供希望建立在安裝 Windows 過程中不提示使用者的安裝媒體之使用者使用,過程中會直接清除目標系統中偵測到的第一顆磁碟。\n\n您必須閱讀並接受以下所有條款才能繼續:" +t MSG_358 "不支援的映像檔位置" +t MSG_359 "你無法使用位於目標磁碟上的映像檔,因為該磁碟將會被完全清除。這就像是試圖鋸斷自己正坐著的樹枝一樣!\n\n請將映像檔移至其它位置後再試一次。" +t MSG_360 "即使支援 TPM 或有更大的記憶體容量,保持啟用此選項也是安全的,因為此選項僅會略過硬體安裝需求,並不會影響 Windows 使用所有可用的硬體資源。" +t MSG_361 "為了讓此選項生效,安裝過程中必須切斷網路連線!" +t MSG_362 "自動拒絕 Windows 初始化中與微軟共享資料的相關問題,而非提示使用者進行選擇。" +t MSG_363 "除非你可以接受 'Windows To Go' 存取內部磁碟,並在未經提示的情況下執行不可逆的檔案系統升級,否則建議保持啟用此選項。" +t MSG_364 "自動以指定的使用者名稱建立本機帳戶,並設定空白密碼,該密碼需在下次登入時進行變更。" +t MSG_365 "複製此電腦的區域設定 (鍵盤、時區、貨幣),而非提示使用者進行選擇。" +t MSG_366 "除非使用者明確要求,否則不要加密系統磁碟。" +t MSG_367 "僅在你了解 S 模式是什麼,且知道即使完全清除並重新安裝 Windows,系統仍可能被鎖定在 S 模式的情況下使用此選項。" +t MSG_368 "若你打算安裝 Windows 的系統已完整更新過安全開機憑證,請使用此選項。若有需要,你可以考慮使用 'Mosby' 來更新系統。" +t MSG_369 "如果你希望撤銷更多可能不安全的 Windows 開機引導程式,請使用此選項,但此操作有可能導致標準 Windows 安裝媒體無法開機。" +t MSG_370 "Windows 體驗增強: 停用微軟試圖強制提供給終端使用者的大多數不必要功能。" +t MSG_371 "如果你使用此選項,請確保目標電腦中除了要安裝 Windows 的磁碟以外,其它所有磁碟都已斷開連接,並且不要將安裝媒體插在任何你不想被清除資料的電腦上。" +t MSG_372 "我將確保除要安裝 Windows 的磁碟外,所有其他磁碟均已斷開連接。" +t MSG_373 "我將確保不會將此媒體插在我不打算清除的電腦上。" +t MSG_374 "我同意因使用此選項而導致的任何資料遺失完全由我自行負責。" t MSG_900 "Rufus 是個能格式化並製作可開機 USB 快閃磁碟 (如 USB 隨身碟等) 的工具。" t MSG_901 "官方網站: %s" t MSG_902 "原始碼: %s" @@ -2328,13 +2470,13 @@ t MSG_916 "為沒有 TPM 或安全開機功能的電腦建立 Windows 11 安裝 t MSG_917 "建立持續性 Linux 磁區" t MSG_918 "為選取的磁碟機建立 VHD/DD 映像檔" t MSG_919 "計算被選取映像的 MD5、SHA-1、SHA-256 和 SHA-512 檢查碼" -t MSG_920 "執行壞軌檢查,包括對”假“USB 快閃磁碟\n的偵測" +t MSG_920 "執行壞軌檢查,包括對 ”假“ USB 快閃磁碟\n的偵測" t MSG_921 "下載微軟官方 Windows 映像檔" t MSG_922 "下載 UEFI Shell 映像檔" ######################################################################### l "hr-HR" "Croatian (Hrvatski)" 0x041a, 0x081a, 0x101a -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -2522,7 +2664,7 @@ t MSG_129 "Kreirali ste medij koji koristi UEFI:NTFS bootloader. Da bi ste boot- t MSG_130 "Odabir Windows slike" t MSG_131 "Ova ISO datoteka sadrži više Windows slika.\nOdaberite sliku koju želite koristiti za instalaciju:" t MSG_132 "Drugi program ili proces pristupa pogonu. Da li ipak želiš formatirati pogon?" -t MSG_133 "Rufus je otkrio da pokušavate kreirati \"Windows To Go\" medij baziran na verziji 1809 ISO.\n\nZbog *MICROSOFT BUG-a*, doći će do fatalne greške kod podizanja Windows-a (Blue Screen Of Death), osim ako ne zamijenite datoteku 'WppRecorder.sys' s verzijom 1803.\n\nRufus nije u mogućnosti ispraviti problem jer datoteka 'WppRecorder.sys' podliježe Microsoft \"copyright-u\", tako da bi to bilo ilegalno." +t MSG_133 "Rufus je otkrio da pokušavate stvoriti 'Windows To Go' medij na temelju 1809 ISO datoteke.\n\nZbog *MICROSOFTOVE GREŠKE*, ovaj medij će se srušiti tijekom pokretanja sustava Windows (BSOD), osim ako ručno zamijenite datoteku 'WppRecorder.sys' s verzijom 1803.\n\nRufus ne može automatski popraviti ovo za vas jer je 'WppRecorder.sys' datoteka zaštićena autorskim pravima tvrtke Microsoft, pa ne možemo legalno ugraditi kopiju datoteke u aplikaciju..." t MSG_134 "Odabrali ste MBR za shemu particije. Rufus može kreirati maksimalnu partiticiju do 2 TB na ovom mediju, ostaje %s diska neiskorišteno.\n\nJeste li sigurni da želite nastaviti?" t MSG_135 "Verzija" t MSG_136 "Podverzija" @@ -2709,6 +2851,8 @@ t MSG_319 "Zanemari Boot Marker" t MSG_320 "Osvježavam raspored particija (%s)..." t MSG_321 "Slika koju ste odabrali je \"ISOHybrid\", ali nije kompatibilna s \"ISO/File\" mod kopiranja.\nZbog toga će DD mod zapisivanja slike biti korišten." t MSG_322 "Nije moguće otvoriti ili pročitati '%s'" +t MSG_323 "Primijenite SkuSiPolicy.p7b prilikom instalacije (vidi KB5042562)" +t MSG_324 "QoL poboljšanja (Nemojte forsirati Copilot, OneDrive, Outlook, Fast Startup, itd.)" t MSG_325 "Primjena prilagodbe sustava Windows: %s" t MSG_326 "Primjena korisničkih mogućnosti..." t MSG_327 "Korisničko iskustvo sustava Windows" @@ -2721,7 +2865,7 @@ t MSG_333 "Stvorite lokalni račun s korisničkim imenom:" t MSG_334 "Postavljanje regionalnih mogućnosti na iste vrijednosti kao i vrijednosti ovog korisnika" t MSG_335 "Onemogući BitLocker automatsko šifriranje uređaja" t MSG_336 "Stalni zapisnik" -t MSG_337 "Dodatnu datoteku ('diskcopy.dll') potrebno je preuzeti s Microsofta da biste instalirali MS-DOS:\n- Odaberite 'Da' za spajanje na Internet i preuzimanje\n- Odaberite 'Ne' za poništavanje operacije\n\nNapomena: Datoteka će se preuzeti u imenik aplikacije i automatski će se ponovno koristiti ako postoji." +t MSG_337 "Za korištenje ove značajke potrebno je preuzeti dodatnu datoteku ('%s') od Microsofta:\n- Odaberite 'Da' za povezivanje s internetom i preuzimanje\n- Odaberite 'Ne' za poništavanje operacije\n\nNapomena: Datoteka će se preuzeti u direktorij aplikacije i automatski će se ponovno koristiti ako postoji." t MSG_338 "Otkriven opozvani UEFI pokretački program" t MSG_339 "Rufus je otkrio da ISO koji ste odabrali sadrži UEFI bootloader koji je opozvan i koji će proizvesti %s, kada je Secure Boot omogućen na potpuno ažuriranom UEFI sustavu.\n\n- Ako ste nabavili ovu ISO sliku iz izvora koji nije renomiran, trebali biste razmotriti mogućnost da ona sadrži zlonamjerni softver UEFI i izbjegavati pokretanje ga.\n- Ako ste ga dobili od pouzdanog izvora, trebali biste pokušati locirati noviju verziju koja neće proizvesti ovo upozorenje." t MSG_340 "zaslon \"Sigurnosna povreda\"" @@ -2734,6 +2878,30 @@ t MSG_346 "Ograniči Windows na S-Mode (NEKOMPATIBILNO s mrežnim zaobilaženjem t MSG_347 "Stručnog načina rada" t MSG_348 "Izdvajanje arhivskih datoteka: %s" t MSG_349 "Koristiti Rufus MBR" +t MSG_350 "Koristi 'Windows CA 2023' potpisane bootloadere (potrebno je kompatibilno ciljno računalo)" +t MSG_351 "Provjera za opoziva UEFI bootloadera..." +t MSG_352 "Provjera ažuriranja za UEFI DBX..." +t MSG_353 "DBX ažuriranje dostupno" +t MSG_354 "Rufus je pronašao ažuriranu verziju DBX datoteka koje se koriste za izvođenje provjera opoziva UEFI Secure Boot-a. Želite li preuzeti ovo ažuriranje?\n- Odaberite 'Da' za povezivanje s internetom i preuzimanje ovog sadržaja\n- Odaberite 'Ne' za otkazivanje operacije\n\nNapomena: Datoteke će se preuzeti u direktorij aplikacije i automatski će se ponovno koristiti ako postoje." +t MSG_355 "⚠TIHO⚠ izbriši disk i instaliraj:" +t MSG_356 "Odabrali ste korištenje \"tihe\" opcije instalacije sustava Windows.\n\nOvo je napredna opcija, rezervirana za ljude koji žele stvoriti medij koji ne obavještava korisnika tijekom instalacije sustava Windows i stoga BEZUVJETNO BRIŠE prvi otkriveni disk na sustavu. Ako niste oprezni, korištenje ove opcije može rezultirati NEPOVRATNIM GUBITKOM PODATAKA!\n\nMORATE pročitati i prihvatiti sve sljedeće izjave da biste nastavili:" +t MSG_358 "Nepodržana lokacija slike" +t MSG_359 "Ne možete koristiti sliku koja se nalazi na ciljnom disku, jer će taj disk biti potpuno izbrisan. To je isto kao da pokušavate prepiliti granu na kojoj sjedite!\n\nPremjestite sliku na drugu lokaciju i pokušajte ponovno." +t MSG_360 "Sigurno je ostaviti ovu opciju omogućenu čak i ako imate TPM ili više RAM-a, jer ova opcija samo zaobilazi zahtjeve za postavljanje i zapravo ne sprječava Windows da koristi sav dostupan hardver." +t MSG_361 "Da bi ova opcija radila, mreža/internet MORA biti isključeni tijekom instalacije!" +t MSG_362 "Automatski odgovori s 'ne' na pitanja tijekom postavljanju sustava Windowsa koja se odnose na dijeljenje podataka s Microsoftom, umjesto da to pita korisnika." +t MSG_363 "Ovu opciju biste trebali ostaviti omogućenu, osim ako vam ne smeta da 'Windows To Go' pristupa internim diskovima i tiho izvršava nepovratne nadogradnje datotečnog sustava." +t MSG_364 "Automatski stvori lokalni račun s navedenim korisničkim imenom, koristeći praznu lozinku koju će trebati promijeniti pri prvoj prijavi." +t MSG_365 "Duplicirajte regionalne postavke s ovog računala (tipkovnica, vremenska zona, valuta), umjesto da pita korisnika." +t MSG_366 "Ne šifrirajte sistemski disk, osim ako to korisnik izričito zatraži." +t MSG_367 "Koristite ovu opciju samo ako znate što je S-Mode i razumijete da vaš sustav možda bude zaključan u S-Modeu čak i nakon što potpuno izbrišete i ponovno instalirate Windows." +t MSG_368 "Koristite ovu opciju ako sustav na koji planirate instalirati Windows koristi potpuno ažurirane Secure Boot certifikate. Ako je potrebno, možete pogledati u korištenje 'Mosby' za ažuriranje sustava." +t MSG_369 "Koristite ovu opciju ako želite opozvati dodatne potencijalno nesigurne Windows bootloadere, ali s mogućnošću sprječavanja pokretanja standardnih Windows medija." +t MSG_370 "\"kvalitete života\" poboljšanja: Onemogućite većinu neželjenih značajki koje Microsoft pokušava forcirati na korisnicima." +t MSG_371 "Ako koristite ovu opciju, obavezno odspojite svaki disk od ciljnog računala, osim onog na koji želite instalirati Windows, i ne ostavljajte medij priključen u bilo koj računalo koje ne želite izbrisati." +t MSG_372 "POBRINUT ĆU SE da svi diskovi, osim onog na koji želim instalirati Windows, budu odspojeni." +t MSG_373 "POBRINUT ĆU SE da ovaj medij ne ostavim priključen na računalo koje ne planiram izbrisati." +t MSG_374 "SLAŽEM SE da bilo kakav gubitak podataka uzrokovan korištenjem ove opcije pada isključivo na mene." t MSG_900 "Rufus je aplikacija koja olakšava formatiranje i stvaranje USB pokretačkih jedinica." t MSG_901 "Službena stranica: %s" t MSG_902 "Šifra izvora: %s" @@ -2754,7 +2922,7 @@ t MSG_922 "Preuzmite ISO-ove UEFI ljuske" ######################################################################### l "cs-CZ" "Czech (Čeština)" 0x0405 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -2939,7 +3107,7 @@ t MSG_129 "Vytvořili jste médium, které používá zavaděč UEFI: NTFS. Pama t MSG_130 "Vybrat obrazu systému Windows" t MSG_131 "ISO obsahuje více obrazů Windows..\nVyberte prosím obraz, který chcete použít pro tuto instalaci:" t MSG_132 "K tomuto disku přistupuje jiný program nebo proces. Chcete ho přesto formátovat?" -t MSG_133 "Rufus zjistil, že se pokoušíte vytvořit Windows To Go médií založené na 1809 ISO.\n\nVzhledem k tomu, že *MICROSOFT BUG*, toto médium se při spouštění systému Windows zhroutí (Blue Screen), pokud soubor „WppRecorder.sys“ ručně nenahradíte verzí 1803.\n\nDůvodem proč Rufus nemůže automaticky opravit, je, že soubor „WppRecorder.sys“ je souborem chráněným autorskými právy společnosti Microsoft, takže nemůžeme legálně vložit kopii souboru do aplikace..." +t MSG_133 "Rufus zjistil, že se pokoušíte vytvořit médium „Windows To Go“ založené na 1809 ISO.\n\nKvůli chybě *MICROSOFT BUG* dojde k pádu tohoto média během spouštění systému Windows (modrá obrazovka smrti), pokud ručně nenahradíte soubor 'WppRecorder.sys' verzí 1803..\n\nVšimněte si také, že důvod, proč to Rufus nemůže automaticky opravit za vás, je ten, že „WppRecorder.sys“ je soubor chráněný autorským právem společnosti Microsoft, takže nemůžeme legálně vložit kopii souboru do aplikace..." t MSG_134 "Pro schéma oddílu byla vybráno MBR, Rufus na tomto médiu vytvořit pouze oddíl o velikosti až 2 TB, což ponechá místo na disku %s nedostupné.\n\nJste si jistý, že chcete pokračovat?" t MSG_135 "Verze" t MSG_136 "Vydání" @@ -3125,6 +3293,8 @@ t MSG_319 "Ignorovat Boot Marker" t MSG_320 "Obnovení rozložení oddílu (%s)..." t MSG_321 "Vybraný obraz je ISOHybrid, ale jeho tvůrci ho neudělali kompatibilní s režimem kopírování ISO/File..\nV důsledku toho bude vynucen režim zápisu obrázků DD." t MSG_322 "Nelze otevřít nebo přečíst soubor '%s'" +t MSG_323 "Při instalaci použijte SkuSiPolicy.p7b (viz KB5042562)" +t MSG_324 "QoL vylepšení (neinstaluje Copilota, OneDrive, Outlook, rychlé spuštění atd.)" t MSG_325 "Použití přizpůsobení systému Windows: %s" t MSG_326 "Použití uživatelských možností..." t MSG_327 "Uživatelské prostředí systému Windows" @@ -3137,7 +3307,7 @@ t MSG_333 "Vytvořte místní účet s uživatelským jménem:" t MSG_334 "Nastavení regionálních voleb na stejné hodnoty jako u tohoto uživatele" t MSG_335 "Zakázání automatického šifrování zařízení nástrojem BitLocker" t MSG_336 "Trvalý protokol" -t MSG_337 "Pro instalaci systému MS-DOS je nutné stáhnout další soubor ('diskcopy.dll') od společnosti Microsoft:\n- Vyberte 'Ano' pro připojení k internetu a stažení\n- Výběrem možnosti \"Ne\" operaci zrušíte\n\nPoznámka: Soubor bude stažen do adresáře aplikace a bude automaticky znovu použit, pokud je přítomen." +t MSG_337 "Další soubor ('%s') je nutné stáhnout ze stránek společnosti Microsoft, aby bylo možné tuto funkci používat:\n- Výběrem možnosti \"Ano\" se připojíte k Internetu a stáhnete ji.\n- Výběrem možnosti \"Ne\" operaci zrušíte\n\nPoznámka: Soubor bude stažen do adresáře aplikace a bude automaticky znovu použit, pokud je přítomen.." t MSG_338 "Byl zjištěn odvolaný zavaděč UEFI" t MSG_339 "Rufus zjistil, že vámi vybraný ISO obsahuje zavaděč UEFI, který byl odvolán a který vytvoří %s, když je v plně aktuálním systému UEFI povoleno Secure Boot.\n\n- Pokud jste tento obraz ISO získali z nerenomovaného zdroje, měli byste zvážit možnost, že by mohl obsahovat malware UEFI a vyhnout se bootování z něj.\n- Pokud jste jej získali z důvěryhodného zdroje, měli byste se pokusit najít aktuálnější verzi, která toto varování nevyvolá." t MSG_340 "obrazovka \"Porušení zabezpečení\"" @@ -3150,6 +3320,30 @@ t MSG_346 "Omezit Windows na S-Mode (NEKOMPATIBILNÍ s online vynecháním účt t MSG_347 "Expertní režim" t MSG_348 "Rozbalení archivních souborů: %s" t MSG_349 "Použijte Rufus MBR" +t MSG_350 "Použití zavaděčů s podpisem \"Windows CA 2023\" (vyžaduje kompatibilní cílový počítač)." +t MSG_351 "Kontrola zrušení zavaděče UEFI..." +t MSG_352 "Kontrola aktualizací UEFI DBX..." +t MSG_353 "DBX aktualizace k dispozici" +t MSG_354 "Rufus našel aktualizovanou verzi souborů DBX používaných k provádění kontrol odvolání UEFI Secure Boot. Chcete stáhnout tuto aktualizaci?\n- Chcete-li se připojit k Internetu a stáhnout tento obsah, vyberte možnost \"Ano\".\n- Výběrem možnosti \"Ne\" operaci zrušíte\n\nPoznámka: Soubory budou staženy do adresáře aplikace a budou automaticky znovu použity, pokud jsou k dispozici." +t MSG_355 "⚠TICHÁ⚠ vymazat disk a nainstalovat:" +t MSG_356 "Zvolili jste použití možnosti \"tichá“ instalace systému Windows.\n\nToto je pokročilá možnost vyhrazená pro uživatele, kteří chtějí vytvořit médium, jež během instalace Windows uživatele nevyzve k potvrzení a BEZPODMÍNEČNĚ VYMAŽE první detekovaný disk v cílovém systému. Pokud si nedáte pozor, použití této volby může mít za následek NEVRATNOU ZTRÁTU VŠECH DAT!\n\nPro pokračování MUSÍTE přečíst a přijmout všechna následující prohlášení:" +t MSG_358 "Nepodporované umístění obrázku" +t MSG_359 "Nemůžete použít obraz umístěný na cílové jednotce, protože tato jednotka bude zcela vymazána. Je to stejné, jako když se snažíte uříznout větev, na které sedíte!\n\nPřesuňte prosím obrázek na jiné místo a zkuste to znovu." +t MSG_360 "Je bezpečné ponechat tuto možnost povolenou i v případě, že máte TPM nebo více RAM, protože tato možnost pouze obchází požadavky na nastavení a ve skutečnosti nebrání systému Windows používat veškerý dostupný hardware." +t MSG_361 "Aby tato možnost fungovala, MUSÍ být během instalace odpojena síť/internet!" +t MSG_362 "Automaticky odpovídat 'ne' na otázky nastavení systému Windows týkající se sdílení dat se společností Microsoft namísto dotazování uživatele." +t MSG_363 "Tuto možnost byste měli ponechat povolenou, pokud vám nevadí, že 'Windows To Go' přistupuje k interním diskům a tiše provádí nevratné aktualizace souborového systému." +t MSG_364 "Automaticky vytvořit místní účet se zadaným uživatelským jménem, s prázdným heslem, které bude nutné změnit při příštím přihlášení." +t MSG_365 "Převzít místní nastavení z tohoto počítače (klávesnice, časové pásmo, měna) bez nutnosti zásahu uživatele." +t MSG_366 "Nešifrovat systémový disk bez výslovného požadavku uživatele." +t MSG_367 "Tuto možnost použijte pouze v případě, že víte, co je S-Mode, a chápete, že váš systém může být uzamčen v S-Mode i po úplném vymazání a přeinstalaci systému Windows." +t MSG_368 "Tuto možnost použijte, pokud systém, do kterého plánujete nainstalovat systém Windows, používá plně aktuální certifikáty Secure Boot. V případě potřeby se můžete podívat na možnost aktualizace systému pomocí nástroje Mosby = More Secure Secure Boot." +t MSG_369 "Tuto možnost použijte, pokud chcete odebrat další potenciálně nebezpečné zavaděče systému Windows, které však mohou zabránit i zavádění standardních médií systému Windows." +t MSG_370 "\"Vylepšení komfortu uživatele\" vylepšení: Zakázat většinu nežádoucích funkcí, které se Microsoft snaží vnucovat koncovým uživatelům." +t MSG_371 "Pokud použijete tuto možnost, ujistěte se, že jste od cílového počítače odpojili všechny disky kromě toho, na který chcete nainstalovat systém Windows, a nenechávejte médium připojené k žádnému počítači, který nechcete vymazat." +t MSG_372 "ZAJISTÍM, že všechny disky, kromě toho, na který chci nainstalovat Windows, budou odpojeny." +t MSG_373 "ZAJISTÍM, že toto médium nezůstane připojené k počítači, který nemám v plánu vymazat." +t MSG_374 "SOUHLASÍM, že jakákoli ztráta dat způsobená použitím této možnosti je zcela mou odpovědností." t MSG_900 "Rufus je nástroj, který pomáhá formátovat a vytvářet bootovací USB flash disky, jako jsou USB klíče, paměťové karty atd." t MSG_901 "Oficiální stránky: %s" t MSG_902 "Zdrojový kód: %s" @@ -3171,7 +3365,7 @@ t MSG_922 "Stažení souborů UEFI Shell ISO" ######################################################################### l "da-DK" "Danish (Dansk)" 0x0406 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -3353,7 +3547,7 @@ t MSG_129 "Du hare lige oprettet et medie, der bruger UEFI:NTFS bootloader. Husk t MSG_130 "Windows billedvalg" t MSG_131 "Denne ISO indeholder flere Windows-billeder.\nVælg venligt billedet, du vil bruge til denne installation:" t MSG_132 "Et andet program eller en proces er i gang med at tilgå dette drev. Vil du formatere det alligevel?" -t MSG_133 "Rufus har opdaget, at du forsøger at oprette et Windows To Go medie baseret på en 1908 ISO.\n\nPå grund af en *MICROSOFT BUG* vil dette medie fejle under Windows boot (Blue Screen of Death) medmindre du manuelt erstatter filen 'WppRecorder.sys' med en 1803-version.\n\nBemærk også, at årsagen til, at Rufus ikke automatisk kan løse dette for dig, er at 'WppRecorder.sys' er en Microsoft-ophavsretlig beskyttet fil, så vi kan ikke lovligt inkludere en kopi af filen i applikationen..." +t MSG_133 "Rufus har opdaget, at du forsøger at oprette et Windows To Go medie baseret på en 1809 ISO.\n\nPå grund af en *MICROSOFT BUG* vil dette medie fejle under Windows boot (Blue Screen of Death) medmindre du manuelt erstatter filen 'WppRecorder.sys' med en 1803-version.\n\nBemærk også, at årsagen til, at Rufus ikke automatisk kan løse dette for dig, er at 'WppRecorder.sys' er en Microsoft-ophavsretlig beskyttet fil, så vi kan ikke lovligt inkludere en kopi af filen i applikationen..." t MSG_134 "Fordi MBR er udvalgt for partitionsordning, kan Rufus kun oprette en partition op til 2 TB på dette medie, hvilket gør %s af diskplads utilgængelig.\n\nEr du sikker, du vil fortsætte?" t MSG_136 "Udgave" t MSG_138 "Sprog" @@ -3533,6 +3727,8 @@ t MSG_319 "Ignorer boot markering" t MSG_320 "Genindlæser partition layout (%s)" t MSG_321 "Det valgte billede er et ISOHybrid, men dets skabere har ikke gjort det kompatibelt med ISO / Fil kopi måde.\nDerfor bruges DD-billedskrivningstilstand." t MSG_322 "Ude af stand til at åbne eller læse '%s'" +t MSG_323 "Påfør SkuSiPolicy.p7b efter installationen (Se KB5042562)" +t MSG_324 "Livskvalitets forbedringer (Ikke påtving Copilot, OneDrive, Outlook, Fast Startup, osv.)" t MSG_325 "Anvender Windows tilpasninger : %s" t MSG_326 "Anvender bruger valgmuligheder..." t MSG_327 "Windows Bruger Oplevelse" @@ -3545,7 +3741,7 @@ t MSG_333 "Opret en local burger med brugernavn:" t MSG_334 "Sæt regionale muligheder til de samme værdier some denne brugers" t MSG_335 "Deaktiver Bitlockers automatiske apparat kryptering" t MSG_336 "Vedvarende log" -t MSG_337 "En ekstra fil ('diskcopy.dll') skal hentes fra Microsoft for at installere MS-DOS:\n- Vælg 'Ja' for at tilslutte til internettet og hente den\n- Vælg 'Nej' for at afbryde operationen\n\nNote: Filen vil blive hentet i programmets mappe og vil blive genbrugt automatisk hvis tilstede." +t MSG_337 "En yderligere fil ('%s') skal downloades fra Microsoft for at bruge denne funktion:\n- Vælg 'Ja' for at tilslutte til internettet og hente den\n- Vælg 'Nej' for at afbryde operationen\n\nNote: Filen vil blive hentet i programmets mappe og vil blive genbrugt automatisk hvis tilstede." t MSG_338 "Tilbagekaldt UEFI Bootloader opdaget" t MSG_339 "Rufus har opdaget at ISO filen du har valgt indeholder en UEFI bootloader der er blevet tilbagekaldt og vil producere %s, når Secure Boot er slået til på et fuldt opdateret UEFI system.\n\n- Hvis du har hentet dette ISO billed fra en upålidelig kilde, bør du overveje muligheden for at den muligvis indeholder UEFI malware og undgå at boote fra den.\n- Hvis du har hentet den fra en pålidelig kilde, bør du kigge efter en nyere version, som ikke vil producere denne advarsel." t MSG_340 "en \"Sikkerhedsbrud\" skærm" @@ -3558,6 +3754,30 @@ t MSG_346 "Begræns Windows til S-Mode (Inkompatibel med Online bruger bypass)" t MSG_347 "Ekspert Tilstand" t MSG_348 "Udpakker arkiv filer: %s" t MSG_349 "Brug Rufus MBR" +t MSG_350 "Brug 'Windows CA 2023' signerede bootloaders (Kræver en kompatibel PC)" +t MSG_351 "Tjekker for UEFI bootloader tilbagekaldelse..." +t MSG_352 "Tjekker for UEFI DBX opdateringer..." +t MSG_353 "DBX opdatering tilgængelig" +t MSG_354 "Rufus har fundet en opdateret version af DBX filerne som bruges til at udføre UEFI Secure Boot tilbagekaldelses tjek. Vil du hente denne opdatering?\n- Vælg 'Ja' for at forbinde til internettet og hente disse filer\n- Vælg 'Nej' for at afbryde operationen\n\nNote: Filerne vil blive hentet i programmets mappe og vil blive genbrugt automatisk hvis tilstede." +t MSG_355 "⚠STILLE⚠ slet disk og installer:" +t MSG_356 "Du har valgt at bruge den \"stille\" Windows installations valgmulighed.\n\nDette er en advanceret valgmulighed, som er reserveret for personer som vil lave et media som ikke prompter brugeren under Windows installationen, og vil derfor UBETINGET SLETTE den første disk som er opdaget på systemet. Hvis du ikke er forsigtig, så kan denne valgmulighed resultere i UOPRETTELIG DATA TAB!\n\nDu SKAL læse og acceptere alle følgende erklæringer for at fortsætte:" +t MSG_358 "Billedeplaceringen er ikke understøttet" +t MSG_359 "Du kan ikke bruge et billed som er placeret på det valgte drev, da drevet vil blive fuldstændig slettet. Det er som at save i den græn man sidder på!\n\nVær venlig at flytte billedet til en anden placering og prøv igen." +t MSG_360 "Det er sikkert at have denne indstilling slået til, selv hvis du har en TPM eller mere RAM, da denne valgmulighed kun springer setup kravene over, og forhindre ikke Windows i at bruge alt tilgængelig hardware." +t MSG_361 "For at denne indstilling virker, SKAL netværk/internettet slåes fra under installationen!" +t MSG_362 "Automatisk svar 'nej' til alle spørgsmål under Windows opsætningen som vedrører at dele data med Microsoft, i stedet for at prompte brugeren." +t MSG_363 "Du bør lade denne indstilling være aktiveret, med mindre du er okay med at 'Windows To Go' tilgår de interne diske og udføre uoprettelig fil systems opgraderinger lydløst." +t MSG_364 "Automatisk opret en local burger, med det specificerede brugernavn, med en tom adganskode som skal laves om næste gang der logges ind." +t MSG_365 "Dupliker de regionale indstillinger fra denne PC (tastatur, tidszone, valuta), i stedet for at prompte brugeren." +t MSG_366 "Krypter ikke system disken, med mindre brugeren specifikt har bedt om det." +t MSG_367 "Brug denne indstilling hvis du ved hvad S-Mode er, og forstår at dit system muligvis bliver låst fast i S-Mode, selv efter en komplet sletning og reinstallering af Windows." +t MSG_368 "Brug denne indstilling hvis det system du har planlagt at installere Windows på, har fuldt opdateret Secure Boot certifikater. Om nødvendigt, kan du se på at bruge 'Mosby' til at opdatere dit system." +t MSG_369 "Brug denne instilling hvis du vil tilbagekalde yderligere potentielt usikre Windows bootloaders, men med risiko for at forhindre normale Windows medier fra at boote." +t MSG_370 "\"Livskvalitets\" forbedringer: Deaktiver de fleste uønskede funktioner Microsoft prøver at tvinge slutbrugerne til at bruge." +t MSG_371 "Hvis du burger denne indstilling, sørg for at alle diske, på nær den som du vil installere Windows på er frakoblet, og ikke lade mediet side i en PC du ikke vil slette." +t MSG_372 "JEG VIL sørge for, at alle diske, undtagen den jeg vil installere Windows på, er frakoblet." +t MSG_373 "JEG VIL sørge for, at dette medie ikke er tilsluttet en pc, jeg ikke planlægger at slette." +t MSG_374 "JEG ACCEPTERER, at ethvert datatab som følge af brugen af denne mulighed er helt mit eget ansvar." t MSG_900 "Rufus er et værktøj, der hjælper med at formatere og skabe startbare USB-flashdrev, såsom USB-nøgler/USB-pinde, USB-stik, osv." t MSG_901 "Officiel side: %s" t MSG_902 "Kildekode: %s" @@ -3582,7 +3802,7 @@ t MSG_922 "Hent UEFI Shell ISOer" ######################################################################### l "nl-NL" "Dutch (Nederlands)" 0x0413, 0x0813 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -3617,6 +3837,7 @@ t IDD_LICENSE "Rufus-licentie" g IDD_LOG t IDCANCEL "Sluiten" +t IDD_LOG "Logboek" t IDC_LOG_CLEAR "Wissen" t IDC_LOG_SAVE "Opslaan" @@ -3767,7 +3988,7 @@ t MSG_129 "U hebt net een medium aangemaakt dat de UEFI:NTFS-bootloader gebruikt t MSG_130 "Windows-image selectie" t MSG_131 "Deze ISO bevat meerdere Windows-images.\nSelecteer de image die u wilt gebruiken voor deze installatie:" t MSG_132 "Een ander programma of proces gebruikt deze schijf. Wilt u ze toch formatteren?" -t MSG_133 "Rufus heeft gedetecteerd dat u probeert om een Windows To Go medium aan te maken gebaseerd op een 1809-ISO\n\nDoor een *MICROSOFT-BUG* zal dit medium crashen tijdens het opstarten van Windows (Blue Screen Of Death), tenzij u manueel het bestand 'WppRecorder.sys' vervangt door een 1803-versie.\n\nMerk ook op dat Rufus dit voor u niet automatisch kan oplossen omdat 'WppRecorder.sys' een Microsoft-auteursrecht heeft, dus we kunnen geen kopie van het bestand in de toepassing inbedden op een legale manier..." +t MSG_133 "Rufus heeft vastgesteld dat u probeert een ‘Windows To Go’-medium te maken op basis van een 1809-ISO.\n\nVanwege een *MICROSOFT-BUG* zal dit medium tijdens het opstarten van Windows crashen (Blue Screen Of Death), tenzij u het bestand ‘WppRecorder.sys’ handmatig vervangt door een versie uit 1803.\n\nHoud er ook rekening mee dat Rufus dit niet automatisch voor u kan oplossen omdat ‘WppRecorder.sys’ een door Microsoft auteursrechtelijk beschermd bestand is, waardoor we wettelijk gezien geen kopie van het bestand in de applicatie mogen opnemen..." t MSG_134 "Omdat MBR geselecteerd werd als partitie-indeling, kan Rufus slechts een partitie tot 2 TB aanmaken op dit medium, wat %s schijfruimte onbeschikbaar zal laten.\n\nWeet u zeker dat u wilt doorgaan?" t MSG_135 "Versie" t MSG_137 "Editie" @@ -3952,6 +4173,8 @@ t MSG_319 "Opstartmarkering negeren" t MSG_320 "Partitie-layout verversen (%s)..." t MSG_321 "De image die u hebt geselecteerd is een ISOHybrid, maar de makers ervan hebben hem niet compatibel gemaakt met de ISO/bestandskopieermodus.\nAls gevolg daarvan zal de DD-image schrijfmodus worden afgedwongen." t MSG_322 "Kan '%s' niet openen of lezen" +t MSG_323 "SkuSiPolicy.p7b toepassen tijdens installatie (zie KB5042562)" +t MSG_324 "Verbeteringen in de gebruikersvriendelijkheid (Copilot, Onedrive, Outlook, Fast Startup, enz niet forceren)" t MSG_325 "Windows aanpassen: %s" t MSG_326 "Gebruikersopties toepassen..." t MSG_327 "Windows gebruikerservaring" @@ -3963,7 +4186,7 @@ t MSG_332 "Voorkomen dat Windows To Go toegang heeft tot interne schijven" t MSG_333 "Lokale account met gebruikersnaam aanmaken:" t MSG_334 "Regionale opties op dezelfde waarden als deze gebruiker instellen" t MSG_335 "Automatische Bitlocker-apparaatversleuteling uitschakelen" -t MSG_337 "Er moet een extra bestand ('diskcopy.dll') worden gedownload van Microsoft om MS-DOS te installeren:\n- Selecteer 'Ja' om verbinding te maken met internet en het bestand te downloaden\n- Selecteer 'Nee' om de bewerking te annuleren\n\nOpmerking: het bestand wordt gedownload in de map van de toepassing en wordt automatisch opnieuw gebruikt als het aanwezig is." +t MSG_337 "Om deze functie te kunnen gebruiken, moet u een extra bestand (‘%s’) downloaden van Microsoft:\n- Selecteer ‘Ja’ om verbinding te maken met internet en het bestand te downloaden\n- Selecteer ‘Nee’ om de handeling te annuleren\n\nOpmerking: het bestand wordt gedownload naar de map van de toepassing en wordt automatisch opnieuw gebruikt als het daar al aanwezig is." t MSG_338 "Ingetrokken UEFI-bootloader gedetecteerd" t MSG_339 "Rufus heeft gedetecteerd dat de ISO die u hebt geselecteerd een UEFI-bootloader bevat die is ingetrokken en %s zal produceren wanneer Secure Boot is ingeschakeld op een volledig bijgewerkt UEFI-systeem.\n\n- Als u deze ISO-image hebt verkregen van een niet-vertrouwde bron, houdt u best rekening met de mogelijkheid dat het UEFI-malware bevat en vermijdt u om ervan op te starten.\n- Als u het van een betrouwbare bron hebt verkregen, moet u proberen een meer up-to-date versie te vinden die deze waarschuwing niet produceert." t MSG_340 "een \"Security Violation\"-scherm" @@ -3976,6 +4199,30 @@ t MSG_346 "Windows beperken tot S-Modus (NIET COMPATIBEL met omzeiling voor onli t MSG_347 "Expert-modus" t MSG_348 "Archiefbestanden uitpakken: %s" t MSG_349 "Rufus MBR gebruiken" +t MSG_350 "'Windows CA 2023' signed bootloaders gebruiken (alleen voor compatibele doel-pc's)" +t MSG_351 "Controleren of de UEFI-bootloader is ingetrokken..." +t MSG_352 "Controleren op updates voor UEFI DBX..." +t MSG_353 "Update voor DBX beschikbaar" +t MSG_354 "Rufus heeft een bijgewerkte versie gevonden van de DBX-bestanden die worden gebruikt voor het controleren van de intrekking van UEFI Secure Boot. Wilt u deze update downloaden?\n- Selecteer ‘Ja’ om verbinding te maken met internet en deze inhoud te downloaden\n- Selecteer ‘Nee’ om de bewerking te annuleren\n\nOpmerking: de bestanden worden gedownload naar de map van de toepassing en worden automatisch opnieuw gebruikt als ze daar al aanwezig zijn.\n\nVertaald met DeepL.com (gratis versie)" +t MSG_355 "⚠STIL⚠ schijf wissen en installeren:" +t MSG_356 "U hebt ervoor gekozen om de “stille” Windows-installatieoptie te gebruiken.\n\nDit is een geavanceerde optie, bedoeld voor gebruikers die installatiemedia willen maken waarbij de gebruiker tijdens de Windows-installatie niet om bevestiging wordt gevraagd en waarbij de eerste gedetecteerde schijf op het doelsysteem daarom ONVOORWAARDELIJK WORDT GEWIST. Als u niet voorzichtig bent, kan het gebruik van deze optie leiden tot ONOMKEERBAAR GEGEVENSVERLIES!\n\nU MOET alle volgende verklaringen lezen en accepteren om door te gaan:" +t MSG_358 "Locatie van image niet ondersteund" +t MSG_359 "U kunt geen image gebruiken die op de doelschijf staat, aangezien die schijf volledig zal worden gewist. Dat is hetzelfde als proberen de tak door te zagen waarop u zit!\n\nVerplaats de image naar een andere locatie en probeer het opnieuw." +t MSG_360 "U kunt deze optie gerust ingeschakeld laten, zelfs als u een TPM of meer RAM-geheugen hebt, aangezien deze optie alleen de installatievereisten omzeilt en niet daadwerkelijk verhindert dat Windows alle beschikbare hardware gebruikt." +t MSG_361 "Om deze optie te laten werken, MOET de netwerk-/internetverbinding tijdens de installatie uitgeschakeld zijn!" +t MSG_362 "Beantwoord de vragen in de Windows-installatieprocedure over het delen van gegevens met Microsoft automatisch met ‘nee’, in plaats van de gebruiker hierom te vragen." +t MSG_363 "Laat deze optie ingeschakeld, tenzij u ermee akkoord gaat dat ‘Windows To Go’ toegang krijgt tot interne schijven en in de achtergrond onomkeerbare upgrades van het bestandssysteem uitvoert." +t MSG_364 "Maak automatisch een lokaal account aan met de opgegeven gebruikersnaam en een leeg wachtwoord, dat bij de volgende aanmelding moet worden gewijzigd." +t MSG_365 "Kopieer de regionale instellingen van deze pc (toetsenbord, tijdzone, valuta), in plaats van de gebruiker hierom te vragen." +t MSG_366 "De systeemschijf niet versleutelen, tenzij de gebruiker hier uitdrukkelijk om vraagt." +t MSG_367 "Gebruik deze optie alleen als u weet wat S-Mode is en u zich ervan bewust bent dat uw systeem mogelijk in S-Mode blijft staan, zelfs nadat u Windows volledig hebt gewist en opnieuw hebt geïnstalleerd." +t MSG_368 "Gebruik deze optie als het systeem waarop u Windows wilt installeren, volledig bijgewerkte Secure Boot-certificaten gebruikt. Indien nodig kunt u overwegen om ‘Mosby’ te gebruiken om uw systeem bij te werken." +t MSG_369 "Gebruik deze optie als u extra, mogelijk onveilige Windows-bootloaders wilt uitschakelen, maar houd er rekening mee dat hierdoor mogelijk ook standaard Windows-media niet meer kunnen opstarten." +t MSG_370 "Verbeteringen op het gebied van levenskwaliteit: schakel de meeste ongewenste functies uit die Microsoft eindgebruikers probeert op te dringen." +t MSG_371 "Als u deze optie gebruikt, zorg er dan voor dat u alle schijven van de doelcomputer loskoppelt, behalve de schijf waarop u Windows wilt installeren, en laat het installatiemedium niet aangesloten op een computer die u niet wilt wissen." +t MSG_372 "IK ZAL ervoor zorgen dat alle schijven, behalve de Windows-schijf, zijn losgekoppeld." +t MSG_373 "IK ZAL ervoor zorgen dat ik dit medium niet aangesloten laat op een pc die ik niet wil wissen." +t MSG_374 "IK GA ERMEE AKKOORD dat gegevensverlies door deze optie volledig mijn verantwoordelijkheid is." t MSG_900 "Rufus is een programma dat helpt bij het formatteren en aanmaken van opstartbare USB-flash-drives, zoals USB-sticks, geheugensticks, enz." t MSG_901 "Officiële site: %s" t MSG_902 "Broncode: %s" @@ -3998,7 +4245,7 @@ t MSG_922 "UEFI Shell ISO's downloaden" ######################################################################### l "fi-FI" "Finnish (Suomi)" 0x040B -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -4185,7 +4432,7 @@ t MSG_129 "Loit juuri tietovälineen, joka käyttää UEFI:NTFS -käynnistyslata t MSG_130 "Windows-levykuvan valinta" t MSG_131 "Tämä ISO-tiedosto sisältää useita Windows-levykuvia.\nValitse levykuva, jota haluat käyttää tähän asennukseen:" t MSG_132 "Jokin toinen ohjelma tai prosessi käyttää tätä levyä parhaillaan. Haluatko silti alustaa sen?" -t MSG_133 "Rufus on havainnut, että yrität luoda Windows to Go -tietovälinettä joka pohjautuu 1809 ISO-levykuvaan.\n\n*MICROSOFTIN OHJELMOINTIVIRHEEN* vuoksi tämä tietoväline kaatuu Windowsin käynnistyksen aikana (Blue Screen Of Death), ellet manuaalisesti korvaa 'WppRecorder.sys' -tiedostoa 1803-versiolla.\n\nHuomaathan, että 'WppRecorder.sys' on Microsoftin tekijänoikeudellinen tiedosto ja täten Rufus ei voi automaattisesti korjata tätä virhettä, sillä emme voi tarjota kyseistä tiedostoa sovelluksemme kautta lakiteknisistä syistä..." +t MSG_133 "Rufus on havainnut, että yrität luoda 'Windows To Go' -tietovälinettä joka pohjautuu 1809 ISO-levykuvaan.\n\n*MICROSOFTIN OHJELMOINTIVIRHEEN* vuoksi tämä tietoväline kaatuu Windowsin käynnistyksen aikana (keskeytysvirhe), ellet manuaalisesti korvaa 'WppRecorder.sys' -tiedostoa 1803-versiolla.\n\nHuomaathan, että 'WppRecorder.sys' on Microsoftin tekijänoikeudellinen tiedosto. Rufus ei voi automaattisesti korjata tätä virhettä, sillä emme voi tarjota kyseistä tiedostoa sovelluksen kautta lakiteknisistä syistä..." t MSG_134 "Koska osion tyypiksi on valittu MBR, voi Rufus luoda vain maksimissaan 2 TB:n kokoisen osion tälle tietovälineelle jättäen %s levytilaa käyttökelvottomaksi.\n\nHaluatko varmasti jatkaa?" t MSG_135 "Versio" t MSG_136 "Julkaisu" @@ -4372,6 +4619,8 @@ t MSG_319 "Sivuuta Boot Marker" t MSG_320 "Päivitetään osioiden sijoittelua (%s)..." t MSG_321 "Valitsemasi levykuva on ISOHybrid-muotoinen, mutta sen tekijät eivät ole tehneet siitä yhteensopivaa ISO/tiedostotyyppisen kopiointitilan kanssa.\nTämän vuoksi käyttöön otetaan DD-kuvan kirjoitustila." t MSG_322 "Ei voitu avata tai lukea kohdetta '%s'" +t MSG_323 "Ota käyttöön SkuSiPolicy.p7b-käytäntö asennuksen yhteydessä (Katso KB5042562)" +t MSG_324 "QoL-parannukset (Älä pakota ominaisuuksia Copilot, OneDrive, Outlook, Fast Startup jne.)" t MSG_325 "Asetetaan Windowsin mukautusasetuksia: %s" t MSG_326 "Asetetaan käyttäjäasetuksia..." t MSG_327 "Windows-käyttäjäkokemus" @@ -4384,7 +4633,7 @@ t MSG_333 "Luo paikallinen käyttäjätili käyttäjänimellä:" t MSG_334 "Aseta alueelliset vaihtoehdot samoihin asetuksiin kuin nykyisellä käyttäjällä" t MSG_335 "Poista käytöstä automaattinen laitteen BitLocker-salaus" t MSG_336 "Pysyvä lokitiedosto" -t MSG_337 "Uusi tiedosto ('diskcopy.dll') on ladattava Microsoftilta MS-DOSin asennusta varten:\n- Valitse 'Kyllä' yhdistääksesi internetiin ja ladataksesi sen\n- Valitse 'Ei' peruuttaaksesi toiminnon\n\nHuomio: Tiedosto ladataan sovelluksen kansioon ja sitä uudelleenkäytetään automaattisesti, jos se on jo olemassa." +t MSG_337 "Tämän ominaisuuden käyttö vaatii Microsoftilta ladattavan lisätiedoston ('%s'):\n- Valitse 'Kyllä' yhdistääksesi internetiin ja ladataksesi sen\n- Valitse 'Ei' peruuttaaksesi toiminnon\n\nHuomio: Tiedosto ladataan sovelluskansioon ja sitä voidaan uudelleenkäyttää automaattisesti." t MSG_338 "Mitätöity UEFI-käynnistyslataaja havaittu" t MSG_339 "Rufus havaitsi, että käyttämäsi ISO-levykuva sisältää UEFI-käynnistyslataajan, joka on mitätöity ja tulee aiheuttamaan %s Secure Bootin ollessa päällä ajantasaisessa UEFI-kokoonpanossa.\n\n- Jos olet hankkinut tämän ISO-levykuvan ei-luotettavasta lähteestä, huomioi UEFI-haittaohjelmien mahdollisuus ja vältä siltä käynnistämistä.\n- Jos olet hankkinut sen luotettavasta lähteestä, sinun tulisi yrittää etsiä uudempi versio, joka ei aiheuta tätä varoitusta." t MSG_340 "\"Turvallisuusrikkomus\"-näkymän" @@ -4393,10 +4642,34 @@ t MSG_342 "Pakattu VHDX-levykuva" t MSG_343 "Pakkaamaton VHD-levykuva" t MSG_344 "Full Flash Update -levykuva" t MSG_345 "Tämän toiminnon käyttäminen vaatii lisätiedostojen lataamista Microsoftilta:\n- Valitse 'Kyllä' yhdistääksesi internetiin ja ladataksesi ne\n- Valitse 'Ei' peruuttaaksesi toiminnon" -t MSG_346 "Rajoita Windows S Mode-tilaan (EI YHTEENSOPIVA verkkotilin ohituksen kanssa)" +t MSG_346 "Rajoita Windows käyttämään S Mode -tilaa (EI YHTEENSOPIVA verkkotilin ohituksen kanssa)" t MSG_347 "Asiantuntijatila" t MSG_348 "Puretaan tiedostoarkistoja: %s" t MSG_349 "Rufusin MBR:n käyttö" +t MSG_350 "Käytä 'Windows CA 2023' -allekirjoitettuja käynnistyslataajia (Vaatii yhteensopivan kohdetietokoneen)" +t MSG_351 "Tarkistetaan, onko UEFI-käynnistyslataaja mitätöity..." +t MSG_352 "Tarkistetaan UEFI DBX-tietokannan päivityksiä..." +t MSG_353 "DBX-päivitys saatavilla" +t MSG_354 "Rufus on havainnut päivitetyn version DBX-tiedostoista, joita käytetään UEFI Secure Boot -mitätöintitarkistuksissa. Haluatko ladata päivityksen?\n- Valitse 'Kyllä' yhdistääksesi internetiin ja ladataksesi sisällön\n- Valitse 'Ei' peruuttaaksesi toiminnon\n\nHuomio: Tiedostot ladataan sovelluskansioon ja niitä voidaan uudelleenkäyttää automaattisesti." +t MSG_355 "Tyhjennä levy ja suorita asennus ⚠VALVOMATTA⚠:" +t MSG_356 "Olet valinnut Windows-asennustavan, joka tapahtuu \"valvomatta\".\n\nTämä on edistyneille käyttäjille suunnattu toiminto luoden tietovälineen, joka ei vaadi mitään käyttäjän syötettä asennuksen aikana ja täten TYHJENTÄÄ VAROITUKSETTA ensimmäisen havaitun levyn kohdejärjestelmässä. Jos et ole tarkkana, voi tämä valinta johtaa PERUUTTAMATTOMAAN TIEDON MENETYKSEEN!\n\nSinun ON luettava ja hyväksyttävä kaikki seuraavat ehdot jatkaaksesi:" +t MSG_358 "Levykuvan sijaintia ei tueta" +t MSG_359 "Et voi käyttää kohdeasemalle tallennettua levykuvaa, sillä tämä asema tyhjennetään kokonaisuudessaan. Se on vähän kuin omaa oksaansa sahaisi!\n\nSiirrä levykuva eri sijaintiin ja yritä uudelleen." +t MSG_360 "Voit turvallisesti käyttää tätä valintaa, vaikka sinulta löytyisi TPM tai enemmän keskusmuistia, sillä se sivuuttaa ainoastaan asennusvaatimuksen eikä rajoita Windowsia käyttämästä saatavilla olevaa laitteistoa." +t MSG_361 "Tämän valinnan toiminta VAATII verkon/internetin kytkemisen pois päältä asennuksen ajaksi!" +t MSG_362 "Vastaa automaattisesti käyttäjältä kysymättä 'ei' Windowsin asennusvalintoihin, jotka liittyvät tiedon jakamiseen Microsoftin kanssa." +t MSG_363 "Tämä valinta kannattaa pitää valittuna, ellet halua sallia 'Windows to Go' -asennukselle pääsyä sisäisiin levyihin ja valvomatonta, peruuttamatonta tiedostojärjestelmien päivitystä." +t MSG_364 "Luo automaattisesti paikallinen tili määritetyllä käyttäjänimellä ja tyhjällä salasanalla, joka tulee vaihtaa seuraavan sisäänkirjautumisen yhteydessä." +t MSG_365 "Kopioi alueelliset asetukset (näppäimistö, aikavyöhyke, valuutta) tästä tietokoneesta käyttäjältä kysymisen sijaan." +t MSG_366 "Älä salaa järjestelmälevyä, ellei käyttäjä sitä erikseen pyydä." +t MSG_367 "Käytä tätä valintaa vain, jos tiedät mitä S Mode -tila tarkoittaa ja ymmärrät, että järjestelmäsi voi lukittua S Mode -tilaan vaikka poistaisit ja uudelleenasentaisit Windowsin kokonaan." +t MSG_368 "Käytä tätä valintaa, jos Windows-asennuksen kohdetietokoneesta löytyy täysin ajan tasalla olevat Secure Boot -sertifikaatit. Voit halutessasi tutustua 'Mosby'-ohjelmaan päivitystä varten." +t MSG_369 "Käytä tätä valintaa, jos haluat mitätöidä useampia mahdollisesti vaarallisia Windows-käynnistyslataajia, mutta samalla mahdollisesti estäen myös joidenkin normaalien Windows-tietovälineiden käynnistymisen." +t MSG_370 "\"Quality of Life\" -parannukset: Poista käytöstä useimmat ei-halutut ominaisuudet, joita Microsoft yrittää pakottaa käyttäjiä väkisin käyttämään." +t MSG_371 "Jos käytät tätä valintaa, varmistathan, että kaikki levyt on irroitettu kohdetietokoneesta lukuunottamatta haluttua Windows-asennuksen kohdelevyä. Älä myöskään jätä tietovälinettä yhdistetyksi sellaiseen tietokoneeseen, jonka levyjä et halua tyhjennettävän." +t MSG_372 "VARMISTAN, että kaikki levyt, paitsi se, jolle haluan asentaa Windowsin, on irrotettu." +t MSG_373 "VARMISTAN, että en jätä tätä tallennusvälinettä kiinni tietokoneeseen, jota en aio tyhjentää." +t MSG_374 "HYVÄKSYN, että kaikki tästä vaihtoehdosta aiheutuvat tietojen menetykset ovat vastuullani." t MSG_900 "Rufus on ohjelma, joka auttaa alustamaan ja luomaan boottaavia USB-laitteita, kuten esimerkiksi USB-avaimia, muistitikkuja jne." t MSG_901 "Virallinen sivusto: %s" t MSG_902 "Lähdekoodi: %s" @@ -4419,7 +4692,7 @@ t MSG_922 "Lataa UEFI Shell ISO-levykuvia" ######################################################################### l "fr-FR" "French (Français)" 0x040c, 0x080c, 0x0c0c, 0x100c, 0x140c, 0x180c, 0x1c0c, 0x200c, 0x240c, 0x280c, 0x2c0c, 0x300c, 0x340c, 0x380c, 0xe40c -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -4790,6 +5063,8 @@ t MSG_319 "Ignorer le marqueur de démarrage" t MSG_320 "Rafraîchissement du schéma de partition (%s)..." t MSG_321 "L’image que vous avez sélectionnée est de type ISOHybrid, mais ses créateurs ne l’ont pas rendue compatible avec le mode ISO (i.e. copie de fichier).\nÀ cause de cela, seule l’écriture en mode DD est applicable." t MSG_322 "Impossible d'ouvrir ou de lire '%s'" +t MSG_323 "Appliquer SkuSiPolicy.p7b après installation (Consultez KB5042562)" +t MSG_324 "Améliorations 'QoL' (Ne force pas Copilot, OneDrive, Outlook, Fast Startup, etc.)" t MSG_325 "Application des options de personnalisation de Windows: %s" t MSG_326 "Application des options utilisateur..." t MSG_327 "Expérience de l'utilisateur Windows" @@ -4797,12 +5072,12 @@ t MSG_328 "Personnaliser l'installation de Windows ?" t MSG_329 "Supprimer la nécessité d'avoir 4Go+ de RAM, Secure Boot et TPM 2.0" t MSG_330 "Supprimer la nécessité d'utiliser un compte utilisateur Microsoft en ligne" t MSG_331 "Désactiver la collecte de données (Supprime les questions de confidentialité)" -t MSG_332 "Empêcher Windows To Go d'accéder aux disques internes" +t MSG_332 "Empêcher 'Windows To Go' d'accéder aux disques internes" t MSG_333 "Créer un compte local sous le nom de :" t MSG_334 "Définir les options régionales avec les mêmes valeurs que celles de cet utilisateur" -t MSG_335 "Désactiver le cryptage automatique BitLocker" +t MSG_335 "Désactiver le chiffrement automatique BitLocker" t MSG_336 "Log persistent" -t MSG_337 "Un fichier supplémentaire ('diskcopy.dll') doit être téléchargé depuis Microsoft pour installer MS-DOS :\n- Sélectionnez 'Oui' pour vous connecter à Internet et le télécharger\n- Sélectionnez 'Non' pour annuler l’opération\n\nNote : Ce fichier sera téléchargé dans le répertoire de l'application et réutilisé automatiquement s'il est présent." +t MSG_337 "Un fichier supplémentaire ('%s') doit être téléchargé depuis Microsoft pour utiliser cette fonctionalité :\n- Sélectionnez 'Oui' pour vous connecter à Internet et le télécharger\n- Sélectionnez 'Non' pour annuler l’opération\n\nNote : Ce fichier sera téléchargé dans le répertoire de l'application et réutilisé automatiquement s'il est présent." t MSG_338 "Bootloader UEFI révoqué détecté" t MSG_339 "Rufus a détecté que l’ISO que vous avez sélectionnée contient un bootloader UEFI révoqué, qui devrait produire %s sur un système UEFI à jour, lorsque 'Secure Boot' est activé.\n\n- Si vous avez obtenu cette image ISO à partir d’une source douteuse, vous devriez envisager la possibilité qu’elle puisse contenir un logiciel malveillant, et éviter de démarrer à partir de celle-ci.\n- Si vous l’avez obtenu à partir d’une source fiable, vous devriez essayer de trouver une version plus récente, où cette notification ne se produit pas." t MSG_340 "un écran « Violation de sécurité »" @@ -4815,11 +5090,30 @@ t MSG_346 "Restreint Windows au mode \"S\" (INCOMPATIBLE avec l'option de désac t MSG_347 "Mode expert" t MSG_348 "Extraction d'archive : %s" t MSG_349 "Utilisation du MBR Rufus" -t MSG_350 "Utiliser les bootloaders signés par 'Windows UEFI CA 2023' [EXPÉRIMENTAL]" +t MSG_350 "Utiliser les bootloaders signés par 'Windows CA 2023' (nécessite un PC cible compatible)" t MSG_351 "Vérification de la revocation des bootloaders UEFI..." t MSG_352 "Vérification des mises à jour de DBX UEFI..." t MSG_353 "Mise à jour DBX disponible" t MSG_354 "Rufus a trouvé une mise à jour des fichiers DBX utilisés pour effectuer la validation des revocations Secure Boot sous UEFI. Voulez-vous télécharger cette mise à jour ?\n- Sélectionnez 'Oui' pour vous connecter à Internet et le télécharger ce contenu\n- Sélectionnez 'Non' pour annuler l’opération\n\nNote : Ces fichiers seront téléchargés dans le répertoire de l'application et réutilisés automatiquement si ils sont présent." +t MSG_355 "Effacer le disque ⚠SILENCIEUSEMENT⚠ et installer:" +t MSG_356 "Vous avez sélectionné l'option d'installation de Windows dite \"silencieuse\".\n\nIl s'agit d'une option avancée, réservée à ceux qui souhaitent créer un média d'installation qui ne posera aucune question à l'utilisateur pendant l'installation de Windows et qui EFFACERA SANS CONDITION le premier disque détecté sur le système cible. Si vous n'y prenez pas garde, l'utilisation de cette option peut résulter en une PERTE DE DONNÉES IRREVERSIBLE !\n\nVOUS DEVEZ lire et accepter toutes les propositions suivantes afin de procéder :" +t MSG_358 "Placement d'image non supporté" +t MSG_359 "Vous ne pouvez pas utiliser une image située sur le périphérique cible, puisque ce dernier va être complètement effacé. Cela revient au même qu'essayer de scier la branche sur laquelle vous êtes assis !\n\nVeuillez déplacer l'image sur un autre disque et réessayez." +t MSG_360 "Vous pouvez laisser cette option activée même si vous avez une puce TPM ou plus de RAM, car l'option contourne simplement les prérequis du programme d'installation et n'empêche absolument pas Windows d'utiliser toutes ces ressources si disponibles." +t MSG_361 "Pour que cette option fonctionne, vous DEVEZ déconnecter le réseau/Internet pendant l'installation !" +t MSG_362 "Répond automatiquement 'non' aux questions du programme d'installation de Windows en ce qui concerne l'autorisation du partage de données avec Microsoft, au lieu de demander à l'utilisateur." +t MSG_363 "Laissez cette option activée à moins que vous acceptiez que 'Windows To Go' puisse accéder aux disques internes pour effectuer des mises à jour, silencieuses et irréversible, des systèmes de fichiers." +t MSG_364 "Crée un compte local automatiquement, pour le nom spécifié, et avec un mot de passe vide qui devra être changé à la prochaine session." +t MSG_365 "Réplique les options régionales de ce PC (clavier, fuseau horaire, monnaie), au lieu de demander à l'utilisateur." +t MSG_366 "Ne chiffre pas le disque système, sauf si l'utilisateur le demande explicitement." +t MSG_367 "Activez cette option seulement si vous savez ce qu'est S-Mode et comprenez que votre système pourra être restreint au S-Mode même si vous supprimez Windows et le réinstallez complètement." +t MSG_368 "Activez cette option si le système que vous installez utilise des certificats Secure Boot complètement à jour. Si nécessaire, vous pouvez utiliser 'Mosby' pour mettre votre système à jour." +t MSG_369 "Activez cette option pour révoquer des bootloaders supplémentaires de Windows, mais avec le risque de ne plus pouvoir démarrer depuis des media Windows standard." +t MSG_370 "Améliorations \"Quality of Life\" : Désactive la plupart des fonctionnalités que Microsoft essaie de pousser, contre leur gré, aux utilisateurs." +t MSG_371 "Si vous utilisez cette option, veuillez-vous assurer que tous les disques, sauf celui sur lequel vous voulez installer Windows, est déconnecté du PC cible, et aussi que vous ne laisserez pas le média connecté sur un PC que vous ne voulez pas réinstaller." +t MSG_372 "JE VEILLERAI à déconnecter tout les disques, sauf celui où j'installe Windows." +t MSG_373 "JE VEILLERAI de ne pas laisser ce media connecté à un PC que je ne compte pas effacer." +t MSG_374 "J'ACCEPTE que toute perte de données liée à cette option m'incombe entièrement." t MSG_900 "Rufus est un utilitaire permettant de formater et de créer des média USB amorçables, tels que clés USB, mémoire flash, etc." t MSG_901 "Site officiel : %s" t MSG_902 "Code source: %s" @@ -4841,7 +5135,7 @@ t MSG_922 "Téléchargez des images ISOs du Shell UEFI" ######################################################################### l "de-DE" "German (Deutsch)" 0x0407, 0x0807, 0x0c07, 0x1007, 0x1407 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -5015,7 +5309,7 @@ t MSG_125 "Größe der persistenten Partition des Live-USB-Systems. Eine Größe t MSG_126 "Einheit der Partitionsgröße festlegen." t MSG_127 "Diese Nachricht nicht mehr anzeigen" t MSG_128 "Wichtiger Hinweis zu %s" -t MSG_129 "Sie haben gerade ein Medium erstellt, das den UEFI:NTFS-Bootloader verwendet. Bitte denken Sie daran, dass Sie zum Starten dieses Mediums SECURE BOOT DEAKTIVIEREN müssen.\nNach dem Abschluss des Vorgangs sollten Sie SECURE BOOT wieder aktivieren.\nWeitere Informationen, warum dies notwendig ist, finden Sie über die Schaltfläche \"Weitere Informationen\"." +t MSG_129 "Sie haben gerade ein Medium erstellt, welches das UEFI:NTFS-Startprogramm verwendet. Bitte denken Sie daran, dass Sie zum Starten dieses Mediums SECURE BOOT DEAKTIVIEREN müssen.\nNach dem Abschluss des Vorgangs sollten Sie SECURE BOOT wieder aktivieren.\nWeitere Informationen, warum dies notwendig ist, finden Sie über die Schaltfläche \"Weitere Informationen\"." t MSG_130 "Windows-Image auswählen" t MSG_131 "Dieses ISO-Image enthält mehrere Windows-Images.\nBitte wählen Sie das Image aus, das Sie für diese Installation verwenden möchten:" t MSG_132 "Ein anderer Prozess bzw. ein anderes Programm verwendet das Laufwerk gerade. Wollen Sie es trotzdem formatieren?" @@ -5048,8 +5342,8 @@ t MSG_162 "Wenn nicht aktiviert, wird die \"langsame\" Formatierung verwendet" t MSG_163 "Methode, mit der das Laufwerk partitioniert wird" t MSG_164 "Methode, um das Laufwerk startfähig zu machen" t MSG_165 "Image-Datei oder Download auswählen..." -t MSG_166 "Wählen Sie diese Option, um die Anzeige internationaler Bezeichnungen zu ermöglichen und ein Gerätesymbol zu erzeugen (autorun.inf)" -t MSG_167 "Ein UEFI Startprogramm installieren, das eine MD5Sum Dateiüberprüfung auf dem Datenträger durchführt" +t MSG_166 "Wählen Sie diese Option, um die Anzeige internationaler Bezeichnungen zu ermöglichen und ein Gerätesymbol zu erzeugen (autorun.inf)." +t MSG_167 "Ein UEFI-Startprogramm installieren, das eine MD5Sum-Dateiüberprüfung auf dem Datenträger durchführt" t MSG_169 "Eine zusätzliche versteckte Partition erzeugen und die Partitionsgrenzen ausrichten.\nDas kann die Starterkennung für ältere BIOSe verbessern." t MSG_170 "Erkennung von externen USB-Festplatten aktivieren. VERWENDUNG AUF EIGENES RISIKO!" t MSG_171 "Formatierung starten.\nAlle Daten auf dem Ziellaufwerk werden GELÖSCHT!" @@ -5076,7 +5370,7 @@ t MSG_192 "Lesen durchgeführt" t MSG_193 "%s heruntergeladen" t MSG_194 "%s konnte nicht heruntergeladen werden" t MSG_195 "Embedded-Version der %s Datei(en) verwenden" -t MSG_196 "WICHTIG: DIESES LAUFWERK HAT EINE NICHT STANDARDISIERTE SEKTORGRÖSSE!\n\nHerkömmliche Laufwerke nutzen eine Sektorgröße von 512 Byte, aber dieses Laufwerk nutzt %d Byte. Höchstwahrscheinlich können Sie von diesem Laufwerk NICHT starten.\nRufus kann versuchen, ein startfähiges Laufwerk zu erstellen, aber es gibt KEINE GARANTIE, dass es funktionieren wird." +t MSG_196 "WICHTIG: DIESES LAUFWERK HAT EINE NICHT STANDARDISIERTE SEKTORGRÖẞE!\n\nHerkömmliche Laufwerke nutzen eine Sektorgröße von 512 Byte, aber dieses Laufwerk nutzt %d Byte. Höchstwahrscheinlich können Sie von diesem Laufwerk NICHT starten.\nRufus kann versuchen, ein startfähiges Laufwerk zu erstellen, aber es gibt KEINE GARANTIE, dass es funktionieren wird." t MSG_197 "Nicht standardisierte Sektorgröße erkannt" t MSG_198 "'Windows To Go' kann nur auf ein GPT-partitioniertes Laufwerk installiert werden, wenn das FIXED-Attribut gesetzt ist. Das aktuelle Laufwerk hat dieses nicht." t MSG_199 "Diese Funktion ist auf dieser Plattform nicht verfügbar." @@ -5127,7 +5421,7 @@ t MSG_244 "Update: Keine Verbindung zum Internet" t MSG_245 "Update: Versionsinformationen können nicht ermittelt werden" t MSG_246 "Eine neue Version von Rufus ist verfügbar!" t MSG_247 "Es wurde keine neue Version von Rufus gefunden" -t MSG_248 "Anwendungeinstellungen in der Registrierdatenbank erfolgreich gelöscht" +t MSG_248 "Anwendungseinstellungen in der Registrierdatenbank erfolgreich gelöscht" t MSG_249 "Fehler beim Löschen der Anwendungseinstellungen in der Registrierdatenbank" t MSG_250 "%s aktiviert" t MSG_251 "%s deaktiviert" @@ -5189,8 +5483,8 @@ t MSG_306 "Laufwerk mit Nullen überschreiben (schnell): %s" t MSG_307 "Der Vorgang nimmt einige Zeit in Anspruch" t MSG_308 "VHD-Erkennung" t MSG_309 "Archivdatei" -t MSG_310 "Das ausgewählte ISO-Image verwendet UEFI und ist klein genug, um auf eine EFI System-Partition (ESP) geschrieben zu werden. Es auf eine ESP- anstelle einer normalen Partition zu schrieben, kann für bestimmte Installationsarten vorteilhaft sein.\n\nBitte wählen Sie einen Modus aus:" -t MSG_311 "Verwende %s (Hauptfenster der Anwendung) zum aktivieren." +t MSG_310 "Das ausgewählte ISO-Image verwendet UEFI und ist klein genug, um auf eine EFI-Systempartition (ESP) geschrieben zu werden. Es auf eine ESP anstelle einer normalen Partition zu schreiben, die die gesamte Festplatte belegt, kann für bestimmte Installationsarten vorteilhaft sein.\n\nBitte wählen Sie einen Modus aus:" +t MSG_311 "Verwende %s (Hauptfenster der Anwendung) zum Aktivieren." t MSG_312 "Zusätzliche Prüfsummen (SHA512)" t MSG_313 "Als VHD speichern" t MSG_314 "Prüfsumme des Images berechnen" @@ -5200,54 +5494,81 @@ t MSG_317 "Disk-ID" t MSG_318 "Standardmäßige Thread-Priorität: %d" t MSG_319 "Boot-Markierung ignorieren" t MSG_320 "Liste der Partitionen aktualisieren (%s)..." -t MSG_321 "Das ausgewählte Image ist vom Typ ISOHybrid, aber der Ersteller hat es nicht mit dem ISO/Datei Kopier-Modus kompatibel gemacht.\nDeswegen wird der DD-Schreibmodus verwendet." -t MSG_322 "'%' kann nicht geöffnet/gelesen werden" -t MSG_325 "Windows Anpassungen anwenden: %s" +t MSG_321 "Das ausgewählte Image ist vom Typ ISOHybrid, aber der Ersteller hat es nicht mit dem ISO/Dateikopiermodus kompatibel gemacht.\nDeswegen wird der DD-Schreibmodus verwendet." +t MSG_322 "'%s' kann nicht geöffnet/gelesen werden" +t MSG_323 "SkuSiPolicy.p7b auf Installation anwenden. (Siehe KB5042562)" +t MSG_324 "Komfort-Einstellungen (Copilot, OneDrive, Outlook und Schnellstart nicht aktivieren)" +t MSG_325 "Windows-Anpassungen anwenden: %s" t MSG_326 "Benutzereinstellungen anwenden..." -t MSG_327 "Windows Benutzererfahrung" +t MSG_327 "Windows-Benutzererfahrung" t MSG_328 "Windows-Installation anpassen?" t MSG_329 "Anforderung für 4GB+ RAM, Secure Boot und TPM 2.0 entfernen" -t MSG_330 "Anforderung für Online Microsoft Konto entfernen" +t MSG_330 "Anforderung für Online-Microsoft-Konto entfernen" t MSG_331 "Datenerfassung deaktivieren (Fragen zum Datenschutz überspringen)" t MSG_332 "Verhindern, dass Windows To Go auf interne Laufwerke zugreifen kann" t MSG_333 "Ein lokales Benutzerkonto erstellen:" t MSG_334 "Regionale Optionen auf die gleichen Werte wie die dieses Benutzers setzen" t MSG_335 "Deaktivieren der automatischen BitLocker-Laufwerksverschlüsselung" t MSG_336 "Dauerhaftes Protokoll" -t MSG_337 "Eine zusätzliche Datei ('diskcopy.dll') muss von Microsoft heruntergeladen werden um MS-DOS zu installieren:\n- 'Ja' um eine Verbindung mit dem Internet herzustellen und die Datei herunterzuladen\n- 'Nein' um den Vorgang abzubrechen\n\nHinweis: Die Datei wird ins Programmverzeichnis heruntergeladen und bei Bedarf wiederverwendet." -t MSG_338 "Zurückgezogenes UEFI Startprogramm erkannt" -t MSG_339 "Rufus hat erkannt, dass das gewählte ISO-Image ein UEFI-Startprogramm enthält, dass zurückgezogen wurde und das führt zu %s, wenn das UEFI-System aktuell ist und Secure Boot aktiv ist.\n\n- Wenn Sie das ISO-Image aus einer unzuverlässigen Quelle haben, sollten Sie in Betracht ziehen, dass es UEFI-Schadcode enthält und es deshalb nicht verwenden.\n- Wenn Sie es aus einer vertrauenswürdigen Quelle haben, sollten Sie versuchen eine aktuellere Version zu bekommen, die dieses problem nicht hat." +t MSG_337 "Eine zusätzliche Datei ('%s') muss von Microsoft heruntergeladen werden, um diese Funktion zu nutzen:\n- Wählen Sie 'Ja', um eine Verbindung mit dem Internet herzustellen und die Datei herunterzuladen\n- Wählen Sie 'Nein', um den Vorgang abzubrechen\n\nHinweis: Die Datei wird ins Programmverzeichnis heruntergeladen und bei Bedarf wiederverwendet." +t MSG_338 "Zurückgezogenes UEFI-Startprogramm erkannt" +t MSG_339 "Rufus hat erkannt, dass das gewählte ISO-Image ein UEFI-Startprogramm enthält, das zurückgezogen wurde. Das führt zu %s, wenn das UEFI-System aktuell ist und Secure Boot aktiv ist.\n\n- Wenn Sie das ISO-Image aus einer unzuverlässigen Quelle haben, sollten Sie in Betracht ziehen, dass es UEFI-Schadcode enthält und es deshalb nicht verwenden.\n- Wenn Sie es aus einer vertrauenswürdigen Quelle haben, sollten Sie versuchen, eine aktuellere Version zu bekommen, die dieses Problem nicht hat." t MSG_340 "ein Bildschirm \"Sicherheitsverletzung\"" -t MSG_341 "ein Windows Wiederherstellung-Bildschirm (BSOD) mit '%s'" -t MSG_342 "Komprimiertes VHDX Image" -t MSG_343 "Unkomprimiertes VHD Image" -t MSG_345 "Einige weitere Daten müssen von Microsoft heruntergeladen werden, um diese Funktion zu verwenden:\n- 'Ja' um eine Verbindung mit dem Internet herzustellen und diese herunterzuladen\n- 'Nein' um den Vorgang abzubrechen" +t MSG_341 "ein Windows-Wiederherstellungsbildschirm (BSOD) mit '%s'" +t MSG_342 "Komprimiertes VHDX-Image" +t MSG_343 "Unkomprimiertes VHD-Image" +t MSG_344 "Vollständiges Flash-Update-Image" +t MSG_345 "Einige weitere Daten müssen von Microsoft heruntergeladen werden, um diese Funktion zu verwenden:\n- Wählen Sie 'Ja', um eine Verbindung mit dem Internet herzustellen und diese herunterzuladen\n- Wählen Sie 'Nein', um den Vorgang abzubrechen" t MSG_346 "Windows im S-Modus (nicht kompatibel mit Online Konto-Umgehung)" -t MSG_347 "Experten-Modus" -t MSG_348 "Archiv-Datei extrahieren: %s" +t MSG_347 "Expertenmodus" +t MSG_348 "Archivdatei extrahieren: %s" t MSG_349 "Rufus MBR verwenden" -t MSG_900 "Rufus ist ein Werkzeug, welches dabei hilft, bootfähige USB-Laufwerke zu erstellen, wie beispielweise USB-Keys, Speichersticks usw." +t MSG_350 "Den \"Windows CA 2023\" signierten Bootloader verwenden. Ein kompatibler Computer ist erforderlich!" +t MSG_351 "Auf gesperrte UEFI-Bootloader prüfen..." +t MSG_352 "Prüfe auf UEFI DBX-Aktualisierungen..." +t MSG_353 "DBX-Update verfügbar" +t MSG_354 "Rufus hat eine aktualisierte Version der DBX-Dateien gefunden, die für die Überprüfung der UEFI-Secure-Boot-Widerrufsstatus verwendet werden. Möchten Sie dieses Update herunterladen?\n- Wählen Sie „Ja“, um eine Verbindung zum Internet herzustellen und diesen Inhalt herunterzuladen.\n- Wählen Sie „Nein“, um den Vorgang abzubrechen.\n\nHinweis: Die Dateien werden in das Verzeichnis der Anwendung heruntergeladen und bei Vorhandensein automatisch wiederverwendet.\n\nÜbersetzt mit DeepL.com (kostenlose Version)" +t MSG_355 "⚠AUTOMATISCH⚠ Laufwerk löschen und installieren:" +t MSG_356 "Sie haben die „automatische“ Windows-Installationsoption ausgewählt.\n\nDies ist eine Option für Fortgeschrittene, die für Benutzer gedacht ist, die ein Installationsmedium erstellen möchten, das den Benutzer während der Windows-Installation nicht auffordert, Eingaben vorzunehmen, und daher die erste erkannte Festplatte auf dem Zielsystem AUTOMATISCH LÖSCHT. Wenn Sie nicht vorsichtig sind, kann die Verwendung dieser Option zu UNWIDERRUFLICHEM DATENVERLUST führen!\n\nSie MÜSSEN alle folgenden Aussagen lesen und akzeptieren, um fortzufahren:" +t MSG_358 "Nicht unterstützter Abbild-Standort" +t MSG_359 "Sie können kein Image verwenden, das sich auf dem Ziellaufwerk befindet, da dieses Laufwerk vollständig gelöscht wird. Das ist so, als würde man versuchen, den Ast abzusägen, auf dem man sitzt!\n\nBitte verschieben Sie das Image an einen anderen Speicherort und versuchen Sie es erneut." +t MSG_360 "Sie können diese Option aktiviert lassen, auch wenn Sie über ein TPM oder mehr Arbeitsspeicher verfügen, da diese Option lediglich die Installationsanforderungen umgeht und Windows nicht daran hindert, die gesamte verfügbare Hardware zu nutzen." +t MSG_361 "Damit diese Option funktioniert, MUSS die Netzwerk-/Internetverbindung während der Installation unterbrochen sein!" +t MSG_362 "Beantwortet die Fragen des Windows-Setups bezüglich der Weitergabe von Daten an Microsoft automatisch mit „Nein“, anstatt den Benutzer dazu aufzufordern." +t MSG_363 "Sie sollten diese Option aktiviert lassen, es sei denn, Sie haben nichts dagegen, dass „Windows To Go“ auf interne Festplatten zugreift und im Hintergrund irreversible Dateisystem-Upgrades durchführt." +t MSG_364 "Erstellt automatisch ein lokales Konto mit dem angegebenen Benutzernamen und einem leeren Passwort, das bei der nächsten Anmeldung geändert werden muss." +t MSG_365 "Die regionalen Einstellungen dieses PCs (Tastatur, Zeitzone, Währung) übernehmen, anstatt den Benutzer dazu aufzufordern." +t MSG_366 "Nicht die Systemfestplatte verschlüsseln, es sei denn, der Benutzer wünscht dies ausdrücklich." +t MSG_367 "Verwenden Sie diese Option nur, wenn Sie wissen, was der S-Modus ist, und sich darüber im Klaren sind, dass Ihr System möglicherweise auch nach einer vollständigen Löschung und Neuinstallation von Windows im S-Modus verbleibt." +t MSG_368 "Verwenden Sie diese Option, wenn das System, auf dem Sie Windows installieren möchten, über vollständig aktuelle Secure-Boot-Zertifikate verfügt. Bei Bedarf können Sie die Verwendung von „Mosby“ in Betracht ziehen, um Ihr System zu aktualisieren." +t MSG_369 "Verwenden Sie diese Option, wenn Sie weitere potenziell unsichere Windows-Bootloader deaktivieren möchten, wobei jedoch die Möglichkeit besteht, dass auch Standard-Windows-Datenträger nicht mehr booten." +t MSG_370 "Komfort-Funktion: Deaktiviert die meisten unerwünschten Funktionen, die Microsoft den Endnutzern aufzuzwingen versucht." +t MSG_371 "Wenn Sie diese Option verwenden, stellen Sie bitte sicher, dass Sie alle Festplatten vom Ziel-PC trennen, mit Ausnahme derjenigen, auf der Sie Windows installieren möchten, und dass Sie den Datenträger nicht in einem PC stecken lassen, den Sie nicht löschen möchten." +t MSG_372 "ICH WERDE sicherstellen, dass alle Festplatten außer der Windows-Zieldisk getrennt sind." +t MSG_373 "ICH WERDE diesen Datenträger nicht an einem PC angeschlossen lassen, den ich nicht löschen will." +t MSG_374 "ICH STIMME ZU, dass Datenverlust durch diese Option ausschließlich meine Verantwortung ist." +t MSG_900 "Rufus ist ein Werkzeug, das beim Formatieren und Erstellen bootfähiger USB-Flash-Laufwerke wie USB-Sticks, Speichersticks usw. hilft." t MSG_901 "Offizielle Website: %s" t MSG_902 "Quellcode: %s" t MSG_903 "Änderungsprotokoll: %s" t MSG_904 "Diese Anwendung ist unter den Bedingungen der GNU Public License (GPL) Version 3 lizenziert.\nSiehe https://www.gnu.org/licenses/gpl-3.0.de.html für Details." t MSG_910 "Formatieren von USB, Flash-Karte und virtuellen Laufwerken in FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" t MSG_911 "FreeDOS-bootfähige USB-Laufwerke erstellen" -t MSG_912 "Erstellen bootfähiger Laufwerke aus bootfähigen ISOs (Windows, Linux, etc.)" +t MSG_912 "Erstellen bootfähiger Laufwerke aus bootfähigen ISOs (Windows, Linux etc.)" t MSG_913 "Erstellen bootfähiger Laufwerke aus bootfähigen Festplatten-Images, einschließlich komprimierter Images" t MSG_914 "Erstellen von BIOS- oder UEFI-bootfähigen Laufwerken, einschließlich UEFI-bootfähigem NTFS" -t MSG_915 "Erstellen von \"Windows To Go\"-Laufwerken" +t MSG_915 "Erstellen von 'Windows To Go'-Laufwerken" t MSG_916 "Erstellen von Windows 11-Installationslaufwerken für PCs ohne TPM oder Secure Boot" t MSG_917 "Persistente Linux-Partitionen erstellen" t MSG_918 "VHD/DD-Images des ausgewählten Laufwerks erstellen" -t MSG_919 "Berechnung von MD5-, SHA-1-, SHA-256- und SHA-512-Prüfsummen für das ausgewählte Bild" +t MSG_919 "Berechnung von MD5-, SHA-1-, SHA-256- und SHA-512-Prüfsummen für das ausgewählte Image" t MSG_920 "Durchführung von Prüfungen auf fehlerhafte Blöcke, einschließlich der Erkennung von \"gefälschten\" Flash-Laufwerken" t MSG_921 "Offizielle Microsoft Windows-ISOs herunterladen" t MSG_922 "UEFI-Shell-ISOs herunterladen" ######################################################################### l "el-GR" "Greek (Ελληνικά)" 0x0408 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -5431,7 +5752,7 @@ t MSG_129 "Μόλις δημιουργήσατε ένα μέσο που χρησ t MSG_130 "Επιλογή αρχείου Windows" t MSG_131 "Αυτό το ISO περιέχει πολλά ειδώλια των Windows.\nΕπιλέξτε το αρχειο που θέλετε να χρησιμοποιήσετε για αυτήν την εγκατάσταση:" t MSG_132 "Ένα άλλο πρόγραμμα ή διαδικασία έχει πρόσβαση σε αυτήν τη μονάδα δίσκου. Θέλετε να το διαμορφώσετε ούτως ή άλλως;" -t MSG_133 "Το Rufus έχει εντοπίσει ότι προσπαθείτε να δημιουργήσετε ένα μέσο Windows To Go βάσει ενός ISO 1809.\n\nΛόγω ενός * MICROSOFT BUG *, αυτό το μέσο θα καταρρεύσει κατά την εκκίνηση των Windows (Blue Screen Of Death), εκτός αν αλλάξετε με το χέρι το αρχείο 'WppRecorder.sys' με εκδοχή 1803.\n\nΕπίσης, σημειώστε ότι ο λόγος για τον οποίο ο Rufus δεν μπορεί να διορθώσει αυτόματα αυτό για εσάς είναι ότι το \"WppRecorder.sys\" είναι αρχείο Microsoft που προστατεύεται από πνευματικά δικαιώματα, επομένως δεν μπορούμε να ενσωματώσουμε νόμιμα ένα αντίγραφο του αρχείου στην εφαρμογή ..." +t MSG_133 "Το Rufus εντόπισε ότι προσπαθείτε να δημιουργήσετε ένα μέσο \"Windows To Go\" με βάση ένα ISO 1809.\n\nΛόγω ενός *ΣΦΑΛΜΑΤΟΣ ΤΗΣ MICROSOFT*, αυτό το μέσο θα παρουσιάσει σφάλμα κατά την εκκίνηση των Windows (Blue Screen of Death), εκτός εάν αντικαταστήσετε χειροκίνητα το αρχείο \"WppRecorder.sys\" με μια έκδοση 1803.\n\nΣημειώστε επίσης ότι ο λόγος για τον οποίο ο Rufus δεν μπορεί να διορθώσει αυτόματα αυτό το πρόβλημα για εσάς είναι ότι το \"WppRecorder.sys\" είναι ένα αρχείο που προστατεύεται από πνευματικά δικαιώματα της Microsoft, επομένως δεν μπορούμε να ενσωματώσουμε νόμιμα ένα αντίγραφο του αρχείου στην εφαρμογή..." t MSG_134 "Επειδή το MBR έχει επιλεγεί για το σχήμα διαμέρισης, ο Rufus μπορεί να δημιουργήσει ένα διαμέρισμα έως 2 TB μόνο σε αυτό το μέσο, το οποίο θα αφήσει το %s χώρου στο δίσκο μη διαθέσιμο.\n\nΕίστε σίγουροι οτι θέλετε να συνεχίσετε?" t MSG_135 "Εκδοχή" t MSG_136 "Κυκλοφορία" @@ -5618,6 +5939,8 @@ t MSG_319 "Αγνοήστε τον Boot marker" t MSG_320 "Ανανέωση διάταξης διαμερισμάτων (%s)..." t MSG_321 "Η εικόνα που επιλέξατε είναι ISOHybrid, αλλά οι δημιουργοί της δεν την έχουν κάνει συμβατή με τη λειτουργία αντιγραφής ISO/Αρχείου.\nΩς αποτέλεσμα, θα επιβληθεί η λειτουργία εγγραφής εικόνας DD." t MSG_322 "Δεν είναι δυνατό το άνοιγμα ή η ανάγνωση του '%s'" +t MSG_323 "Εφαρμογή SkuSiPolicy.p7b κατά την εγκατάσταση (Δείτε KB5042562)" +t MSG_324 "Βελτιώσεις QoL (χωρίς υποχρεωτική επιβολή του Copilot, του OneDrive, του Outlook, Fast Startup κ.λπ.)" t MSG_325 "Εφαρμογή προσαρμογής των Windows: %s" t MSG_326 "Εφαρμογή επιλογών χρήστη..." t MSG_327 "Εμπειρία χρήστη των Windows" @@ -5630,7 +5953,7 @@ t MSG_333 "Δημιουργήστε έναν τοπικό λογαριασμό t MSG_334 "Ορίστε τις τοπικές επιλογές στις ίδιες τιμές με αυτές του χρήστη" t MSG_335 "Απενεργοποιήστε την αυτόματη κρυπτογράφηση συσκευής BitLocker" t MSG_336 "Διατήρηση log" -t MSG_337 "Πρέπει να γίνει λήψη ενός πρόσθετου αρχείου ('diskcopy.dll') από τη Microsoft για να εγκαταστήσετε το MS-DOS:\n- Επιλέξτε 'Ναι' για να συνδεθείτε στο Internet και να το κατεβάσετε\n- Επιλέξτε 'Όχι' για να ακυρώσετε τη λειτουργία\n\nΣημείωση: Το αρχείο θα ληφθεί στον κατάλογο της εφαρμογής και θα επαναχρησιμοποιηθεί αυτόματα εάν υπάρχει." +t MSG_337 "Πρέπει να κατεβάσετε ένα επιπλέον αρχείο ('%s') από τη Microsoft για να χρησιμοποιηθεί αυτή η λειτουργία:\n-Επιλέξτε «Ναι» για να συνδεθείτε στο Internet και να το κατεβάσετε\n-Επιλέξτε «Όχι» για να ακυρώσετε τη λειτουργία\n\nΣημείωση: Το αρχείο θα κατέβει στον φάκελο της εφαρμογής και θα χρησιμοποιείται ξανά αυτόματα αν υπάρχει." t MSG_338 "Εντοπίστηκε ανακληθέν bootloader UEFI" t MSG_339 "Ο Rufus εντόπισε ότι το ISO που επιλέξατε περιέχει έναν bootloader UEFI που έχει ανακληθεί και θα παράγει %s, όταν η Ασφαλής Εκκίνηση είναι ενεργοποιημένη σε ένα πλήρως ενημερωμένο σύστημα UEFI.\n\n- Εάν λάβατε αυτήν την εικόνα ISO από μη αξιόπιστη πηγή, θα πρέπει να εξετάσετε το ενδεχόμενο να περιέχει κακόβουλο λογισμικό UEFI και να αποφύγετε την εκκίνηση από αυτό.\n- Εάν το λάβατε από αξιόπιστη πηγή, θα πρέπει να προσπαθήσετε να εντοπίσετε μια πιο ενημερωμένη έκδοση, η οποία δεν θα παράγει αυτήν την προειδοποίηση." t MSG_340 "μια οθόνη \"Παραβίαση ασφαλείας\"" @@ -5642,6 +5965,30 @@ t MSG_346 "Περιορισμός των Windows σε S-Mode (ΑΣΥΜΒΑΤΟ t MSG_347 "Λειτουργία ειδικού" t MSG_348 "Εξαγωγή αρχείων: %s" t MSG_349 "Χρησιμοποίηση του Rufus MBR" +t MSG_350 "Χρησιμοποιήστε bootloader υπογεγραμμένα με «Windows CA 2023» (Απαιτεί συμβατό υπολογιστή)" +t MSG_351 "Έλεγχος για ανάκληση UEFI bootloader..." +t MSG_352 "Έλεγχος για ενημερώσεις UEFI DBX..." +t MSG_353 "Διαθέσιμη ενημέρωση DBX" +t MSG_354 "Το Rufus εντόπισε μια ενημερωμένη έκδοση των αρχείων DBX που χρησιμοποιούνται για την εκτέλεση ελέγχων ανάκλησης UEFI Secure Boot. Θέλετε να κάνετε λήψη αυτής της ενημέρωσης;\n- Επιλέξτε 'Ναι' για να συνδεθείτε στο Διαδίκτυο και να κατεβάσετε αυτό το περιεχόμενο\n- Επιλέξτε 'Όχι' για να ακυρώσετε τη λειτουργία\n\nΣημείωση: Τα αρχεία θα ληφθούν στον κατάλογο της εφαρμογής και θα επαναχρησιμοποιηθούν αυτόματα, εάν υπάρχουν." +t MSG_355 "⚠ΣΙΩΠΗΛΑ⚠ διαγραφή δίσκου και εγκατάσταση:" +t MSG_356 "Έχετε επιλέξει να χρησιμοποιήσετε την επιλογή \"αθόρυβης\" εγκατάστασης των Windows.\n\nΑυτή είναι μια προηγμένη επιλογή, που προορίζεται για άτομα που θέλουν να δημιουργήσουν μέσα που δεν ενημερώνουν τον χρήστη κατά την εγκατάσταση των Windows και επομένως ΔΙΑΓΡΑΦΟΥΝ ΑΝΕΥ ΟΡΩΝ τον πρώτο δίσκο που ανιχνεύεται στο σύστημα-στόχο. Εάν δεν είστε προσεκτικοί, η χρήση αυτής της επιλογής μπορεί να οδηγήσει σε ΜΗ ΑΝΑΣΤΡΕΨΙΜΗ ΑΠΩΛΕΙΑ ΔΕΔΟΜΕΝΩΝ!\n\nΠΡΕΠΕΙ να διαβάσετε και να αποδεχτείτε όλες τις ακόλουθες προτάσεις για να συνεχίσετε:" +t MSG_358 "Μη υποστηριζόμενη τοποθεσία εικόνας" +t MSG_359 "Δεν μπορείτε να χρησιμοποιήσετε μια εικόνα που βρίσκεται στη μονάδα δίσκου προορισμού, καθώς αυτή η μονάδα δίσκου θα διαγραφεί εντελώς. Είναι το ίδιο με το να προσπαθείτε να κόψετε το κλαδί στο οποίο βρίσκεστε!\n\nΜετακινήστε την εικόνα σε διαφορετική θέση και προσπαθήστε ξανά." +t MSG_360 "Είναι ασφαλές να αφήσετε αυτήν την επιλογή ενεργοποιημένη ακόμα κι αν έχετε TPM ή περισσότερη μνήμη RAM, καθώς αυτή η επιλογή παρακάμπτει μόνο τις απαιτήσεις εγκατάστασης και δεν εμποδίζει στην πραγματικότητα τα Windows να χρησιμοποιούν όλο το διαθέσιμο υλικό." +t MSG_361 "Για να λειτουργήσει αυτή η επιλογή, ΠΡΕΠΕΙ να έχετε αποσυνδέσει το δίκτυο/Internet κατά την εγκατάσταση!" +t MSG_362 "Απαντήστε αυτόματα με «όχι» στις ερωτήσεις εγκατάστασης των Windows σχετικά με την κοινή χρήση δεδομένων με τη Microsoft, αντί να ζητήσετε από τον χρήστη να απαντήσει." +t MSG_363 "Θα πρέπει να αφήσετε αυτήν την επιλογή ενεργοποιημένη, εκτός εάν συμφωνείτε με την πρόσβαση των \"Windows To Go\" στους εσωτερικούς δίσκους και την αθόρυβη εκτέλεση μη αναστρέψιμων αναβαθμίσεων συστήματος αρχείων." +t MSG_364 "Δημιουργήστε αυτόματα έναν τοπικό λογαριασμό με το καθορισμένο όνομα χρήστη, χρησιμοποιώντας έναν κενό κωδικό πρόσβασης που θα πρέπει να αλλάξει στην επόμενη σύνδεση." +t MSG_365 "Αντιγράψτε τις ρυθμίσεις περιοχής από αυτόν τον υπολογιστή (πληκτρολόγιο, ζώνη ώρας, νόμισμα) αντί να ζητηθεί από τον χρήστη." +t MSG_366 "Μην κρυπτογραφείτε τον δίσκο συστήματος, εκτός εάν σας το ζητήσει ρητά ο χρήστης." +t MSG_367 "Χρησιμοποιήστε αυτήν την επιλογή μόνο εάν γνωρίζετε τι είναι η λειτουργία S-Mode και κατανοείτε ότι το σύστημά σας ενδέχεται να είναι κλειδωμένο σε αυτήν ακόμα και μετά την πλήρη διαγραφή και επανεγκατάσταση των Windows." +t MSG_368 "Χρησιμοποιήστε αυτήν την επιλογή εάν το σύστημα στο οποίο σκοπεύετε να εγκαταστήσετε τα Windows χρησιμοποιεί πλήρως ενημερωμένα πιστοποιητικά Secure Boot. Εάν χρειάζεται, μπορείτε να εξετάσετε το ενδεχόμενο χρήσης του 'Mosby' για την ενημέρωση του συστήματός σας." +t MSG_369 "Χρησιμοποιήστε αυτήν την επιλογή εάν θέλετε να ανακαλέσετε επιπλέον ενδεχομένως μη ασφαλή προγράμματα εκκίνησης των Windows, αλλά με την πιθανότητα να αποτρέψετε και την εκκίνηση τυπικών μέσων των Windows." +t MSG_370 "Βελτιώσεις «ποιότητας ζωής»: Απενεργοποιήστε τις περισσότερες ανεπιθύμητες λειτουργίες που η Microsoft προσπαθεί να επιβάλλει στους χρήστες." +t MSG_371 "Εάν χρησιμοποιήσετε αυτήν την επιλογή, βεβαιωθείτε ότι έχετε αποσυνδέσει κάθε δίσκο από τον υπολογιστή, εκτός από αυτόν στον οποίο θέλετε να εγκαταστήσετε τα Windows, και μην αφήνετε το μέσο συνδεδεμένο σε κάποιο υπολογιστή που δεν θέλετε να διαγράψετε." +t MSG_372 "ΘΑ διασφαλίσω ότι όλοι οι δίσκοι εκτός του δίσκου Windows είναι αποσυνδεδεμένοι." +t MSG_373 "ΘΑ διασφαλίσω ότι δεν θα αφήσω αυτό το μέσο συνδεδεμένο σε υπολογιστή που δεν σκοπεύω να διαγράψω." +t MSG_374 "ΣΥΜΦΩΝΩ ότι οποιαδήποτε απώλεια δεδομένων από αυτή την επιλογή βαρύνει αποκλειστικά εμένα." t MSG_900 "Το Rufus είναι ένα βοηθητικό πρόγραμμα που βοηθά στη διαμόρφωση και τη δημιουργία μονάδων flash USB με δυνατότητα εκκίνησης, όπως κλειδιά USB/pendrives,κάρτες μνήμης κ.λπ." t MSG_901 "Επίσημος ιστότοπος: %s" t MSG_902 "Πηγαίος κώδικας: %s" @@ -5663,7 +6010,7 @@ t MSG_922 "Κατεβάστε τα ISO Shell UEFI" ######################################################################### l "he-IL" "Hebrew (עברית)" 0x040d -v 4.5 +v 4.14 b "en-US" a "r" @@ -5804,7 +6151,7 @@ t MSG_080 "Rufus זיהה ש־Windows עדיין מרוקן את החוצצים t MSG_081 "קובץ לא נתמך" t MSG_082 "קובץ תמונה זה לא ניתן לאתחול, או שהוא משתמש בשיטת כיווץ או אתחול שלא נתמכת על־ידי Rufus..." t MSG_083 "האם להחליף את %s?" -t MSG_084 "נראה שקובץ ה־ISO הזה משתמש בגרסה מיושנת של '%s'.\nלפיכך, ייתכן שתפריטי האתחול לא יוצגו כראוי.\n\nRufus יכול להוריד גרסה חדשה יותר כדי לתקן בעיה זו:\n- יש לבחור 'כן' כדי להתחבר לאינטרנט ולהוריד את הקובץ\n- יש לבחור 'לא' כדי להשאיר את קובץ ה־ISO ללא שינויים\nאם לא ברור לך מה לעשות, כדאי לבחור באפשרות 'כן'.\n\nהערה: הקובץ החדש יירד לספרייה בה ממוקם היישום וכל עוד ש־'%s' קיים שם, Rufus ישתמש בו באופן אוטומטי במידת הצורך." +t MSG_084 "נראה שקובץ ה־ISO הזה משתמש בגרסה מיושנת של '%s'.\nלפיכך, ייתכן שתפריטי האתחול לא יוצגו כראוי.\n\nRufus יכול להוריד גרסה חדשה יותר כדי לתקן בעיה זו:\n- יש לבחור 'כן' כדי להתחבר לאינטרנט ולהוריד את הקובץ\n- יש לבחור 'לא' כדי להשאיר את קובץ ה־ISO ללא שינויים\nאם לא ברור לך מה לעשות, כדאי לבחור באפשרות 'כן'.\n\nהערה: הקובץ החדש יורד לספרייה בה ממוקם היישום וכל עוד ש־'%s' קיים שם, Rufus ישתמש בו באופן אוטומטי במידת הצורך." t MSG_085 "מוריד את %s" t MSG_086 "לא נבחר קובץ תמונה" t MSG_087 "עבור %s NAND" @@ -5835,9 +6182,9 @@ t MSG_110 "MS-DOS לא יכול לעלות באתחול מכונן המשתמש t MSG_111 "גודל אשכול לא תואם" t MSG_112 "אתחול אמצעי אחסון גדולים מסוג UDF עשוי לארוך זמן רב. במהירויות של USB 2.0, זמן האתחול המשוער הוא: %d:%02d, ובזמן הזה מד ההתקדמות ייראה קפוא. נא להיות סבלני!" t MSG_113 "אמצעי אחסון UDF גדול" -t MSG_114 "קובץ תמונה זה משתמש ב־Syslinux %s%s אבל יישום זה כולל רק את קובצי ההתקנה עבור Syslinux %s%s.\n\nמכיוון שגרסאות חדשות של Syslinux אינן תואמות אחת לשניה ובלתי אפשרי ש־Rufus יכלול את כולן, יש להוריד 2 קבצים נוספים מהאינטרנט ('ldlinux.sys' ו־'ldlinux.bss'):\n- יש לבחור 'כן' כדי להתחבר לאינטרנט ולהוריד את הקבצים האלו\n- יש לבחור 'לא' כדי לבטל את הפעולה\n\nהערה: הקבצים יירדו לספרייה בה ממוקם היישום וכל עוד קבצים אלו יהיו שם, Rufus ישתמש בהם באופן אוטומטי במידת הצורך." +t MSG_114 "קובץ תמונה זה משתמש ב־Syslinux %s%s אבל יישום זה כולל רק את קובצי ההתקנה עבור Syslinux %s%s.\n\nמכיוון שגרסאות חדשות של Syslinux אינן תואמות אחת לשניה ובלתי אפשרי ש־Rufus יכלול את כולן, יש להוריד 2 קבצים נוספים מהאינטרנט ('ldlinux.sys' ו־'ldlinux.bss'):\n- יש לבחור 'כן' כדי להתחבר לאינטרנט ולהוריד את הקבצים האלו\n- יש לבחור 'לא' כדי לבטל את הפעולה\n\nהערה: הקבצים יורדו לספרייה בה ממוקם היישום וכל עוד הקבצים יהיו שם, Rufus ישתמש בהם באופן אוטומטי במידת הצורך." t MSG_115 "נדרשת הורדה" -t MSG_116 "קובץ תמונה זה משתמש ב־Grub %s אבל היישום כולל רק את קובצי ההתקנה עבור Grub %s.\n\nמכיוון שגרסאות שונות של Grub עשויות שלא להיות תואמות אחת לשניה ובלתי אפשרי ש־Rufus יכלול את כולן, Rufus ינסה למצוא גרסה של קובץ ההתקנה של Grub‏ ('core.img') המתאימה לזו שבקובץ התמונה שלך:\n- יש לבחור 'כן' כדי להתחבר לאינטרנט ולנסות להוריד אותה\n- יש לבחור 'לא' כדי להשתמש בגרסת ברירת המחדל מ־Rufus\n- יש לבחור 'ביטול' כדי לבטל את הפעולה\n\nהערה: הקובץ יירד לספרייה בה ממוקם היישום ו־Rufus ישתמש בו באופן אוטומטי במידת הצורך. אם לא תימצא התאמה באינטרנט, Rufus ישתמש בגרסה ברירת המחדל." +t MSG_116 "קובץ תמונה זה משתמש ב־Grub %s אבל היישום כולל רק את קובצי ההתקנה עבור Grub %s.\n\nמכיוון שגרסאות שונות של Grub עשויות שלא להיות תואמות אחת לשניה ובלתי אפשרי ש־Rufus יכלול את כולן, Rufus ינסה למצוא גרסה של קובץ ההתקנה של Grub‏ ('core.img') המתאימה לזו שבקובץ התמונה שלך:\n- יש לבחור 'כן' כדי להתחבר לאינטרנט ולנסות להוריד אותה\n- יש לבחור 'לא' כדי להשתמש בגרסת ברירת המחדל מ־Rufus\n- יש לבחור 'ביטול' כדי לבטל את הפעולה\n\nהערה: הקובץ יורד לספרייה בה ממוקם היישום ו־Rufus ישתמש בו באופן אוטומטי במידת הצורך. אם לא תימצא התאמה באינטרנט, Rufus ישתמש בגרסה ברירת המחדל." t MSG_117 "התקנת Windows רגילה" t MSG_119 "מאפייני כונן מתקדמים" t MSG_120 "אפשרויות אתחול מתקדמות" @@ -5906,7 +6253,7 @@ t MSG_184 "לצורך יצירת סטטיסטיקת שימוש פרטית, יי t MSG_185 "תהליך העדכון:" t MSG_186 "Rufus לא מתקין או מפעיל שירותים ברקע, לכן חיפוש אחר עדכונים יתבצע רק כשהיישום הראשי פועל.\\line\nכמובן שנדרשת גישה לאינטרנט כדי לחפש עדכונים." t MSG_187 "קובץ תמונה שגוי עבור אפשרות האתחול שנבחרה" -t MSG_188 "קובץ התמונה הנוכחי אינו מתאים לאפשרות האתחול שנבחרה. נא להשתמש בקובץ תמונה אחר או לבחור באפשרות אתחול אחרת.." +t MSG_188 "קובץ התמונה הנוכחי אינו מתאים לאפשרות האתחול שנבחרה. נא להשתמש בקובץ תמונה אחר או לבחור באפשרות אתחול אחרת." t MSG_189 "קובץ ה־ISO הזה אינו מותאם למערכת הקבצים שנבחרה" t MSG_190 "זוהה כונן שאינו תואם" t MSG_191 "מעבר כתיבה" @@ -6049,6 +6396,8 @@ t MSG_319 "מצב התעלמות מסמן האתחול (Boot Marker)" t MSG_320 "מרענן את מבנה המחיצות (%s)..." t MSG_321 "קובץ התמונה שבחרת הוא מסוג ISOHybrid, אבל היוצרים שלו לא תכננו אותו בצורה שיהיה נתמך במצב העתקת קבצים מ־ISO.\nכתוצאה מכך, ייאכף שימוש במצב כתיבה כקובץ תמונה DD." t MSG_322 "לא ניתן לפתוח או לקרוא את '%s'" +t MSG_323 "החלת SkuSiPolicy.p7b בזמן ההתקנה (יש לעיין ב־KB5042562 למידע נוסף)" +t MSG_324 "שיפורי QoL (לא לכפות Copilot, OneDrive, Outlook, Fast Startup וכו')" t MSG_325 "מחיל התאמה אישית של Windows‏: %s" t MSG_326 "מחיל אפשרויות משתמש..." t MSG_327 "חוויית המשתמש של Windows" @@ -6059,9 +6408,9 @@ t MSG_331 "השבתת איסוף נתונים (דילוג על שאלות של t MSG_332 "למנוע מ־Windows To Go לגשת לדיסקים פנימיים" t MSG_333 "יצירת חשבון מקומי עם שם המשתמש:" t MSG_334 "הגדרת אפשרויות האזור לאותם ערכים כמו של משתמש זה" -t MSG_335 "השבתת הצפנת מכשיר אוטומטית של BitLocker" +t MSG_335 "השבתת הצפנה אוטומטית של המכשיר באמצעות BitLocker" t MSG_336 "יומן קבוע" -t MSG_337 "יש להוריד קובץ נוסף ('diskcopy.dll') מ־Microsoft על מנת להתקין MS-DOS:\n- יש לבחור 'כן' כדי להתחבר לאינטרנט ולהוריד אותו\n- יש לבחור 'לא' כדי לבטל את הפעולה\n\nהערה: הקובץ יירד לספרייה בה ממוקם היישום וכל עוד הקובץ יהיה שם, Rufus ישתמש בו באופן אוטומטי במידת הצורך." +t MSG_337 "יש להוריד קובץ נוסף ('%s') מ־Microsoft כדי להשתמש בתכונה זו:\n- יש לבחור 'כן' כדי להתחבר לאינטרנט ולהוריד אותו\n- יש לבחור 'לא' כדי לבטל את הפעולה\n\nהערה: הקובץ יורד לספרייה בה ממוקם היישום וכל עוד הקובץ יהיה שם, Rufus ישתמש בו באופן אוטומטי במידת הצורך." t MSG_338 "אותר מנהל אתחול UEFI שנאסר לשימוש" t MSG_339 "Rufus איתר שקובץ ה־ISO שבחרת מכיל מנהל אתחול UEFI שנאסר לשימוש ושיציג %s, כאשר Secure Boot מופעל על מערכת UEFI מעודכנת לחלוטין.\n\n- אם השגת את קובץ תמונת ISO זה ממקור מפוקפק, כדאי לשקול את האפשרות שייתכן שהוא מכיל נוזקת UEFI, ולהימנע מלאתחל ממנו.\n- אם השגת אותה ממקור מהימן, כדאי לנסות לאתר גרסה יותר עדכנית, שלא תציג אזהרה זו." t MSG_340 "מסך \"הפרת אבטחה\"" @@ -6074,6 +6423,30 @@ t MSG_346 "הגבלת ההתקנה של Windows למצב S-Mode (אינו נתמ t MSG_347 "מצב מומחה" t MSG_348 "מחלץ קובצי ארכיון: %s" t MSG_349 "שימוש ב־MBR של Rufus" +t MSG_350 "שימוש במנהלי אתחול חתומים 'Windows CA 2023' (דורש מחשב יעד נתמך)" +t MSG_351 "בודק אחר ביטול תוקף של מנהל אתחול UEFI..." +t MSG_352 "בודק אחר עדכונים ל־UEFI DBX..." +t MSG_353 "עדכון DBX זמין" +t MSG_354 "Rufus איתר גרסה מעודכנת של קובצי DBX המשמשים לבצע בדיקות ביטול תוקף של UEFI Secure Boot. האם ברצונך להוריד את העדכון הזה?\n- יש לבחור 'כן' כדי להתחבר לאינטרנט ולהוריד את התוכן הזה\n- יש לבחור 'לא' כדי לבטל פעולה זו\n\nהערה: הקבצים יורדו לספרייה בה ממוקם היישום וכל עוד הקבצים יהיו שם, Rufus ישתמש בהם באופן אוטומטי במידת הצורך." +t MSG_355 "איפוס הדיסק והתקנה ⚠באופן שקט⚠:" +t MSG_356 "בחרת להשתמש באפשרות התקנת Windows באופן \"שקט\".\n\nזוהי אפשרות מתקדמת, המיועדת לאנשים שרוצים ליצור מדיה שלא מציגה שום בקשות או שאלות מהמשתמש במהלך התקנת Windows, ולכן *מוחקת ומאפסת ללא התראה מוקדמת* את הדיסק הראשון שמזוהה במערכת היעד. אם לא נזהרים, שימוש באפשרות זו עלול לגרום *לאובדן נתונים בלתי הפיך*!\n\nעליך לקרוא ולאשר את כל ההצהרות הבאות כדי להמשיך:" +t MSG_358 "מיקום קובץ תמונה לא נתמך" +t MSG_359 "לא ניתן לבחור בקובץ תמונה הממוקם בכונן היעד, מכיוון שכונן זה עומד להימחק ולהתאפס לחלוטין. זה אותו הדבר כמו לנסות לנסר את הענף שעליו יושבים!\n\nנא להעביר את קובץ התמונה למיקום שונה ולנסות שוב." +t MSG_360 "אפשר להשאיר את האפשרות הזו מופעלת בבטחה גם אם יש לך TPM או יותר זיכרון RAM, מכיוון שהיא רק עוקפת את דרישות ההתקנה ואינה מונעת מ־Windows להשתמש בכל החומרה הזמינה." +t MSG_361 "כדי שאפשרות זו תעבוד, *חייבים* להתנתק מהרשת/אינטרנט במהלך ההתקנה!" +t MSG_362 "עונה באופן אוטומטי 'לא' לשאלות ההתקנה של Windows הנוגעות לשיתוף נתונים עם Microsoft, במקום לבקש קלט מהמשתמש." +t MSG_363 "כדאי להשאיר אפשרות זו מופעלת, אלא אם כן מקובל עליך ש־Windows To Go יקבל גישה לדיסקים פנימיים ויבצע שדרוגי מערכת קבצים בלתי הפיכים באופן שקט." +t MSG_364 "יצירה אוטומטית של חשבון מקומי עם שם משתמש שמצוין מראש, תוך שימוש בסיסמה ריקה שתצטרך להיות מוחלפת בהתחברות הבאה." +t MSG_365 "שכפול הגדרות האזור מהמחשב הזה (מקלדת, אזור זמן, מטבע), במקום לבקש קלט מהמשתמש." +t MSG_366 "לא להצפין את דיסק המערכת, אלא אם המשתמש מבקש זאת באופן מפורש." +t MSG_367 "יש להשתמש באפשרות זו רק אם ידוע לך מהו S-Mode, ומובן לך שהמערכת שלך עשויה להישאר נעולה ב־S-Mode גם לאחר מחיקה מלאה והתקנה מחדש של Windows." +t MSG_368 "יש להשתמש באפשרות זו אם המערכת שבה מתוכננת ההתקנה של Windows משתמשת בתעודות Secure Boot מעודכנות לחלוטין. אם יש צורך, ניתן לנסות להשתמש ב־Mosby כדי לעדכן את המערכת." +t MSG_369 "יש להשתמש באפשרות זו אם ברצונך לאסור את השימוש במנהלי אתחול נוספים של Windows שעשויים להיות לא בטוחים, בידיעה שיש בכך גם סיכון שמדיות סטנדרטיות של Windows לא ייטענו." +t MSG_370 "שיפורי \"Quality of Life\": השבתת רוב התכונות הבלתי רצויות ש־Microsoft מנסה לכפות על משתמשי קצה." +t MSG_371 "אם משתמשים באפשרות זו, יש לוודא שכל הכוננים במחשב היעד מנותקים, מלבד הכונן שבו רוצים להתקין את Windows, וכן לא להשאיר את המדיה מחוברת למחשב שאותו לא רוצים למחוק." +t MSG_372 "אני אדאג שכל הדיסקים, מלבד הדיסק שעליו אני רוצה להתקין את Windows, יהיו מנותקים." +t MSG_373 "אני אדאג לא להשאיר את אמצעי האחסון הזה מחובר למחשב שאינני מתכוון למחוק." +t MSG_374 "אני מסכים/ה שכל אובדן מידע הנובע משימוש באפשרות זו הוא באחריותי הבלעדית." t MSG_900 "Rufus הוא כלי המסייע באתחול ויצירת כונני הבזק מסוג USB הניתנים לאתחול, כמו דיסק און קי, כרטיסי זיכרון וכו׳." t MSG_901 "האתר הרשמי: %s" t MSG_902 "קוד מקור: %s" @@ -6096,12 +6469,12 @@ t MSG_922 "הורדת קובצי ISO של מעטפת UEFI" #########################################################################v l "hu-HU" "Hungarian (Magyar)" 0x040e -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX t IDD_ABOUTBOX "A Rufus névjegye" -t IDC_ABOUT_LICENSE "Licensz" +t IDC_ABOUT_LICENSE "Licenc" g IDD_DIALOG t IDS_DRIVE_PROPERTIES_TXT "Meghajtó tulajdonságai" @@ -6127,7 +6500,7 @@ t IDC_START "Indítás" g IDD_LICENSE t IDCANCEL "Bezárás" -t IDD_LICENSE "Rufus Licensz" +t IDD_LICENSE "Rufus Licenc" g IDD_LOG t IDCANCEL "Bezárás" @@ -6283,7 +6656,7 @@ t MSG_129 "Egy UEFI:NTFS bootloaderrel rendelkező adathordozót készítettél. t MSG_130 "Windows kép kiválasztása" t MSG_131 "Ez az ISO több Windows képet is tartalmaz.\nKérlek, válaszd ki azt a képet, amelyet használni szeretnél a telepítéshez:" t MSG_132 "Egy másik alkalmazás vagy folyamat használja ezt az eszközt. Így is formázni szeretnéd?" -t MSG_133 "A Rufus észlelte, hogy egy 1809-es verziójú ISO alapján kíséreltél meg egy Windows To Go meghajtót készíteni\n\nEgy *MICROSOFT HIBA* miatt ez a meghajtó a Windows indulása során össze fog omlani (kék halál), hacsak nem cseréled ki manuálisan a 'WppRecorder.sys' fájlt egy 1803-as verzióra.\n\nVedd figyelembe azt is, hogy a Rufus azért nem tudja automatikusan kijavítani ezt, mert a 'WppRecorder.sys' a Microsoft jogvédett fájlja, ezért nem tudjuk törvényesen beágyazni a fájl másolatát az alkalmazásba..." +t MSG_133 "A Rufus észlelte, hogy egy 1809-es verziójú ISO alapján kíséreltél meg egy Windows To Go meghajtót készíteni.\n\nEgy *MICROSOFT HIBA* miatt ez a meghajtó a Windows indulása során össze fog omlani (kék halál), hacsak nem cseréled ki manuálisan a 'WppRecorder.sys' fájlt egy 1803-as verzióra.\n\nVedd figyelembe azt is, hogy a Rufus azért nem tudja automatikusan kijavítani ezt, mert a 'WppRecorder.sys' a Microsoft jogvédett fájlja, ezért nem tudjuk törvényesen beágyazni a fájl másolatát az alkalmazásba..." t MSG_134 "Mivel MBR lett kiválasztva partíciós sémaként, a Rufus legfeljebb 2 TB-os partíciót tud létrehozni ezen az adathordozón, amellyel így %s lemezterület elérhetetlenné válik.\n\nBiztosan folytatni szeretnéd?" t MSG_135 "Verzió" t MSG_136 "Kiadás" @@ -6471,6 +6844,8 @@ t MSG_319 "Boot Marker figyelmen kívül hagyása" t MSG_320 "Partíció elrendezés frissítése (%s)..." t MSG_321 "A kiválasztott képfájl egy ISOHybrid képfájl, de a készítői nem tették kompatibilissé az ISO (fájlmásolás) móddal.\nEmiatt a DD képfájl írási mód lesz kényszerítve." t MSG_322 "Nem lehet megnyitni vagy olvasni ezt: '%s'" +t MSG_323 "SkuSiPolicy.p7b alkalmazása a telepítésen (Lásd: KB5042562)" +t MSG_324 "QoL fejlesztések (Ne erőltesse ezeket: Copilot, OneDrive, Outlook, Gyors rendszerindítás stb.)" t MSG_325 "Windows testreszabás alkalmazása: %s" t MSG_326 "Felhasználói beállítások alkalmazása..." t MSG_327 "Windows Felhasználói Élmény" @@ -6483,7 +6858,7 @@ t MSG_333 "Helyi fiók létrehozása ezzel a felhasználónévvel:" t MSG_334 "A jelenlegi felhasználó területi beállításainak használata" t MSG_335 "BitLocker automatikus eszköz titkosítás letiltása" t MSG_336 "Tartós naplózás" -t MSG_337 "Az MS-DOS telepítéséhez egy további fájlt ('diskcopy.dll') kell letölteni a Microsofttól:\n- Válaszd az 'Igen' gombot az internethez történő kapcsolódáshoz, és a fájl letöltéséhez\n- Válaszd a 'Nem' gombot a művelet megszakításához\n\nMegjegyzés: A fájl a program mappájába lesz letöltve, és automatikusan újra lesz használva, ha létezik." +t MSG_337 "A funkció használatához egy további fájlt ('%s') kell letölteni a Microsofttól:\n- Válaszd az 'Igen' gombot az internethez történő kapcsolódáshoz, és a fájl letöltéséhez\n- Válaszd a 'Nem' gombot a művelet megszakításához\n\nMegjegyzés: A fájl az alkalmazás mappájába lesz letöltve, és automatikusan újra lesz használva, ha létezik." t MSG_338 "Visszavont UEFI rendszerbetöltő detektálva" t MSG_339 "A Rufus észlelte, hogy a kiválasztott ISO egy olyan UEFI rendszerbetöltőt tartalmaz, amelyet visszavontak, és ha a Secure Boot engedélyezve van egy teljesen naprakész UEFI rendszeren, akkor ehhez vezet: %s.\n\n- Ha ezt az ISO képet nem megbízható forrásból szerezted be, akkor számolnod kell azzal a lehetőséggel, hogy UEFI kártevőt tartalmazhat, és elkerülendő az erről történő rendszerindítás.\n- Ha megbízható forrásból szerezted be, akkor próbálj meg egy naprakészebb verziót találni, amelyre ez a figyelmeztetés nem jelenik meg." t MSG_340 "\"Security Violation\" képernyő" @@ -6496,6 +6871,30 @@ t MSG_346 "Windows korlátozása S módra (NEM KOMPATIBILIS az online Microsoft- t MSG_347 "Szakértő mód" t MSG_348 "Archív fájlok kibontása: %s" t MSG_349 "Rufus MBR használata" +t MSG_350 "A 'Windows CA 2023' tanúsítvánnyal aláírt rendszerbetöltők használata (Kompatibilis célszámítógép szükséges)" +t MSG_351 "UEFI rendszerbetöltő visszavonásának ellenőrzése..." +t MSG_352 "UEFI DBX frissítések keresése..." +t MSG_353 "DBX frissítés elérhető" +t MSG_354 "A Rufus talált frissített verziót az UEFI Secure Boot visszavonási ellenőrzéséhez használt DBX fájlokból. Szeretnéd letölteni ezt a frissítést?\n- Válaszd az 'Igen' gombot az internethez történő kapcsolódáshoz, és a fájlok letöltéséhez\n- Válaszd a 'Nem' gombot a művelet megszakításához\n\nMegjegyzés: A fájlok az alkalmazás mappájába lesznek letöltve, és automatikusan újra lesznek használva, ha léteznek." +t MSG_355 "⚠CSENDESEN⚠ törölje a lemezt és telepítse ezt:" +t MSG_356 "A \"csendes\" Windows telepítési beállítást választottad.\n\nEz egy haladó szintű beállítás azok számára, akik olyan adathordozót szeretnének készíteni, ami nem tesz fel kérdéseket a Windows telepítése során, ezért FELTÉTEL NÉLKÜL TÖRLI az elsőként észlelt lemezt a célrendszeren. Ha nem vagy elővigyázatos, ennek a beállításnak a használata VISSZAFORDÍTHATATLAN ADATVESZTÉST okozhat!\n\nA folytatáshoz EL KELL OLVASNIA és EL KELL FOGADNIA az alábbi állításokat:" +t MSG_358 "Nem támogatott kép hely" +t MSG_359 "Nem használhatsz célmeghajtón lévő képet, mivel az a meghajtó teljesen törölve lesz. Ez ugyanaz, mint magad alatt vágni a fát!\n\nKérlek, helyezd át a képet egy másik helyre, és próbáld újra." +t MSG_360 "Ezt a beállítást biztonságosan engedélyezve hagyhatod akkor is, ha rendelkezel TPM-mel vagy több RAM-mal, mivel ez a beállítás csak a telepítési követelményeket kerüli meg, és valójában nem akadályozza meg, hogy a Windows az összes elérhető hardvert használja." +t MSG_361 "Ezen funkció működéséhez a hálózatot/internetet le KELL választanod a telepítés idejére!" +t MSG_362 "Automatikus 'nem' válasz a Windows telepítő azon kérdéseire, amelyek az adatok Microsoft számára történő adatmegosztással kapcsolatosak, a felhasználó megkérdezése helyett." +t MSG_363 "Hagyd bekapcsolva ezt a beállítást, kivéve, ha beleegyezel abba, hogy a 'Windows To Go' hozzáférjen a belső lemezekhez és csendben visszafordíthatatlan fájlrendszer-frissítéseket hajtson végre." +t MSG_364 "Automatikusan létrehoz egy helyi fiókot a megadott felhasználónévvel, üres jelszót használva, amit a következő belépéskor meg kell változtatni." +t MSG_365 "A területi beállítások másolása erről a számítógépről (billentyűzet, időzóna, pénznem), a felhasználó megkérdezése helyett." +t MSG_366 "Ne titkosítsa a rendszerlemezt amíg a felhasználó kifejezetten nem kéri." +t MSG_367 "Csak akkor használd ezt a beállítást, ha tudod, mi az az S mód, és megértetted, hogy a rendszered beragadhat az S módba még a Windows teljes törlése és újratelepítése esetén is." +t MSG_368 "Használd ezt a beállítást, ha olyan rendszerre szeretnéd telepíteni a Windows-t, ami teljesen naprakész Secure Boot tanúsítványokat használ. Szükség esetén a 'Mosby' segítségével frissítheted a rendszeredet." +t MSG_369 "Használd ezt a beállítást, ha szeretnél visszavonni további, potenciálisan nem biztonságos Windows rendszerbetöltőket. Emiatt előfordulhat, hogy a sztenderd Windows adathordozó sem fog elindulni." +t MSG_370 "\"Quality of Life\" fejlesztések: Letiltja a legtöbb nem kívánt funkciót, amit a Microsoft próbál ráerőltetni a végfelhasználókra." +t MSG_371 "Ha ezt a beállítást használod, győződj meg arról, hogy minden lemezt leválasztottál a célszámítógépről, kivéve azt az egyet, amelyikre a Windows telepítését szeretnéd, és ne hagyd az adathordozót csatlakoztatva olyan számítógéphez, amit nem akarsz törölni." +t MSG_372 "GONDOSKODOK arról, hogy minden meghajtó le legyen csatlakoztatva a Windows célmeghajtón kívül." +t MSG_373 "GONDOSKODOK arról, hogy ezt az adathordozót ne hagyjam csatlakoztatva nem kívánt törlésű géphez." +t MSG_374 "ELFOGADOM, hogy az ezen opcióból eredő adatvesztés teljes mértékben az én felelősségem." t MSG_900 "A Rufus egy segédprogram, amellyel bootolható USB flash meghajtókat formázhat és készíthet, például USB kulcsokat/pendrive-okat, memóriakártyákat, stb." t MSG_901 "Hivatalos oldal: %s" t MSG_902 "Forráskód: %s" @@ -6517,7 +6916,7 @@ t MSG_922 "UEFI Shell ISO képfájlok letöltése" ######################################################################### l "id-ID" "Indonesian (Bahasa Indonesia)" 0x0421 -v 3.22 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -6535,10 +6934,10 @@ t IDS_PARTITION_TYPE_TXT "Skema partisi" t IDS_TARGET_SYSTEM_TXT "Sistem target" t IDC_LIST_USB_HDD "Daftar USB Hard Drives" t IDC_OLD_BIOS_FIXES "Tambah perbaikan untuk BIOS lama (partisi ekstra, penyesuaian, dll.)" -t IDC_UEFI_MEDIA_VALIDATION "Aktifkan validasi media UEFI waktu proses" +t IDC_UEFI_MEDIA_VALIDATION "Aktifkan validasi media UEFI runtime" t IDS_FORMAT_OPTIONS_TXT "Opsi Format" t IDS_FILE_SYSTEM_TXT "Sistem berkas" -t IDS_CLUSTER_SIZE_TXT "Ukuran klatser" +t IDS_CLUSTER_SIZE_TXT "Ukuran klaster" t IDS_LABEL_TXT "Label volume" t IDC_QUICK_FORMAT "Format cepat" t IDC_BAD_BLOCKS "Periksa blok buruk pada perangkat" @@ -6731,8 +7130,7 @@ t MSG_163 "Metode yang akan digunakan untuk membuat partisi" t MSG_164 "Metode yang akan digunakan untuk membuat perangkat bootable" t MSG_165 "Klik untuk memilih sebuah image..." t MSG_166 "Centang kotak ini untuk menampilkan label internasional dan menyetel ikon perangkat (membuat autorun.inf)" -t MSG_167 "Menginstal MBR memungkinkan untuk boot dan dapat memanipulasi ID perangkat USB di BIOS" -t MSG_168 "Mencoba menyamarkan perangkat USB bootable pertama (biasanya 0x80) sebagai disk yang berbeda.\nBiasanya hanya diperlukan jika Anda memasang Windows XP dan memiliki lebih dari satu disk." +t MSG_167 "Instal bootloader UEFI yang akan memvalidasi MD5Sum dari media" t MSG_169 "Membuat partisi tersembunyi tambahan dan memcoba menyelaraskan batas partisi.\nUpaya ini dapat memperbaiki deteksi boot bagi BIOS versi lama." t MSG_170 "Aktifkan pencantuman USB Hard Drive enclosures. RESIKO DITANGGUNG ANDA SENDIRI!!!" t MSG_171 "Mulai operasi format.\nTindakan ini akan MENGHAPUS semua data pada target!" @@ -6884,6 +7282,8 @@ t MSG_319 "Abaikan Penanda Boot" t MSG_320 "Menyegarkan tata letak partisi (%s)..." t MSG_321 "Gambar yang Anda pilih adalah ISOHybrid, tetapi pembuatnya belum membuatnya kompatibel dengan mode salin ISO/Berkas.\nAkibatnya, mode penulisan DD image akan diberlakukan." t MSG_322 "Tidak dapat membuka atau membaca '%s'" +t MSG_323 "Aktifkan SkuSiPolicy.p7b ketika instalasi (lihat KB5042562)" +t MSG_324 "Peningkatan QoL (Tidak memaksakan Copilot, OneDrive, Outlook, Fast Startup, dll.)" t MSG_325 "Menerapkan kustomisasi Windows: %s" t MSG_326 "Menerapkan pilihan pengguna..." t MSG_327 "Pengalaman Pengguna Windows" @@ -6896,6 +7296,41 @@ t MSG_333 "Buat akun lokal dengan username:" t MSG_334 "Atur pilihan wilayah sama seperti pengguna saat ini" t MSG_335 "Matikan enkripsi perangkat otomatis BitLocker" t MSG_336 "Catatan yang tetap/persistent" +t MSG_337 "Berkas tambahan ('%s') dari Microsoft diperlukan untuk menggunakan fitur tersebut\n- Pilih 'Ya' untuk mengunduh\n- Pilih 'Tidak' untuk membatalkan\n\nCatatan: Berkas tersebut akan disimpan pada folder aplikasi dan akan digunakan di kemudian hari secara otomatis." +t MSG_338 "Terdeteksi pembatalan bootloader UEFI" +t MSG_339 "Rufus mendeteksi bahwa ISO yang dipilih terdapat bootloader UEFI yang dibatalkan dan dapat memberikan peringatan %s, ketika Secure Boot diaktifkan pada UEFI system terbaru.\n\n- Kalau berkas ISO ini didapatkan dari sumber yang tidak terpercaya, terdapat kemungkinan ada malware UEFI dan hindarilah menggunakan image ini.\n- Kalau berkas ISO ini didapatkan dari sumber yang terpercaya, carilah versi yang lebih baru yang tidak memberikan peringatan ini." +t MSG_340 "layar \"Security Violation\"" +t MSG_341 "Windows Recovery Screen (BSOD) dengan '%s'" +t MSG_342 "VHDX Image terkompresi" +t MSG_343 "VHDX Image tidak terkompresi" +t MSG_345 "Data tambahan perlu diunduh dari Microsoft untuk menggunakan fungsi ini:\n- Pilih 'Ya' untuk menyambungkan ke Internet dan mencoba untuk mengunduhnya\n- Pilih 'Tidak' untuk membatalkan operasi" +t MSG_346 "Batasi Windows menjadi S-Mode (TIDAK KOMPATIBEL dengan bypass akun online)" +t MSG_347 "Mode Expert" +t MSG_348 "Mengekstrak berkas arsip: %s" +t MSG_349 "Gunakan Rufus MBR" +t MSG_350 "Gunakan bootloader 'Windows CA 2023' (Membutuhkan PC yang kompatibel)" +t MSG_351 "Sedang cek pembatalan bootloader UEFI..." +t MSG_352 "Sedang cek pembaruan UEFI DBX..." +t MSG_353 "Pembaruan DBX tersedia" +t MSG_354 "Rufus menemukan pembaruan berkas DBX yang digunakan untuk mengecek pembatalan UEFI Secure Boot. Apakah anda ingin mengunduhnya?\n- Pilih 'Ya' untuk menyambungkan ke Internet dan mencoba untuk mengunduhnya\n- Pilih 'Tidak' untuk membatalkan operasi" +t MSG_355 "Hapus disk secara ⚠SILENT⚠ dan instal:" +t MSG_356 "Anda memilih untuk menggunakan opsi instalasi Windows secara \"silent\".\n\nIni adalah pilihan lanjutan, yang diperuntukkan untuk membuat media yang tidak memberikan pilihan ketika instalasi Windows dan akan MENGHAPUS TANPA TERKECUALI disk yang terdeteksi pertama kali pada system. Kalau tidak berhati-hati, menggunakan pilihan ini akan menyebabkan KEHILANGAN DATA PERMANEN!\n\nAnda HARUS membaca dan menyetujui semua pernyataan berikut untuk melanjutkan:" +t MSG_359 "Anda tidak dapat menggunakan berkas image yang terletak pada penyimpanan tujuan, karena penyimpanan tersebut akan dihapus seluruhnya.\n\nTolong pindahkan berkas image tersebut ke lokasi yang lain dan coba lagi." +t MSG_360 "Pilihan ini aman untuk digunakan walaupun terdapat TPM atau RAM berlebih, karena pilihan ini hanya melewati persyaratan awal dan tidak menghentikan Windows untuk menggunakan seluruh hardware yang tersedia." +t MSG_361 "Supaya pilihan ini dapat digunakan, Anda HARUS memutuskan Internet ketika instalasi~" +t MSG_362 "Secara otomatis akan memilih 'Tidak' pada pertanyaan setup Windows terkait dengan pembagian data dengan Microsoft, tanpa menanyakan pada user." +t MSG_363 "Anda sebaiknya menyalakan opsi ini, kecuali jika Anda ingin 'Windows To Go' untuk mengakses disk internal dan melakukan pembaruan sistem yang tidak dapat diubah secara diam-diam." +t MSG_364 "Buat akun local dengan nama user pilihan, menggunakan password kosong yang perlu diubah di proses logon selanjutnya." +t MSG_365 "Gunakan pengaturan regional dari PC ini (keyboard, zona waktu, mata uang), tanpa menanyakan kepada user." +t MSG_366 "Tidak mengenkripsi disk sistem, kecuali diminta oleh user." +t MSG_367 "Gunakan pilihan ini jika Anda mengetahui S-Mode dan mengerti bahwa sistem Anda akan dikunci menjadi S-Mode walaupun sudah menghapus dan instal ulang Windows." +t MSG_368 "Gunakan pilihan ini jika Anda ingin menginstal Windows menggunakan sertifikat Secure Boot terbaru. Jika dibutuhkan, Anda dapat menggunakan 'Mosby\" untuk memperbarui sistem." +t MSG_369 "Gunakan pilihan ini jika Anda ingin membatalkan penggunaan bootloader Windows yang tidak aman, tapi dengan potensi mencegah media Windows standar untuk booting." +t MSG_370 "Peningkatan \"Quality of Life\": menonaktifkan fitur Microsoft yang tidak diinginkan." +t MSG_371 "Jika Anda menggunakan pilihan ini, mohon untuk mencabut semua disk dari PC tujuan agar tidak terjadi kehilangan data, kecuali disk yang digunakan untuk menginstal Windows." +t MSG_372 "SAYA AKAN memastikan semua disk, kecuali disk untuk Windows, dalam keadaan terputus." +t MSG_373 "SAYA AKAN memastikan media ini tidak terpasang pada PC yang tidak saya rencanakan untuk dihapus." +t MSG_374 "SAYA SETUJU bahwa kehilangan data akibat opsi ini menjadi tanggung jawab saya sepenuhnya." t MSG_900 "Rufus adalah alat yang membantu untuk memformat dan membuat perangkat USB flash menjadi bootable, seperti USB flashdisk, kartu memori, dll." t MSG_901 "Situs resmi: %s" t MSG_902 "Kode Sumber: %s" @@ -6917,7 +7352,7 @@ t MSG_922 "Unduh Shell ISO UEFI" ######################################################################### l "it-IT" "Italian (Italiano)" 0x0410, 0x0810 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -6936,6 +7371,7 @@ t IDC_LIST_USB_HDD "Elenco unità disco USB" t IDC_OLD_BIOS_FIXES "Aggiungi correzioni per vecchi BIOS (partizioni extra, allineamento, etc)" t IDC_UEFI_MEDIA_VALIDATION "Abilita convalida multimediale UEFI in runtime" t IDS_FORMAT_OPTIONS_TXT "Opzioni formattazione" +t IDS_FILE_SYSTEM_TXT "Sistema di file" t IDS_CLUSTER_SIZE_TXT "Dimensione cluster" t IDS_LABEL_TXT "Etichetta volume" t IDC_QUICK_FORMAT "Formattazione rapida" @@ -6961,6 +7397,8 @@ t IDD_NEW_VERSION "Rufus - Controllo aggiornamenti" t IDS_NEW_VERSION_AVAIL_TXT "È disponibile una nuova versione. Scarica la versione aggiornata!" t IDC_WEBSITE "Fai clic qui per visitare il sito web" t IDS_NEW_VERSION_NOTES_GRP "Informazioni versione" +t IDS_NEW_VERSION_DOWNLOAD_GRP "Scarica" +t IDC_DOWNLOAD "Scarica" g IDD_NOTIFICATION t IDC_MORE_INFO "Altre informazioni" @@ -6999,6 +7437,7 @@ t MSG_028 "megabyte" t MSG_029 "Predefinito" t MSG_030 "%s (predefinito)" t MSG_031 "BIOS (o UEFI CSM)" +t MSG_032 "UEFI (senza CSM)" t MSG_033 "BIOS o UEFI" t MSG_034 "%d passaggio" t MSG_035 "%d passaggi %s" @@ -7006,6 +7445,7 @@ t MSG_036 "Immagine ISO" t MSG_037 "Applicazione" t MSG_038 "Annulla" t MSG_039 "Esegui" +t MSG_040 "Scarica" t MSG_041 "Operazione annullata dall'utente" t MSG_042 "Errore" t MSG_043 "Errore: %s" @@ -7079,9 +7519,9 @@ t MSG_110 "Non si può avviare MS-DOS da una unità che usa una dimensione del c t MSG_111 "Dimensione cluster incompatibile" t MSG_112 "La formattazione di un volume UDF di grandi dimensioni può richiedere molto tempo. In modo USB 2.0, il tempo stimato per la formattazione sarà di %d:%02d, durante il quale la barra di progresso non verrà aggiornata. Attendi il completamento dell'operazione!" t MSG_113 "Volume UDF di grandi dimensioni" -t MSG_114 "Questa immagine usa Syslinux %s%s ma questa applicazione include solo i file di installazione per Syslinux %s%s.\n\nPoiché le nuove versioni di Syslinux non sono compatibili con le precedenti e non sarebbe possibile per Rufus includerle tutte, devono essere scaricati da internet due file aggiuntivi ('ldlinux.sys' e 'ldlinux.bss'):\n- Seleziona 'Sì' per collegarti a internet e scaricare questi due file\n- Seleziona 'No' per annullare l'operazione\n\nNota: questi file verranno scaricati nella cartella corrente dell'applicazione e se presenti verranno riusati automaticamente." +t MSG_114 "Questa immagine usa Syslinux %s%s ma questa applicazione include solo i file di installazione per Syslinux %s%s.\n\nPoiché le nuove versioni di Syslinux non sono compatibili con le precedenti e non sarebbe possibile per Rufus includerle tutte, devono essere scaricati da internet due file aggiuntivi ('ldlinux.sys' e 'ldlinux.bss'):\n- Seleziona 'Sì' per collegarti a internet e scaricare questi due file\n- Seleziona 'No' per annullare l'operazione\nNota: i file verranno scaricati nella cartella attuale dell'applicazione e verranno riusati automaticamente se presenti." t MSG_115 "Richiede download" -t MSG_116 "Questa immagine usa Grub %s ma l'applicazione include solo i file di installazione per Grub %s.\n\nQuesta differente versione di Grub potrebbe non essere compatibile con l'altra, e non è possibile includere i file di installazione. Rufus tenterà di trovare una versione dei file di installazione di Grub ('core.img') che corrisponda a quella dell'immagine.\n- Seleziona 'Sì' per collegarti a internet e tentare il download\n- Seleziona 'No' per usare la versione predefinita di Rufus\n- Seleziona 'Annulla' per interrompere l'operazione.\n\nNote: i file verranno scaricati nella cartella attuale dell'applicazione e verranno riusati automaticamente se presenti. Se non sarà trovata online nessuna corrispondenza, verrà usata la versione predefinita." +t MSG_116 "Questa immagine utilizza Grub %s, ma l'applicazione include solo i file di installazione per Grub %s.\n\nPoiché le diverse versioni di Grub potrebbero non essere compatibili tra loro e non è possibile includerle tutte, Rufus tenterà di individuare una versione del file di installazione di Grub (\"core.img\") che corrisponda a quella presente nella tua immagine:\n- Seleziona “Sì” per connetterti a Internet e tentare di scaricarlo\n- Seleziona “No” per utilizzare la versione predefinita di Rufus\n- Seleziona “Annulla” per interrompere l'operazione\n\nNota: il file verrà scaricato nella directory corrente dell'applicazione e verrà riutilizzato automaticamente se presente. Se online non viene trovata alcuna corrispondenza, verrà utilizzata la versione predefinita." t MSG_117 "Installazione Windows standard" t MSG_119 "opzioni avanzate unità" t MSG_120 "opzioni avanzate formattazione" @@ -7097,9 +7537,10 @@ t MSG_129 "Hai appena creato un media che utilizza il bootloader UEFI:NTFS.\nRic t MSG_130 "Selezione immagine Windows" t MSG_131 "Questa immagine ISO contiene più immagini di Windows.\nSeleziona l'immagine che vuoi usare per questa installazione:" t MSG_132 "Un altro programma o processo sta accedendo a questa unità.\nVuoi formattare comunque l'unità?" -t MSG_133 "Rufus ha rilevato che stai tentando di creare un media 'Windows To Go' basato su una ISO 1809.\n\nA causa di un *BUG MICROSOFT*, questo supporto si arresta in modo anomalo durante l'avvio di Windows (Blue Screen Of Death), a meno che non si sostituisca manualmente il file 'WppRecorder.sys' con una versione 1803.\n\nNota inoltre che il motivo per cui Rufus non può risolvere automaticamente questo problema è che 'WppRecorder.sys' è un file protetto da copyright di Microsoft, quindi non è possibile incorporare legalmente una copia del file nell'applicazione..." +t MSG_133 "Rufus ha rilevato che stai tentando di creare un supporto “Windows To Go” basato su un'immagine ISO della versione Windows 10 1809.\n\nA causa di un *BUG DI MICROSOFT*, questo supporto andrà in crash durante l'avvio di Windows (BSOD), a meno che non sostituisca manualmente il file “WppRecorder.sys” con una versione 1803.\n\nTieni inoltre presente che il motivo per cui Rufus non può risolvere automaticamente questo problema è che “WppRecorder.sys” è un file protetto da copyright di Microsoft, quindi non possiamo legalmente incorporarne una copia nell'applicazione..." t MSG_134 "Poiché è stato selezionato 'MBR' per lo schema partizione, Rufus può creare su questo supporto solo una partizione fino ad un massimo di 2 TB, che lascerà %s di spazio su disco non disponibile.\n\nSei sicuro di voler continuare?" t MSG_135 "Versione" +t MSG_136 "Pubblicazione" t MSG_137 "Edizione" t MSG_138 "Lingua" t MSG_139 "Architettura" @@ -7283,6 +7724,8 @@ t MSG_319 "Ignora marcatore boot" t MSG_320 "Aggiornamento layout partizione (%s)..." t MSG_321 "L'immagine selezionata è una ISO ibrida, ma i suoi creatori non l'hanno resa compatibile con la modalità di copia ISO/file.\nDi conseguenza, verrà applicata la modalità di scrittura delle immagini DD." t MSG_322 "Impossibile aprire o leggere '%s'" +t MSG_323 "Applicare SkuSiPolicy.p7b all'inizio dell'installazione (vedere KB5042562)" +t MSG_324 "Miglioramenti della QoL (Non forzare Copilot, OneDrive, Outlook, avvio rapido, ecc.)" t MSG_325 "Applicando personalizzazione Windows: %s" t MSG_326 "Applicando opzioni utente..." t MSG_327 "Esperienza utente Windows" @@ -7295,7 +7738,7 @@ t MSG_333 "Crea account locale con nome utente:" t MSG_334 "Imposta opzioni regionali agli stessi valori di questo utente" t MSG_335 "Disabilita la crittografia automatica dei dispositivi BitLocker" t MSG_336 "Log persistente" -t MSG_337 "Per installare MS-DOS è necessario scaricare da Microsoft un file aggiuntivo (\"diskcopy.dll\"):\n- Seleziona 'Sì' per connettersi ad internet e scaricarlo\n- Seleziona 'No' per annullare l'operazione\n\nNota: il file verrà scaricato nella cartella dell'applicazione e se presente verrà riutilizzato automaticamente." +t MSG_337 "Per utilizzare questa funzionalità, è necessario scaricare un file aggiuntivo ('%s') da Microsoft:\n- Seleziona 'Sì' per connettersi ad internet e scaricarlo\n- Seleziona 'No' per annullare l'operazione\n\nNota: il file verrà scaricato nella directory dell'applicazione e, se presente, verrà riutilizzato automaticamente." t MSG_338 "Rilevato bootloader UEFI revocato" t MSG_339 "Rufus ha rilevato che l'ISO selezionata contiene un bootloader UEFI che è stato revocato e che quando Secure Boot è abilitato su un sistema UEFI completamente aggiornato produrrà %s. \n\n- Se hai ottenuto questa immagine ISO da una sorgente non affidabile, dovresti considerare la possibilità che possa contenere malware UEFI ed evitare di eseguire l'avvio da esso.\n- Se l'hai ottenuto da una sorgente attendibile, dovresti provare a cercare una versione più aggiornata, che non genererà questo avviso." t MSG_340 "una schermata \"Violazione sicurezza\"" @@ -7308,6 +7751,29 @@ t MSG_346 "Limita Windows alla modalità S (INCOMPATIBILE con il bypass dell'acc t MSG_347 "Modalità esperto" t MSG_348 "Estrazione file archivio: %s" t MSG_349 "Usa MBR Rufus" +t MSG_350 "Utilizza bootloader firmati 'Windows CA 2023' (Richiede PC compatibile)" +t MSG_351 "Verifica della revoca del bootloader UEFI..." +t MSG_352 "Verifica degli aggiornamenti UEFI DBX..." +t MSG_353 "Aggiornamento DBX disponibile" +t MSG_354 "Rufus ha trovato una verzione aggiornamentato dei fili DBX usati per eseguire la verifica di revoca per UEFI Secure Boot. Vuoi scaricare questo aggiornamento?\n- Seleziona \"Sì\" per connettere all'Internet e scaricare questo contenuto\n- Seleziona \"No\" per cancellare l'operazione\n\nNota: " +t MSG_355 "Cancella disco e installa ⚠SILENZIOSA⚠:" +t MSG_356 "Hai scelto di utilizzare l'opzione di installazione “silenziosa” di Windows.\n\nSi tratta di un'opzione avanzata, riservata a chi desidera creare un supporto che non richieda l'intervento dell'utente durante l'installazione di Windows e che, di conseguenza, CANCELLI INCONDIZIONATAMENTE il primo disco rilevato sul sistema di destinazione. Se non presti la dovuta attenzione, l'utilizzo di questa opzione può causare una PERDITA IRREVERSIBILE DI DATI!\n\nDEVI leggere e accettare tutte le seguenti dichiarazioni per continuare:" +t MSG_358 "Percorso immagine non sopportato." +t MSG_359 "Non puoi usare un'immagine che si trova nell'unità di destinazione, poiché tale unità verrà completamente formattata. È come cercare di segare il ramo su cui sei seduto!\n\nSposta l'immagine in una posizione diversa e riprova." +t MSG_360 "È consigliabile lasciare questa opzione attivata anche se si dispone di un TPM o di più RAM, poiché essa si limita a ignorare i requisiti di configurazione e non impedisce effettivamente a Windows di utilizzare tutto l'hardware disponibile." +t MSG_361 "Affinché questa opzione funzioni, è NECESSARIO disconnettere la rete/Internet durante l'installazione!" +t MSG_362 "Rispondere automaticamente “no” alle domande della procedura di installazione di Windows relative alla condivisione dei dati con Microsoft, invece di chiedere conferma all'utente." +t MSG_363 "Ti consigliamo di lasciare questa opzione abilitata, a meno che tu non abbia nulla in contrario al fatto che \"Windows To Go\" acceda ai dischi interni ed esegua in modo silenzioso aggiornamenti irreversibili del file system." +t MSG_364 "Crea automaticamente un account locale con il nome utente specificato, utilizzando una password vuota che dovrà essere modificata al prossimo accesso." +t MSG_365 "Duplica le impostazioni regionali di questo PC (tastiera, fuso orario, valuta), invece di chiedere conferma all'utente." +t MSG_367 "Utilizza questa opzione solo se sai cos'è la modalità S e sei consapevole del fatto che il tuo sistema potrebbe rimanere bloccato in modalità S anche dopo aver cancellato completamente e reinstallato Windows." +t MSG_368 "Utilizza questa opzione se il sistema su cui intendi installare Windows utilizza certificati Secure Boot completamente aggiornati. Se necessario, puoi valutare l'utilizzo di \"Mosby\" per aggiornare il tuo sistema." +t MSG_369 "Utilizza questa opzione se desideri revocare ulteriori bootloader di Windows potenzialmente non sicuri, tenendo presente che ciò potrebbe impedire l'avvio anche dei supporti standard di Windows." +t MSG_370 "Miglioramenti alla “QoL”: disattiva la maggior parte delle funzionalità indesiderate che Microsoft sta cercando di imporre agli utenti finali." +t MSG_371 "Se si utilizza questa opzione, assicurarsi di scollegare tutti i dischi dal PC di destinazione, tranne quello su cui si desidera installare Windows, e di non lasciare il supporto collegato a nessun PC che non si desidera cancellare." +t MSG_372 "MI ASSICURERÒ che tutti i dischi, tranne quello per Windows, siano scollegati." +t MSG_373 "MI ASSICURERÒ di non lasciare questo supporto collegato a un PC che non intendo cancellare." +t MSG_374 "ACCETTO che qualsiasi perdita di dati derivante da questa opzione sia a mio esclusivo carico." t MSG_900 "Rufus è un programma che ti aiuta a formattare e creare una unità flash USB avviabile, come una unità USB, memory stick, ecc." t MSG_901 "Sito ufficiale: %s" t MSG_902 "Codice sorgente: %s" @@ -7330,7 +7796,7 @@ t MSG_922 "Scarica le ISO della shell UEFI" ###################################################################### l "ja-JP" "Japanese (日本語)" 0x0411 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -7517,7 +7983,7 @@ t MSG_129 "UEFI:NTFS ブートローダーを使用するメディアを作成 t MSG_130 "Windows イメージの選択" t MSG_131 "この ISO には複数の Windows イメージが含まれます。\nこのインストールに使用したいイメージを選択してください。" t MSG_132 "別のプログラムまたはプロセスがこのドライブにアクセスしています。このままフォーマットしますか?" -t MSG_133 "1809 バージョンの ISO を使用して Windows To Go のメディアを作成しようとしていることを検出しました。\n\nこのメディアは、“WppRecorder.sys” を 1803 バージョンのファイルに手動で置き換えない限り、Windowsのブート中にクラッシュ (ブルースクリーン) します。これは * Microsoftのバグ * によるものです。\n\n“WppRecorder.sys” は Microsoft の著作権で保護されたファイルであり、アプリケーションにファイルのコピーを合法的に埋め込めないため、Rufus が自動的にこの不具合を修正することはできません。" +t MSG_133 "Rufusは1809 バージョンの ISO を使用して Windows To Go のメディアを作成しようとしていることを検出しました。\n\nこのメディアは、“WppRecorder.sys” を 1803 バージョンのファイルに手動で置き換えない限り、Windowsのブート中にクラッシュ (ブルースクリーン) します。これは * Microsoftのバグ * によるものです。\n\n“WppRecorder.sys” は Microsoft の著作権で保護されたファイルであり、アプリケーションにファイルのコピーを合法的に埋め込めないため、Rufus が自動的にこの不具合を修正することはできません。" t MSG_134 "パーティション構成に MBR が選択されているため、Rufus はこのメディア上に最大 2 TB のパーティションしか作成できません。そのため、%s のディスク容量が使用できなくなります。\n\n続けますか?" t MSG_135 "バージョン" t MSG_136 "リリース" @@ -7704,6 +8170,8 @@ t MSG_319 "Boot Maker を無視" t MSG_320 "パーティション レイアウトを更新中 (%s)" t MSG_321 "選択されたイメージはハイブリッド ISO 形式ですが、 ISO イメージ モード / ファイル コピー モードと互換性がありません。\nそのため、書き込みには DD イメージ モードが適用されます。" t MSG_322 "'%s'の読み取り" +t MSG_323 "インストール時にSkuSiPolicy.p7bを適応する(KB5042562を参照)" +t MSG_324 "利便性向上パッチ(Microsoftの各種ソフトウェアの無効化)" t MSG_325 "Windowsカスタムを適応: %s" t MSG_326 "ユーザー設定を適応中..." t MSG_327 "Windows ユーザーエクスペリエンス" @@ -7716,7 +8184,7 @@ t MSG_333 "ローカルアカウントを次の名前で作成:" t MSG_334 "地域設定をこのユーザーと同じものに設定" t MSG_335 "BitLocker 自動デバイス暗号化を無効化します。" t MSG_336 "永続ログ" -t MSG_337 "MS-DOSをインストールするにはMicrosoftから追加のファイル(diskcopy.dll)をダウンロードする必要があります。\n- はいを選択すると、インターネットに接続しダウンロードします。\n- いいえを選択すると、キャンセルします\n\n注意:ファイルはアプリケーションのディレクトリへダウンロードされ、今後自動的に再利用されます。" +t MSG_337 "この機能を使用するには、Microsoft から追加のファイル ('%s') をダウンロードする必要があります:\n- はいを選択すると、インターネットに接続しダウンロードします。\n- いいえを選択すると、キャンセルします\n\n注意:ファイルはアプリケーションのディレクトリへダウンロードされ、今後自動的に再利用されます。" t MSG_338 "無効なUEFIブートローダーが検出されました。" t MSG_339 "Rufusは選択されたISOイメージが無効なUEFIブートローダーを含み、最新のUEFIでセキュアブートが有効である場合%sを引き起こすことを検出しました。\n\n- このファイルが信頼できないソースから入手されたものであれば、マルウェア混入の可能性があるため起動しないことをお勧めします。\n- このファイルが信頼できるソースから取得したものであれば、警告が発生しない新しいバージョンを探すことをお勧めします。" t MSG_340 "セキュリティ侵害表示" @@ -7729,6 +8197,30 @@ t MSG_346 "WindowsのSモードを強制する(オンラインアカウント要 t MSG_347 "エキスパートモード" t MSG_348 "ファイルを展開中: %s" t MSG_349 "Rufus MBRを使用する" +t MSG_350 "Windows CA 2023署名のブートローダーを使用する (対応するPCが必要です)" +t MSG_351 "UEFIブートローダーの有効性を確認中..." +t MSG_352 "UEFI DBXのアップデートをチェック中..." +t MSG_353 "DBXのアップデートが利用可能です。" +t MSG_354 "UEFIセキュアブートの有効性チェックに使用するDBXファイルの新しいバージョンを発見しました。ダウンロードしますか?\n- はいを選択すると、インターネットに接続しダウンロードします。\n- いいえを選択すると、キャンセルします\n\n注意:ファイルはアプリケーションのディレクトリへダウンロードされ、今後自動的に再利用されます。" +t MSG_355 "⚠サイレント⚠ ディスクの削除とインストール:" +t MSG_356 "Windowsのサイレントインストールオプションを選択しました。\n\nこれはWindowsのインストールを完全自動化するための高度なオプションであり、システムが最初に検知したディスクを無条件に削除します。操作を誤ると予期せぬデータ喪失を引き起こす可能性があります!\n\n続行するには、以下のすべての項目を読み、同意する必要があります:" +t MSG_358 "サポートされていないイメージのロケーション" +t MSG_359 "ターゲットドライブに配置されたファイルは書き込み時に完全に削除されるため、このファイルを使用することはできません。\n\nファイルを移動し再試行してください。" +t MSG_360 "このオプションはセットアップの要件のみをスキップし、Windowsの機能には影響を与えないため、TPMや十分なRAMがある場合でも有効化しておくことが推奨されます。" +t MSG_361 "このオプションを利用するためにはインストール時にネットワークから確実に接続解除されなければなりません!" +t MSG_362 "Windowsのインストール時にMicrosoftのデータ収集オプションに自動的に[いいえ]と回答します。" +t MSG_363 "Windows To Goが内部ディスクにアクセスし不可逆なアップグレードを行うことを了承しない限りこのオプションを有効にすることが推奨されます。" +t MSG_364 "指定されたユーザー名で自動的にローカルアカウントを作成します。パスワードは空欄の為、ログイン時に変更が必要です。" +t MSG_365 "このPCの地域設定(キーボード、タイムゾーン、通貨設定)をコピーすることでユーザー入力を省略します。" +t MSG_366 "ユーザーの明示的な操作がない限りシステムディスクを暗号化しません。" +t MSG_367 "Sモードの仕組みとWindowsをクリーンインストールしてもSモードが残る可能性を理解している場合のみこのオプションを有効にしてください。" +t MSG_368 "最新のセキュアブート証明でWindowsを使用する場合はこのオプションを有効化してください。必要に応じてMosbyを使ってシステムを更新することもできます。" +t MSG_369 "危険な可能性のあるWindowsブートローダーを無効化したい場合このオプションを有効化してください。ただし、通常のWindowsメディアが起動しなくなる可能性があります。" +t MSG_370 "Microsoftが強制する不要な機能の大半を無効化することにより利便性を向上します。" +t MSG_371 "このオプションを使用する場合はWindowsをインストールするディスク以外を全て取り外して、削除しないメディアを残さないでください。" +t MSG_372 "Windows をインストールしたいディスク以外のすべてのディスクが切断されていることを確認します。" +t MSG_373 "このメディアを、消去する予定のないPCに接続したままにしないことを確認します。" +t MSG_374 "このオプションの使用により発生するデータ損失について、全責任を負うことに同意します。" t MSG_900 "Rufus (ルーファス) とは、起動可能なUSBフラッシュドライブ(USBメモリなど)を作成したり、フォーマットをするためのソフトウェアです。" t MSG_901 "公式サイト: %s" t MSG_902 "ソースコード: %s" @@ -7751,7 +8243,7 @@ t MSG_922 "UEFIシェルのISOをダウンロードします。" ######################################################################### l "ko-KR" "Korean (한국어)" 0x0412 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -7803,7 +8295,7 @@ t IDC_DOWNLOAD "다운로드" g IDD_NOTIFICATION t IDC_MORE_INFO "추가 정보" t IDYES "예" -t IDNO "아니오" +t IDNO "아니요" g IDD_UPDATE_POLICY t IDCANCEL "닫기" @@ -7821,7 +8313,7 @@ t MSG_005 "Rufus가 온라인으로 응용 프로그램 업데이트를 확인 t MSG_006 "닫기" t MSG_007 "취소" t MSG_008 "예" -t MSG_009 "아니오" +t MSG_009 "아니요" t MSG_010 "불량 블록을 찾았습니다" t MSG_011 "검사 완료: %d개의 불량 블록을 찾았습니다\n %d개 읽기 오류\n %d개 쓰기 오류\n %d개 손상 오류" t MSG_012 "%s\n더 자세한 보고서는 다음에서 확인할 수 있습니다:\n%s" @@ -7891,7 +8383,7 @@ t MSG_080 "Rufus는 Windows가 여전히 내부 버퍼를 USB 장치로 플러 t MSG_081 "지원되지 않는 이미지" t MSG_082 "이 이미지는 부팅할 수 없거나 Rufus에서 지원하지 않는 부팅 또는 압축 방식을 사용합니다..." t MSG_083 "%s를 교체하시겠습니까?" -t MSG_084 "이 ISO 이미지는 '%s'의 오래된 버전을 사용하는 것 같습니다.\n이로 인해 부팅 메뉴가 제대로 표시되지 않을 수 있습니다.\n\nRufus는 이 문제를 해결하기 위해 최신 버전을 다운로드할 수 있습니다:\n- 인터넷에 연결하고 파일을 다운로드하려면 '예'를 선택합니다\n- 기존 ISO 파일을 수정하지 않은 상태로 두려면 '아니오'를 선택합니다\n무엇을 해야 할지 모르면 '예'를 선택해야 합니다.\n\n참고: 새 파일이 현재 디렉터리에 다운로드되고 '%s'가 있으면 자동으로 재사용됩니다." +t MSG_084 "이 ISO 이미지는 '%s'의 오래된 버전을 사용하는 것 같습니다.\n이로 인해 부팅 메뉴가 제대로 표시되지 않을 수 있습니다.\n\nRufus는 이 문제를 해결하기 위해 최신 버전을 다운로드할 수 있습니다:\n- 인터넷에 연결하고 파일을 다운로드하려면 '예'를 선택합니다\n- 기존 ISO 파일을 수정하지 않은 상태로 두려면 '아니요'를 선택합니다\n무엇을 해야 할지 모르면 '예'를 선택해야 합니다.\n\n참고: 새 파일이 현재 디렉터리에 다운로드되고 '%s'가 있으면 자동으로 재사용됩니다." t MSG_085 "%s 다운로드 중" t MSG_086 "선택된 ISO 이미지가 없습니다" t MSG_087 "%s 장치" @@ -7911,19 +8403,19 @@ t MSG_100 "이 ISO 이미지에는 FAT 또는 FAT32 파일 시스템에 허용 t MSG_101 "WIM 지원 누락" t MSG_102 "플랫폼이 WIM 압축파일에서 파일을 추출할 수 없습니다. EFI 부팅 가능한 Windows 7 및 Windows Vista USB 드라이브를 생성하려면 WIM 압축을 풀어야 합니다. 최신 버전의 7-Zip을 설치하여 이 문제를 해결할 수 있습니다.\n7-zip 다운로드 페이지를 방문하시겠습니까?" t MSG_103 "%s(을)를 다운로드하시겠습니까?" -t MSG_104 "%s 이상에서는 '%s' 파일을 설치해야 합니다.\n이 파일은 크기가 100KB 이상이고 항상 %s ISO 이미지에 존재하기 때문에 Rufus에 포함되어 있지 않습니다.\n\nRufus가 누락된 파일을 다운로드할 수 있습니다:\n- 인터넷에 연결하고 파일을 다운로드하려면 '예'를 선택합니다\n- 나중에 드라이브에 이 파일을 수동으로 복사하려면 '아니오'를 선택합니다\n\n참고: 파일이 현재 디렉터리에 다운로드되고 '%s'가 있으면 자동으로 재사용됩니다." -t MSG_105 "취소하면 장치를 사용할 수 없는 상태가 될 수 있습니다.\n취소하려면 예를 클릭합니다. 그렇지 않으면 아니오를 클릭합니다." +t MSG_104 "%s 이상에서는 '%s' 파일을 설치해야 합니다.\n이 파일은 크기가 100KB 이상이고 항상 %s ISO 이미지에 존재하기 때문에 Rufus에 포함되어 있지 않습니다.\n\nRufus가 누락된 파일을 다운로드할 수 있습니다:\n- 인터넷에 연결하고 파일을 다운로드하려면 '예'를 선택합니다\n- 나중에 드라이브에 이 파일을 수동으로 복사하려면 '아니요'를 선택합니다\n\n참고: 파일이 현재 디렉터리에 다운로드되고 '%s'가 있으면 자동으로 재사용됩니다." +t MSG_105 "취소하면 장치를 사용할 수 없는 상태가 될 수 있습니다.\n취소하려면 예를 클릭합니다. 그렇지 않으면 아니요를 클릭합니다." t MSG_106 "폴더를 선택하세요" t MSG_107 "모든 파일" t MSG_108 "Rufus 로그" t MSG_109 "0x%02X (디스크 %d)" t MSG_110 "MS-DOS는 64KB 클러스터 크기를 사용하는 드라이브에서 부팅할 수 없습니다.\n클러스터 크기를 변경하거나 FreeDOS를 사용하세요." t MSG_111 "호환되지 않는 클러스터 크기" -t MSG_112 "대용량 UDF 볼륨을 포맷하는 데 많은 시간이 걸릴 수 있습니다. USB 2.0 속도에서 예상 포맷 지속 시간은 %d:%02d이며, 이 기간 동안 진행률 표시줄이 고정된 것처럼 보입니다. 기다려주십시오!" +t MSG_112 "대용량 UDF 볼륨을 포맷하는 데 많은 시간이 걸릴 수 있습니다. USB 2.0 속도에서 예상 포맷 지속 시간은 %d:%02d이며, 이 기간 동안 진행률 표시줄이 고정된 것처럼 보입니다. 기다려주세요!" t MSG_113 "대용량 UDF 볼륨" -t MSG_114 "이 이미지에서는 Syslinux %s%s를 사용하지만 이 응용 프로그램에는 Syslinux %s%s에 대한 설치 파일만 포함됩니다.\n\n새 버전의 Syslinux는 서로 호환되지 않으므로 Rufus가 모두 포함할 수 없으므로 인터넷에서 두 개의 추가 파일 ('ldlinux.sys' 및 'ldlinux.bss')을 다운로드해야 합니다:\n- 인터넷에 연결하고 이러한 파일을 다운로드하려면 '예'를 선택합니다\n- 작업을 취소하려면 '아니오'를 선택합니다\n\n참고: 파일은 현재 응용 프로그램 디렉터리에 다운로드되며 있는 경우 자동으로 재사용됩니다." +t MSG_114 "이 이미지에서는 Syslinux %s%s를 사용하지만 이 응용 프로그램에는 Syslinux %s%s에 대한 설치 파일만 포함됩니다.\n\n새 버전의 Syslinux는 서로 호환되지 않으므로 Rufus가 모두 포함할 수 없으므로 인터넷에서 두 개의 추가 파일 ('ldlinux.sys' 및 'ldlinux.bss')을 다운로드해야 합니다:\n- 인터넷에 연결하고 이러한 파일을 다운로드하려면 '예'를 선택합니다\n- 작업을 취소하려면 '아니요'를 선택합니다\n\n참고: 파일은 현재 응용 프로그램 디렉터리에 다운로드되며 있는 경우 자동으로 재사용됩니다." t MSG_115 "다운로드가 필요합니다" -t MSG_116 "이 이미지는 Grub %s을(를) 사용하지만 응용 프로그램에는 Grub %s에 대한 설치 파일만 포함합니다.\n\n다른 버전의 Grub은 서로 호환되지 않을 수 있으며, 모두 포함할 수 없기 때문에 Rufus는 이미지에서 일치하는 Grub 설치 파일 ('core.img')의 버전을 찾으려고 시도합니다:\n- 인터넷에 연결하고 다운로드하려면 '예'를 선택합니다\n- Rufus의 기본 버전을 사용하려면 '아니오'를 선택합니다\n- 작업을 중단하려면 '취소'를 선택합니다\n\n참고: 파일은 현재 응용 프로그램 디렉터리에 다운로드되며 있는 경우 자동으로 재사용됩니다. 일치하는 항목을 온라인으로 찾을 수 없는 경우 기본 버전이 사용됩니다." +t MSG_116 "이 이미지는 Grub %s을(를) 사용하지만 응용 프로그램에는 Grub %s에 대한 설치 파일만 포함합니다.\n\n다른 버전의 Grub은 서로 호환되지 않을 수 있으며, 모두 포함할 수 없기 때문에 Rufus는 이미지에서 일치하는 Grub 설치 파일 ('core.img')의 버전을 찾으려고 시도합니다:\n- 인터넷에 연결하고 다운로드하려면 '예'를 선택합니다\n- Rufus의 기본 버전을 사용하려면 '아니요'를 선택합니다\n- 작업을 중단하려면 '취소'를 선택합니다\n\n참고: 파일은 현재 응용 프로그램 디렉터리에 다운로드되며 있는 경우 자동으로 재사용됩니다. 일치하는 항목을 온라인으로 찾을 수 없는 경우 기본 버전이 사용됩니다." t MSG_117 "표준 Windows 설치" t MSG_119 "고급 드라이브 속성" t MSG_120 "고급 포맷 옵션" @@ -7939,7 +8431,7 @@ t MSG_129 "UEFI:NTFS 부트 로더를 사용하는 미디어를 방금 만들었 t MSG_130 "Windows 이미지 선택" t MSG_131 "이 ISO에는 여러 개의 Windows 이미지가 포함되어 있습니다.\n이 설치에 사용할 이미지를 선택하세요:" t MSG_132 "다른 프로그램 또는 프로세스가 이 드라이브에 액세스하고 있습니다. 포맷하시겠습니까?" -t MSG_133 "Rufus가 1809 ISO를 기반으로 Windows To Go 미디어를 만들려고 하는 것을 감지했습니다.\n\n*MICROSOFT BUG*로 인해 수동으로 'WppRecorder.sys' 파일을 1803 버전으로 교체하지 않으면 Windows 부팅 중 이 미디어가 충돌합니다.\n\n또한 Rufus가 이 문제를 자동으로 해결할 수 없는 이유는 'WppRecorder.sys'가 Microsoft의 저작권이 있는 파일이기 때문에 해당 파일의 복사본을 응용 프로그램에 법적으로 포함할 수 없기 때문입니다..." +t MSG_133 "Rufus에서 현재 1809 버전 ISO를 기반으로 'Windows To Go' 미디어를 생성하려는 것을 감지했습니다.\n\n\"Microsoft의 버그\"로 인해, 사용자가 직접 'WppRecorder.sys' 파일을 1803 버전으로 교체하지 않으면 이 미디어는 Windows 부팅 중에 충돌(블루스크린)을 일으킵니다.\n\n또한 Rufus가 이를 자동으로 수정해 드리지 못하는 이유는 'WppRecorder.sys' 파일이 Microsoft의 저작권 보호를 받는 파일이기 때문입니다. 따라서 법적으로 해당 파일의 복사본을 애플리케이션에 포함할 수 없음을 양해 바랍니다." t MSG_134 "파티션 구성표에서 MBR이 선택되었기 때문에 Rufus는 이 미디어에 최대 2TB의 파티션만 만들 수 있으며, 이로 인해 %s의 디스크 공간을 사용할 수 없게 됩니다.\n\n계속하시겠습니까?" t MSG_135 "버전" t MSG_136 "릴리즈" @@ -7948,7 +8440,7 @@ t MSG_138 "언어" t MSG_139 "아키텍처" t MSG_140 "계속" t MSG_141 "뒤로" -t MSG_142 "기다려주십시오..." +t MSG_142 "기다려주세요..." t MSG_143 "브라우저를 사용하여 다운로드" t MSG_144 "Microsoft가 이를 방지하기 위해 웹사이트를 변경했기 때문에 Windows ISO를 다운로드할 수 없습니다." t MSG_145 "이 스크립트를 실행하려면 PowerShell 3.0 이상이 필요합니다." @@ -7980,7 +8472,7 @@ t MSG_172 "유효하지 않은 다운로드 서명" t MSG_173 "선택하려면 클릭..." t MSG_174 "Rufus - 신뢰할 수 있는 USB 포맷 유틸리티" t MSG_175 "버전 %d.%d (빌드 %d)" -t MSG_176 "한국어 번역:\\line• 비너스걸 (VᴇɴᴜsGɪʀʟ♥) " +t MSG_176 "한국어 번역:\\line• 세상사는이야기-나두 \\line• Uk-Jin Jang \\line• 비너스걸 (VᴇɴᴜsGɪʀʟ♥) " t MSG_177 "버그 보고 또는 향상된 기능 요청:" t MSG_178 "추가 저작권:" t MSG_179 "업데이트 정책:" @@ -8004,7 +8496,7 @@ t MSG_196 "중요: 이 드라이브는 비표준 섹터 크기를 사용합니 t MSG_197 "비표준 섹터 크기가 감지됨" t MSG_198 "'Windows To Go'는 고정 속성이 설정된 GPT 파티션 드라이브에만 설치할 수 있습니다. 현재 드라이브가 고정 드라이브로 감지되지 않았습니다." t MSG_199 "이 플랫폼에서는 이 기능을 사용할 수 없습니다." -t MSG_201 "취소 중 - 잠시 기다려 주십시오..." +t MSG_201 "취소 중 - 잠시 기다려 주세요..." t MSG_202 "이미지 검색 중..." t MSG_203 "이미지를 검색하지 못했습니다" t MSG_204 "오래된 %s이(가) 감지되었습니다" @@ -8036,7 +8528,7 @@ t MSG_229 "파티션 부트 레코드 작성 중..." t MSG_230 "DOS 파일 복사 중..." t MSG_231 "ISO 파일 복사 중: %s" t MSG_232 "Win7 EFI 부팅 설정 (%s)..." -t MSG_233 "마무리 중, 기다려 주십시오..." +t MSG_233 "마무리 중, 기다려 주세요..." t MSG_234 "Syslinux %s 설치 중..." t MSG_235 "불량 블록: %s %d/%d - %0.2f%% (%d/%d/%d 오류)" t MSG_236 "불량 블록: 무작위 패턴으로 테스트" @@ -8126,6 +8618,8 @@ t MSG_319 "부팅 마커 무시" t MSG_320 "파티션 레이아웃 (%s)을 새로 고치는 중..." t MSG_321 "선택한 이미지는 ISO 하이브리드이지만 제작자가 ISO/파일 복사 모드와 호환되도록 만들지 않았습니다.\n이에 따라 DD 이미지 쓰기 모드가 적용됩니다." t MSG_322 "'%s'을(를) 열거나 읽을 수 없습니다" +t MSG_323 "설치 시 SkuSiPolicy.p7b 적용 (KB5042562 참조)" +t MSG_324 "QoL 개선 사항 (Copilot, OneDrive, Outlook, Fast Startup 등을 강제하지 않음)" t MSG_325 "Windows 사용자 지정 적용 중: %s" t MSG_326 "사용자 옵션을 적용하는 중..." t MSG_327 "Windows 사용자 환경" @@ -8138,7 +8632,7 @@ t MSG_333 "사용자 이름으로 로컬 계정 만들기:" t MSG_334 "이 사용자의 값과 동일한 값을 사용하여 국가별 옵션 설정" t MSG_335 "BitLocker 자동 장치 암호화 사용 안 함" t MSG_336 "영구 로그" -t MSG_337 "MS-DOS를 설치하려면 Microsoft에서 추가 파일 ('diskcopy.dll')을 다운로드해야 합니다:\n- 인터넷에 연결하여 다운로드하려면 '예'를 선택합니다\n- 작업을 취소하려면 '아니오'를 선택합니다\n\n참고: 해당 파일은 응용 프로그램의 디렉터리에 다운로드되며 존재하는 경우 자동으로 재사용됩니다." +t MSG_337 "이 기능을 사용하려면 Microsoft에서 추가 파일('%s')을 다운로드해야 합니다:\n- 인터넷에 연결하여 다운로드하려면 '예'를 선택하세요.\n- 작업을 취소하려면 '아니요'를 선택하세요.\n\n참고: 파일은 프로그램 실행 디렉토리에 다운로드되며, 파일이 존재하면 자동으로 재사용됩니다." t MSG_338 "취소된 UEFI 부트로더가 탐지됨" t MSG_339 "Rufus는 사용자가 선택한 ISO에 취소된 UEFI 부트로더가 포함되어 있으며, 이는 완전히 최신 UEFI 시스템에서 보안 부팅이 활성화된 경우에 %s을(를) 생성한다는 것을 감지했습니다.\n\n- 평판이 좋지 않은 소스에서 이 ISO 이미지를 가져온 경우 UEFI 멀웨어가 포함되어 있을 가능성을 고려하고 부팅을 피해야 합니다.\n- 신뢰할 수 있는 소스에서 가져온 경우에는 보다 최신 버전을 찾아야 합니다. 그러면 이 경고가 발생하지 않습니다.." t MSG_340 "\"보안 위반\" 화면" @@ -8146,16 +8640,39 @@ t MSG_341 "%s이(가) 있는 Windows 복구 화면 (BSOD)" t MSG_342 "압축된 VHDX 이미지" t MSG_343 "압축되지 않은 VHD 이미지" t MSG_344 "전체 플래시 업데이트 이미지" -t MSG_345 "이 기능을 사용하려면 Microsoft에서 몇 가지 추가 데이터를 다운로드해야 합니다:\n- 인터넷에 연결하여 다운로드하려면 '예'를 선택합니다\n- 작업을 취소하려면 '아니오'를 선택합니다" +t MSG_345 "이 기능을 사용하려면 Microsoft에서 몇 가지 추가 데이터를 다운로드해야 합니다:\n- 인터넷에 연결하여 다운로드하려면 '예'를 선택합니다\n- 작업을 취소하려면 '아니요'를 선택합니다" t MSG_346 "Windows를 S-Mode로 제한 (온라인 계정 우회와 호환되지 않음)" t MSG_347 "전문가 모드" t MSG_348 "압축 파일 추출 중: %s" t MSG_349 "Rufus MBR 사용" +t MSG_350 "'Windows CA 2023' 서명 부트로더 사용 (호환되는 대상 PC 필요)" +t MSG_351 "UEFI 부트로더 취소 여부 확인 중..." +t MSG_352 "UEFI DBX 업데이트 확인 중..." +t MSG_353 "DBX 업데이트 사용 가능" +t MSG_354 "Rufus가 UEFI 보안 부팅 취소 확인에 사용되는 최신 버전의 DBX 파일을 찾았습니다. 이 업데이트를 다운로드하시겠습니까?\n- 인터넷에 연결하여 파일을 다운로드하려면 '예'를 선택하세요.\n- 작업을 취소하려면 '아니오'를 선택하세요.\n\n참고: 파일은 프로그램 실행 디렉토리에 다운로드되며, 파일이 존재하면 자동으로 재사용됩니다." +t MSG_355 "⚠경고⚠ 묻지 않고 디스크 삭제 및 설치:" +t MSG_356 "\"무경고(silent)\" Windows 설치 옵션을 선택하셨습니다.\n\n이것은 고급 옵션으로, Windows 설치 중에 사용자에게 확인 과정을 거치지 않고 대상 시스템에서 처음 감지된 디스크를 \"무조건 삭제\"하는 미디어를 만들려는 분들을 위한 기능입니다. 주의하지 않으면 이 옵션 사용으로 인해 \"되돌릴 수 없는 데이터 손실\"이 발생할 수 있습니다!\n\n계속하려면 다음 모든 항목을 읽고 동의해야 합니다:" +t MSG_359 "대상 드라이브가 완전히 삭제될 예정이므로, 해당 드라이브에 있는 이미지는 사용할 수 없습니다. 이는 마치 본인이 앉아 있는 나뭇가지를 톱질하는 것과 같습니다!\n\n이미지 파일을 다른 위치로 이동한 후 다시 시도해 주세요." +t MSG_360 "TPM이나 넉넉한 RAM을 보유하고 있더라도 이 옵션을 활성화된 상태로 두는 것이 안전합니다. 이 옵션은 설치 요구 사항을 우회할 뿐이며, Windows가 사용 가능한 모든 하드웨어를 사용하는 것을 실제로 방해하지는 않기 때문입니다." +t MSG_361 "이 옵션이 작동하려면 설치 중에 반드시 네트워크/인터넷 연결을 해제해야 합니다!" +t MSG_362 "Microsoft와의 데이터 공유에 관한 Windows 설정 질문에 사용자에게 묻는 대신 자동으로 '아니오'라고 응답합니다." +t MSG_363 "'Windows To Go'가 내부 디스크에 액세스하여 예고 없이 되돌릴 수 없는 파일 시스템 업그레이드를 수행하는 것에 동의하지 않는다면, 이 옵션을 활성화된 상태로 두어야 합니다." +t MSG_364 "지정된 사용자 이름으로 로컬 계정을 자동으로 생성합니다. 암호는 빈 값으로 설정되며 다음 로그온 시 변경해야 합니다." +t MSG_365 "사용자에게 묻는 대신 이 PC의 지역 설정(키보드, 시간대, 통화)을 그대로 복제합니다." +t MSG_366 "사용자가 명시적으로 요청하지 않는 한 시스템 디스크를 암호화하지 않습니다." +t MSG_367 "S-Mode가 무엇인지 알고 있으며, Windows를 완전히 삭제하고 재설치한 후에도 시스템이 S-Mode로 고정될 수 있음을 이해하는 경우에만 이 옵션을 사용하십시오." +t MSG_368 "Windows를 설치하려는 시스템이 최신 보안 부팅 인증서를 사용 중인 경우 이 옵션을 사용하십시오. 필요한 경우 'Mosby'를 사용하여 시스템을 업데이트할 수 있습니다." +t MSG_369 "잠재적으로 안전하지 않은 추가 Windows 부트로더를 차단하려는 경우 이 옵션을 사용하십시오. 단, 표준 Windows 미디어의 부팅도 차단될 가능성이 있습니다." +t MSG_370 "\"Quality of Life(QoL)\" 개선 사항: Microsoft가 사용자에게 강제하려는 원치 않는 기능 대부분을 비활성화합니다." +t MSG_371 "이 옵션을 사용하는 경우, Windows를 설치할 디스크를 제외한 대상 PC의 모든 디스크를 분해(연결 해제)했는지 확인하십시오. 또한, 데이터 삭제를 원치 않는 PC에는 미디어를 연결된 상태로 두지 마십시오." +t MSG_372 "Windows를 설치하려는 디스크를 제외한 모든 디스크가 연결 해제되었는지 확인하겠습니다." +t MSG_373 "이 미디어를 지울 계획이 없는 PC에 연결된 상태로 두지 않도록 하겠습니다." +t MSG_374 "이 옵션 사용으로 인한 모든 데이터 손실에 대한 책임은 전적으로 본인에게 있음에 동의합니다." t MSG_900 "Rufus는 USB 메모리 및 플래시 드라이브를 포맷하고 부팅할 수 있도록 만드는 도구입니다." t MSG_901 "공식 사이트: %s" t MSG_902 "소스 코드: %s" t MSG_903 "변경 사항: %s" -t MSG_904 "이 응용 프로그램은 GNU Public License (GPL) 버전 3의 조건에 따라 라이선스가 부여됩니다.\n자세한 내용은 https://www.gnu.org/licenses/gpl-3.0.html 을 참조하십시오." +t MSG_904 "이 응용 프로그램은 GNU Public License (GPL) 버전 3의 조건에 따라 라이선스가 부여됩니다.\n자세한 내용은 https://www.gnu.org/licenses/gpl-3.0.html 을 참조하세요." t MSG_905 "부팅" t MSG_910 "USB, 플래시 카드 및 가상 드라이브를 FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3로 포맷" t MSG_911 "FreeDOS 부팅 가능한 USB 드라이브 만들기" @@ -8173,7 +8690,7 @@ t MSG_922 "UEFI Shell ISO 다운로드" ######################################################################### l "lv-LV" "Latvian (Latviešu)" 0x0426 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -8361,7 +8878,7 @@ t MSG_129 "Tikko tika izveidots nesējs ar UEFI:NTFS ielādi. Atcerieties, lai p t MSG_130 "Windows virtuālā attēla izvēle" t MSG_131 "Šis ISO satur vairāku Windows OS virtuālos attēlus.\nIzvēlieties virtuālo attēlu, kuru vēlaties izmantot instalācijai:" t MSG_132 "Citai programmai vai procesam ir piekļuve šai ierīcei. Vienalga vēlaties formatēt?" -t MSG_133 "Rufus noteica, ka mēģinat veidot Windows To Go disku formātā 1809 ISO\n\nAtsaucoties uz *MICROSOFT BUG*, šis nesējs var izsaukt Windows ielādes kļūdu (BSOD), šādā gadījumā nepieciešams manuāli samainīt 'WppRecorder.sys' failu uz 1803 versiju.\n\nRufus automātiski nemaina šo failu, jo 'WppRecorder.sys' ir Microsoft īpašums, un legāli ievietot failu programmā nav iespējams..." +t MSG_133 "Rufus noteica, ka mēģinat veidot 'Windows To Go' disku formātā 1809 ISO\n\nAtsaucoties uz *MICROSOFT BUG*, šis nesējs var izsaukt Windows ielādes kļūdu (BSOD), šādā gadījumā nepieciešams manuāli samainīt 'WppRecorder.sys' failu uz 1803 versiju.\n\nRufus automātiski nemaina šo failu, jo 'WppRecorder.sys' ir Microsoft īpašums, un legāli ievietot failu programmā nav iespējams..." t MSG_134 "Tā kā par ielādes sadaļu tika izvēlēts MBR, Rufus var izveidot sadaļu ar apjomu līdz 2 TB, pēc kā paliks %s brīvi pieejamas diska vietas papildus sadaļām.\n\nVēlaties turpināt?" t MSG_135 "Versija" t MSG_136 "Laidiens" @@ -8548,6 +9065,8 @@ t MSG_319 "Ignorēt ielādes marķeri" t MSG_320 "Atjauno sadaļas izkārtojumu (%s)..." t MSG_321 "Izvēlētais virtuālais attēls ir ISOHybrid, bet tā veidotājs nav izveidojis ISO/Failu kopēšanas .\nTiks izmantots DD virtuālā attēla kopēšanas režīms." t MSG_322 "Neizdevās atvērt vai izlasīt '%s'" +t MSG_323 "Instalēšanas laikā izmantojiet SkuSiPolicy.p7b (skatiet KB5042562)" +t MSG_324 "QoL uzlabojumi (attiecas uz Copilot, OneDrive, Outlook, Fast Startup utt.)" t MSG_325 "Pielietot Windows kastomizāciju: %s" t MSG_326 "Lietotāja opciju pielietošana..." t MSG_327 "Windows lietotāju pieredze" @@ -8560,7 +9079,7 @@ t MSG_333 "Izveidot lokālo kontu ar lietotājvārdu:" t MSG_334 "Izvēlēties reģionālos uzstādījumus kā šim lietotājam" t MSG_335 "Atslēgt automātisko šifrēšanu ar BitLocker" t MSG_336 "Pastāvīgs žurnāls" -t MSG_337 "Lai instalēt MS-DOS no Microsoft vietnes nepieciešams lejuplādēt papildus failu («diskcopy.dll»):\n- Izvēlieties «Jā», lai pieslēgties pie Interneta un failu lejuplādēt.\n- Izvēlieties «Nē», lai atcelt darbību.\n\nPiezīme. Fails tiks lejuplādēts programmas mapē, ja tas jau eksistē, tiks izmantots atkārtoti." +t MSG_337 "Lai izmantotu šo funkciju, no Microsoft ir jālejupielādē papildu fails ('%s'):\n- Izvēlieties 'Jā', lai pieslēgties pie Interneta un failu lejuplādēt.\n- Izvēlieties 'Nē', lai atcelt darbību.\n\nPiezīme. Fails tiks lejuplādēts programmas mapē, ja tas jau eksistē, tiks izmantots atkārtoti." t MSG_338 "Pamanīts atceltais UEFI ielādes ieraksts" t MSG_339 "Rufus konstatēja Jūsu izvēlētais ISO-fails satur atceltu UEFI ielādes ierakstu, kurš izdos %s, ja būs ieslēgta drošā ielāde pilnīgi jauninātajā UEFI sistēmā.\n\n- Ja šis ISO fails ir iegūts no nedrošiem avotiem, vajag ņemt vērā, ka tas var saturēt UEFI ļaunatūru un censties no tā nestartēt.\n- Ja fails iegūts no droša avota, būtu jāatrod jaunāka versija, kurai nerādīs šādu brīdinājumu." t MSG_340 "a \"Drošības pārkāpuma\" ekrāns" @@ -8573,6 +9092,30 @@ t MSG_346 "Ierobežot Windows tikai S režīmā (NESADERĪGS ar tiešsaistes kon t MSG_347 "Eksperta režīms" t MSG_348 "Atpakot arhīva failus: %s" t MSG_349 "Izmantot Rufus MBR" +t MSG_350 "Izmantojiet Windows CA 2023' parakstītus ielādētājus (nepieciešams saderīgs dators)" +t MSG_351 "Notiek UEFI ielādētāja atsaukšanas pārbaude..." +t MSG_352 "Notiek UEFI DBX atjauninājumu pārbaude..." +t MSG_353 "Pieejams DBX atjauninājums" +t MSG_354 "Rufus ir atradis atjauninātu DBX failu versiju, ko izmanto, lai veiktu UEFI Secure Boot atsaukšanas pārbaudes. Vai vēlaties lejupielādēt šo atjauninājumu?\n- Izvēlieties 'Jā', lai pieslēgties internetam un lejupielādēt šo saturu\n- Izvēlieties 'Nē', lai atceltu darbību\n\nPiezīme. Faili tiks lejupielādēti programmas direktorijā un ja tādi jau ir, tie tiks automātiski izmantoti atkārtoti." +t MSG_355 "⚠KLUSĀ⚠ diska dzēšana un instalācija:" +t MSG_356 "Ir izvēlēta \"klusā\" Windows instalēšanas opcija.\n\nŠī ir uzlabota opcija, kas paredzēta tiem, kuri vēlas izveidot datu nesēju, kas lietotājam Windows instalēšanas laikā neko neprasa un BEZNOSACĪJUMĀ DZĒŠ pirmo atrasto disku. Ja neesat piesardzīgs, šīs opcijas izmantošana var izraisīt NEATGRIEZENISKU DATU ZAUDĒJUMU!\n\nLai turpinātu, jums JĀIZLASA un JĀPIEKRĪT visiem šiem nosacījumiem:" +t MSG_358 "Neatbalstīta instalācijas atrašanās vieta" +t MSG_359 "Nevar izmantot instalāciju, kas atrodas mērķa diskā, jo šis disks tiks pilnībā izdzēsts. Tas ir tas pats, kas mēģināt zāģēt zaru, uz kura sēdi!\n\nPārvietojiet instalāciju uz citu vietu un mēģiniet vēlreiz." +t MSG_360 "Šo opciju var atstāt iespējotu pat tad, ja ir TPM vai vairāk RAM, jo šī opcija tikai apiet iestatīšanas prasības un faktiski neliedz OS Windows izmantot visu pieejamo aparatūru." +t MSG_361 "Lai šī opcija darbotos, instalēšanas laikā OBLIGĀTI jāatvieno tīkls/internets!" +t MSG_362 "Automātiski uz Windows iestatīšanas jautājumiem, kas saistīti datu koplietošanai ar Microsoft, atbilde būs 'nē' tā vietā, lai prasīt lietotājam." +t MSG_363 "Šī opcija ir jāatstāj iespējota, ja vien 'Windows To Go' nevar piekļūt iekšējiem diskiem un klusi veikt neatgriezeniskus failu sistēmas jauninājumus." +t MSG_364 "Automātiski izveidos lokālo kontu ar norādīto lietotājvārdu, izmantojot tukšu paroli, kas būs jāmaina nākamajā pieteikšanās reizē." +t MSG_365 "Dublēs reģionālos iestatījumus no šī datora (tastatūra, laika josla, valūta), tā vietā, lai prasīt lietotājam." +t MSG_366 "Nešifrēs sistēmas disku, ja vien to neaktivizēs lietotājs." +t MSG_367 "Izmantojiet šo opciju tikai tad, ja zināt, kas ir S-Mode, un saprotat, ka sistēma var tikt bloķēta S-režīmā pat pēc pilnīgas Windows dzēšanas un atkārtotas instalēšanas." +t MSG_368 "Izmantojiet šo opciju, ja sistēma, kurā plānojat instalēt sistēmu Windows, izmanto pilnībā atjauninātus Secure Boot sertifikātus. Ja nepieciešams, sistēmas atjaunināšanai varat izmantot Mosby." +t MSG_369 "Izmantojiet šo opciju, ja vēlaties atsaukt papildu potenciāli nedrošos Windows ielādētājus, taču var arī novērst standarta Windows multivides palaišanu." +t MSG_370 "\"Quality of Life\" uzlabojumi: Tiks atspējota lielākā daļu nevēlamo funkciju, ko Microsoft mēģina uzspiest lietotājiem." +t MSG_371 "Ja izmantojat šo opciju, atvienojiet visus diskus no mērķa datora, izņemot to, kurā vēlaties instalēt OS Windows, kā arī neatstājiet multividi, kuru nevēlaties dzēst, pievienotu nevienam no datoriem." +t MSG_372 "ES PARŪPĒŠOS, lai visi diski, izņemot to, kurā vēlos instalēt Windows, būtu atvienoti." +t MSG_373 "ES PARŪPĒŠOS, lai šis datu nesējs netiktu atstāts pievienots datoram, kuru neplānoju dzēst." +t MSG_374 "ES PIEKRĪTU, ka jebkādi datu zudumi, kas rodas, izmantojot šo opciju, ir pilnībā mana atbildība." t MSG_900 "Rufus ir instruments ar kura palīdzību var formatēt un izveidot USB ielādes ierīces uz tādiem nesējiem, kā USB pieslēguma zibatmiņas, atmiņas kartes u.c." t MSG_901 "Oficiālā mājas lapa: %s" t MSG_902 "Sākotnējais kods: %s" @@ -8595,7 +9138,7 @@ t MSG_922 "Lejupielādē UEFI OS ISO failus" ######################################################################### l "lt-LT" "Lithuanian (Lietuvių)" 0x0427 -v 3.22 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -8816,7 +9359,6 @@ t MSG_164 "Būdas, kuris bus naudojamas padaryti diską įkraunamą" t MSG_165 "Spauskite, jei norite pasirinkti ar atsisiųsti atvaizdą..." t MSG_166 "Pažymėkite šį langelį, norėdami įgalinti tarptautinių žymių rodymą ir įrenginio piktogramos nustatymą (sukuria autorun.inf)" t MSG_167 "Įdiegia MBR, kuris įgalina įkrovos pasirinkimą ir gali maskuoti BIOS USB disko ID" -t MSG_168 "Bandyti maskuoti pirmą įkraunamą USB diską (paprastai 0x80) kaip kitą diską.\nTo turėtų prireikti tik jei diegsite Windows XP ir bus daugiau nei vienas diskas." t MSG_169 "Sukurti papildomą slaptą skaidinį ir bandyti sulygiuoti skaidinių ribas.\nTai gali pagerinti įkrovos aptikimą su senais BIOSais." t MSG_170 "Įgalinti išorinių USB kietųjų diskų pateiktį. NAUDOTI SAVO RIZIKA!!!" t MSG_171 "Pradėti formatavimą.\nTai SUNAIKINS visus duomenis paskirtyje!" @@ -8970,6 +9512,8 @@ t MSG_319 "Nepasyti įkrovos žymės" t MSG_320 "Atnaujinamas skaidinių išdėstymas (%s)..." t MSG_321 "Jūsų pasirinktas atvaizdas yra \"ISOHybrid\" atvaizdas, tačiau jo kūrėjai nepadarė jo suderinamu su ISO/failų kopijavimo režimu.\nDėl to bus įgalintas DD atvaizdo įrašymo režimas." t MSG_322 "Nepavyksta atidaryti arba perskaityti \"%s\"" +t MSG_323 "Diegimo metu pritaikykite SkuSiPolicy.p7b (žr. KB5042562)" +t MSG_324 "QoL patobulinimai (Neverskite Copilot, OneDrive, Outlook, Greitas Paleidimas, etc.)" t MSG_325 "Windows tinkinimo taikymas: %s" t MSG_326 "Vartotojo parinkčių taikymas..." t MSG_327 "Windows vartotojo patirtis" @@ -8982,6 +9526,43 @@ t MSG_333 "Sukurkite vietinę paskyrą naudodami vartotojo vardą:" t MSG_334 "Regiono parinkčių nustatymas į tas pačias reikšmes kaip ir šio vartotojo" t MSG_335 "BitLocker automatinio įrenginių šifravimo išjungimas" t MSG_336 "Nuolatinis žurnalas" +t MSG_337 "Papildomas failas ('%s') turi būti atsisiųstas iš Microsoft, kad naudotis šią funkcija:\n- Pasirinkite 'Taip' kad prisijungtumėte prie Interneto ir atsisiųstumėte jį\n- Pasirinkite 'Ne' kad atšaukti operacija\n\nPastaba: Failas bus atsisiųstas į programos katalogą ir, jei ten jau yra, bus automatiškai panaudotas." +t MSG_338 "Aptikta panaikinta UEFI įkrovos tvarkyklė" +t MSG_339 "Rufus aptiko, kad šis pasirinktas ISO tūri UEFI įkrovos programa kuris buvo panaikintas ir kuris kurs %s, kai visiškai atnaujintoje EUFI sistemoje yra įjungtas saugus įkrovimas.\n\n- Jei ši ISO atvaizdą gavote iš nepatikimo šaltinio, turėtumėte apsvarstyti galimybę, kad jame gali būti UEFI kenkėjiška programa, ir vengti paleisti sistemą iš jos.\n- Jei gavote iš patikimo šaltinio, turėtumėte pabandyti rasti naujesnę versiją, kuri nesukels šio įspėjimo." +t MSG_340 "ekranas \"Saugumo pažeidimas\"" +t MSG_341 "Windows atkūrimo ekranas (BSOD) su pranešimu '%s'" +t MSG_342 "Suspaustas VHDX Atvaizdas" +t MSG_343 "Nesuspaustas VHD Atvaizdas" +t MSG_344 "Pilnas Flash Atnaujinimo Atvaizdas" +t MSG_345 "Reikia atsisiųsti papildomų duomenų iš Microsoft, kad naudotis šią funkciją:\n- Pasirinkite 'Taip' kad prisijungtumėte prie Interneto ir atsisiųstumėte jį\n- Pasirinkite 'Ne' kad atšaukti operacija" +t MSG_346 "Apriboti Windows iki S-režimo (NESUDERINAMA su internetinės paskyros apėjimu)" +t MSG_347 "Eksperto režimas" +t MSG_348 "Išskleiskite failus iš čia: %s" +t MSG_349 "Naudokit Rufus MBR" +t MSG_350 "Naudokite 'Windows CA 2023' pasirašytus įkrovos tvarkyklės (Reikalingas suderinamas tikslinis kompiuteris)" +t MSG_351 "Tikrinama, ar nėra UEFI įkrovos tvarkyklės atšaukimo..." +t MSG_352 "Ieškoma UEFI DBX atnaujinimų..." +t MSG_353 "DBX atnaujinimas pasiekimas" +t MSG_354 "Rufus rado atnaujintą DBX failų versija, naudojamų UEFI saugaus įkrovimo atšaukimo patikrinimams atlikti. Ar norite atsisiųsti šį atnaujinimą?\n- Pasirinkite 'Taip' kad prisijungtumėte prie Interneto ir atsisiųstumėte jį\n- Pasirinkite 'Ne' kad atšaukti operacija\n\nPastaba: Failas bus atsisiųstas į programos katalogą ir, jei ten jau yra, bus automatiškai panaudotas." +t MSG_355 "⚠TYLIAI⚠ ištrinti diską ir įdiegti:" +t MSG_356 "Jūs pasirinkote naudotis \"tylioji\" Windows diegimo parinkti.\n\nTai išplėstinė parinktis, skirta žmonėms, norintiems sukurti laikmeną, kuri neragina vartotojo diegiant „Windows“ ir todėl BE SĄLYGŲ IŠTRINA pirmąjį aptiktą diską tikslinėje sistemoje. Jei nebūsite atsargūs, naudodami šią parinktį galite NEATGRĄŽINAMAI PRARASTI DUOMENIS!\n\nNorėdami tęsti, TURITE perskaityti ir sutikti su visais šiais teiginiais:" +t MSG_358 "Nepalaikoma atvaizdo vieta" +t MSG_359 "Negalite naudoti atvaizdo, esančio paskirties diske, nes tas diskas bus visiškai ištrintas. Tai tas pats, kas bandyti pjauti šaką, ant kurios sėdite!\n\nPerkelkite atvaizdą į kitą vietą ir bandykite dar kartą." +t MSG_360 "Šią parinktį galima palikti įjungtą, net jei turite TPM ar daugiau RAM, nes ši parinktis tik apeina sąrankos reikalavimus ir iš tikrųjų netrukdo „Windows“ naudoti visos turimos aparatinės įrangos." +t MSG_361 "Kad ši parinktis veiktų, diegimo metu BŪTINA atjungti tinklą/Internetą!" +t MSG_362 "Automatiškai atsakyti 'Ne' į Windows sąrankos klausimus, susijusius su duomenų bendrinimu su Microsoft, užuot raginus vartotoją tai padaryti." +t MSG_363 "Šią parinktį turėtumėte palikti įjungtą, nebent sutinkate, kad 'Windows To Go' pasiektų vidinius diskus ir tyliai atliktų nepakeičiama failų sistemos atnaujinimą." +t MSG_364 "Automatiškai sukurti vietinę paskyrą su nurodytu vartotojo vardu, naudojant tuščią slaptažodį, kurį reikės pakeisti kito prisijungimo metu." +t MSG_365 "Nukopijuokite regioninius nustatymus iš šio kompiuterio (klaviatūrą, laiko juostą, valiutą), užuot raginę vartotoją juos pakeisti." +t MSG_366 "Nešifruokite sistemos disko, nebent to aiškiai paprašytų vartotojas." +t MSG_367 "Šią parinktį naudokite tik tuo atveju, jei žinote, kas yra S-režimas, ir suprantate, kad jūsų sistema gali būti užrakinta S-režime net ir visiškai ištrynus ir iš naujo įdiegus 'Windows'." +t MSG_368 "Naudokite šią parinktį, jei sistema, kurioje planuojate įdiegti Windows, naudoja visiškai atnaujintus „Saugaus Įkrovimo“ sertifikatus. Jei reikia, galite apsvarstyti galimybę atnaujinti sistemą naudodami 'Mosby'." +t MSG_369 "Naudokite šią parinktį, jei norite atšaukti papildomus potencialiai nesaugius Windows įkrovos tvarkykles, tačiau taip pat galite neleisti paleisti standartinės Windows laikmenos." +t MSG_370 "\"Quality of Life\" patobulinimai: Išjunkite daugumą nepageidaujamų funkcijų, kurias Microsoft bando primesti galutiniams vartotojams." +t MSG_371 "Jei naudojate šią parinktį, būtinai atjunkite visus diskus nuo tikslinio kompiuterio, išskyrus tą, kuriame norite įdiegti Windows, ir nepalikite laikmenos prijungtos prie kompiuterio, kurio nenorite ištrinti." +t MSG_372 "AŠ ĮSITIKINSIU, kad visi diskai, išskyrus tą, į kurį norite įdiegti Windows, yra atjungti." +t MSG_373 "AŠ ĮSITIKINSIU, kad šios laikmenos nepaliksiu prijungtos prie kompiuterio, kurio netrinsiu." +t MSG_374 "AŠ SUTINKU, kad bet koks duomenų praradimas dėl šios parinkties yra visiškai mano atsakomybė." t MSG_900 "Rufus programa leidžia suženklinti ir sukurti sistemų paleidimo laikmenas, kaip pvz. USB atmintukus, atminties korteles ir pan." t MSG_901 "Oficiali svetainė: %s" t MSG_902 "Šaltinio kodas: %s" @@ -9004,7 +9585,7 @@ t MSG_922 "Atsisiųskite UEFI Shell ISO" ######################################################################### l "ms-MY" "Malay (Bahasa Malaysia)" 0x043e, 0x083e -v 3.22 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -9189,7 +9770,7 @@ t MSG_129 "Anda telah menghasilkan media yang menggunakan bootloader UEFI:NTFS. t MSG_130 "Pemilihan imej Windows" t MSG_131 "ISO ini mengandungi beberapa imej Windows.\nSila pilih imej yang anda ingin gunakan untuk pemasangan:" t MSG_132 "Terdapat program atau proses lain sedang mencapai pemacu ini. Adakah anda mahu memformatnya juga?" -t MSG_133 "Rufus telah mengesan bahawa anda sedang mencuba untuk mencipta media Windows To Go berasaskan imej ISO 1809.\n\nMemandangkan terdapat pepijat dari MICROSOFT, media ini akan menghadapi masalah (Blue Scree Of Death) semasa memulakan Windows, melainkan anda menukar fail 'WppRecorder.sys' kepada versi 1803.\n\nSila ambil perhatian. Rufus tidak akan membaiki masalah ini kerana 'WppRecorder.sys' adalah hak cipta milik Microsoft dan kami tidak dapat menyertakan salinan fail berkenaan bersama-sama aplikasi ini..." +t MSG_133 "Rufus telah mengesan bahawa anda sedang mencuba untuk mencipta media Windows To Go berasaskan imej ISO 1809.\n\nMemandangkan terdapat pepijat dari MICROSOFT, media ini akan menghadapi masalah (Blue Screen Of Death) semasa memulakan Windows, melainkan anda menukar fail 'WppRecorder.sys' kepada versi 1803.\n\nSila ambil perhatian. Rufus tidak akan membaiki masalah ini kerana 'WppRecorder.sys' adalah hak cipta milik Microsoft dan kami tidak dapat menyertakan salinan fail berkenaan bersama-sama aplikasi ini..." t MSG_134 "Memandangkan skema pemetakan MBR telah dipilih, Rufus akan menghasilkan petak storan media dengan saiz maksimum 2 TB, di mana %s ruang cakera adalah tidak tersedia.\n\nAdakah anda pasti ingin meneruskan operasi?" t MSG_135 "Versi" t MSG_136 "Keluaran" @@ -9222,8 +9803,7 @@ t MSG_163 "Kaedah yang digunakan untuk mencipta partisyen" t MSG_164 "Kaedah yang digunakan untuk membuat cakera boot" t MSG_165 "Klik untuk memilih atau memuat turun imej..." t MSG_166 "Klik kotak ini untuk membenarkan paparan label antarabangsa dan menetapkan ikon cakera (akan membuat fail autorun.inf)" -t MSG_167 "Memasang MBR yang membenarkan pilihan boot dan mampu menyamar ID BIOS USB" -t MSG_168 "Cuba menyamarkan cakera USB boot (biasanya 0x80) sebagai cakera lain.\nIni hanya diperlukan jika anda memasang Windows XP dan mempunyai lebih daripada satu cakera." +t MSG_167 "Pasang pemuat but UEFI, yang akan melakukan pengesahan fail MD5Sum terhadap media" t MSG_169 "Ciptakan partisyen tambahan tersembunyi dan cuba melaraskan sempadan partisyen.\nIni boleh mempertingkatkan pengesanan boot untuk BIOS lama." t MSG_170 "Membolehkan penyenaraian pagaran cakera keras USB. GUNAKAN ATAS RISIKO SENDIRI!!!" t MSG_171 "Mulakan operasi pemformatan.\nIni akan MEMADAMKAN semua data pada sasaran!" @@ -9231,7 +9811,7 @@ t MSG_172 "Tandatangan digital muat turun tidak sah" t MSG_173 "Klik untuk memilih..." t MSG_174 "Rufus - Utiliti pemformatan USB yang dipercayai" t MSG_175 "Versi %d.%d (Build %d)" -t MSG_176 "Terjemahan Bahasa Malaysia:\\line\n• Muhammad Aman \\line\n• VGPlayer \\line\n• Mohamad Ikhwan bin Kori " +t MSG_176 "Terjemahan Bahasa Malaysia:\\line\n• Muhammad Aman \\line\n• VGPlayer \\line\n• Mohamad Ikhwan bin Kori \\line\n• Ilya Ignatev " t MSG_177 "Laporkan masalah atau cadangan penambahbaikan di:" t MSG_178 "Hak cipta tambahan:" t MSG_179 "Polisi kemaskini:" @@ -9377,6 +9957,8 @@ t MSG_319 "Abaikan penanda but" t MSG_320 "Tataletak partition yang menyegarkan (%s)..." t MSG_321 "Imej yang anda pilih ialah ISOHybrid, tetapi penciptanya tidak menjadikannya serasi dengan mod salinan ISO/Fail.\nAkibatnya, mod penulisan imej DD akan dikuatkuasakan." t MSG_322 "Tidak dapat membuka atau membaca '%s'" +t MSG_323 "Guna SkuSiPolicy.p7b semasa pemasangan (Lihat KB5042562)" +t MSG_324 "Penambahbaikan QoL (Jangan paksa Copilot, OneDrive, Outlook, Fast Startup, dll.)" t MSG_325 "Menggunakan penyesuaian Windows: %s" t MSG_326 "Menggunakan pilihan pengguna..." t MSG_327 "Pengalaman Pengguna Windows" @@ -9389,9 +9971,47 @@ t MSG_333 "Buat akaun tempatan dengan nama pengguna:" t MSG_334 "Mengesetkan opsyen rantau kepada nilai yang sama seperti pengguna ini" t MSG_335 "Lumpuhkan penyulitan peranti automatik BitLocker" t MSG_336 "Log berterusan" +t MSG_337 "Fail tambahan ('%s') mesti dimuat turun dari Microsoft untuk menggunakan ciri ini:\n- Pilih 'Ya' untuk menyambung ke Internet dan memuat turunnya\n- Pilih 'Tidak' untuk membatalkan operasi\n\nNota: Fail akan dimuat turun ke dalam direktori aplikasi dan akan digunakan semula secara automatik jika tersedia." +t MSG_338 "Pemuat but UEFI yang dibatalkan dikesan" +t MSG_339 "Rufus mengesan bahawa ISO yang anda pilih mengandungi pemuat but UEFI yang telah ditarik balik dan akan menghasilkan %s, apabila Secure Boot diaktifkan pada sistem UEFI yang terkini sepenuhnya.\n\n- Jika anda memperoleh imej ISO ini daripada sumber yang tidak dipercayai, anda harus mempertimbangkan kemungkinan ia mengandungi perisian hasad UEFI dan elakkan daripada membuat but daripadanya.\n- Jika anda memperolehnya daripada sumber yang dipercayai, anda harus cuba mencari versi yang lebih terkini, yang tidak akan menghasilkan amaran ini." +t MSG_340 "skrin \"Pelanggaran Keselamatan\"" +t MSG_341 "skrin Pemulihan Windows (BSOD) dengan '%s'" +t MSG_342 "Imej VHDX Termampat" +t MSG_343 "Imej VHD Tidak Termampat" +t MSG_344 "Imej Kemas Kini Denyar Penuh" +t MSG_345 "Beberapa data tambahan mesti dimuat turun dari Microsoft untuk menggunakan fungsi ini:\n- Pilih 'Ya' untuk menyambung ke Internet dan memuat turunnya\n- Pilih 'Tidak' untuk membatalkan operasi" +t MSG_346 "Sekat Windows ke S-Mode (TIDAK SERASI dengan pintasan akaun dalam talian)" +t MSG_347 "Mod Pakar" +t MSG_348 "Mengekstrak fail arkib: %s" +t MSG_349 "Guna MBR Rufus" +t MSG_350 "Guna pemuat but bertandatangan 'Windows CA 2023' (Memerlukan PC sasaran yang serasi)" +t MSG_351 "Sedang memeriksa penarikan balik pemuat but UEFI..." +t MSG_352 "Sedang memeriksa kemas kini DBX UEFI..." +t MSG_353 "Kemas kini DBX tersedia" +t MSG_354 "Rufus telah menemui versi kemas kini fail DBX yang digunakan untuk melakukan pemeriksaan penarikan balik Secure Boot UEFI. Adakah anda mahu memuat turun kemas kini ini?\n- Pilih 'Ya' untuk menyambung ke Internet dan memuat turun kandungan ini\n- Pilih 'Tidak' untuk membatalkan operasi\n\nNota: Fail akan dimuat turun ke dalam direktori aplikasi dan akan digunakan semula secara automatik jika tersedia." +t MSG_355 "⚠SECARA SENYAP⚠ padam cakera dan pasang:" +t MSG_356 "Anda telah memilih untuk menggunakan pilihan pemasangan Windows \"senyap\".\n\nIni adalah pilihan lanjutan, dikhaskan untuk mereka yang ingin mencipta media yang tidak meminta pengguna semasa pemasangan Windows dan oleh itu MEMADAM SECARA TANPA SYARAT cakera pertama yang dikesan pada sistem sasaran.\n\nAnda MESTI membaca dan menerima semua pernyataan berikut untuk meneruskan:" +t MSG_358 "Lokasi imej tidak disokong" +t MSG_359 "Anda tidak boleh menggunakan imej yang terletak pada pemacu sasaran, kerana pemacu tersebut akan dipadam sepenuhnya. Ia sama seperti cuba menggergaji dahan yang anda duduki!\n\nSila pindahkan imej ke lokasi lain dan cuba lagi." +t MSG_360 "Adalah selamat untuk membiarkan pilihan ini didayakan walaupun anda mempunyai TPM atau lebih RAM, kerana pilihan ini hanya memintas keperluan persediaan dan tidak benar-benar menghalang Windows daripada menggunakan semua perkakasan yang tersedia." +t MSG_361 "Untuk pilihan ini berfungsi, rangkaian/Internet MESTI diputuskan semasa pemasangan!" +t MSG_362 "Secara automatik jawab 'tidak' kepada soalan persediaan Windows berkaitan perkongsian data dengan Microsoft, dan bukannya meminta pengguna." +t MSG_363 "Anda sepatutnya membiarkan pilihan ini didayakan, melainkan anda okay dengan 'Windows To Go' mengakses cakera dalaman dan secara senyap melakukan peningkatan sistem fail yang tidak boleh diundurkan." +t MSG_364 "Secara automatik mencipta akaun tempatan dengan nama pengguna yang ditentukan, menggunakan kata laluan kosong yang perlu ditukar pada log masuk seterusnya." +t MSG_365 "Salin tetapan rantau dari PC ini (papan kekunci, zon waktu, mata wang), dan bukannya meminta pengguna." +t MSG_366 "Jangan suliikan cakera sistem, melainkan diminta secara jelas oleh pengguna." +t MSG_367 "Guna pilihan ini hanya jika anda tahu apa itu S-Mode dan faham bahawa sistem anda mungkin dikunci ke S-Mode walaupun selepas anda memadam sepenuhnya dan memasang semula Windows." +t MSG_368 "Guna pilihan ini jika sistem yang anda rancang untuk memasang Windows menggunakan sijil Secure Boot yang terkini sepenuhnya. Jika perlu, anda boleh melihat penggunaan 'Mosby' untuk mengemas kini sistem anda." +t MSG_369 "Guna pilihan ini jika anda ingin menarik balik pemuat but Windows tambahan yang mungkin tidak selamat, tetapi dengan potensi juga menghalang media Windows standard daripada membuat but." +t MSG_370 "Penambahbaikan \"Kualiti Hidup\": Lumpuhkan kebanyakan ciri yang tidak diingini yang Microsoft cuba paksa kepada pengguna akhir." +t MSG_371 "Jika anda menggunakan pilihan ini, sila pastikan untuk memutuskan setiap cakera dari PC sasaran, kecuali yang anda ingin pasangkan Windows, serta jangan biarkan media dipasang ke mana-mana PC yang anda tidak mahu padamkan." +t MSG_372 "SAYA AKAN memastikan semua cakera, kecuali cakera Windows, diputuskan sambungannya." +t MSG_373 "SAYA AKAN memastikan media ini tidak disambungkan pada PC yang tidak akan saya padamkan." +t MSG_374 "SAYA BERSETUJU bahawa sebarang kehilangan data akibat pilihan ini adalah tanggungjawab saya." t MSG_900 "Rufus adalah utiliti yang membantu memformat dan mencipta pemacu kilat USB boot, seperti pemacu pen/kekunci USB, kayu memori, dan lain-lain." t MSG_901 "Laman rasmi: %s" t MSG_902 "Kod Sumber: %s" +t MSG_903 "Log Perubahan: %s" t MSG_904 "Permohonan ini dilesenkan di bawah syarat-syarat Lesen Awam GNU (GPL) versi 3.\nLihat https://www.gnu.org/licenses/gpl-3.0.html untuk butiran." t MSG_910 "Formatkan USB, kad flash dan pemacu maya kepada FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" t MSG_911 "Buat pemacu USB boleh boot FreeDOS" @@ -9409,7 +10029,7 @@ t MSG_922 "Muat turun ISO Shell UEFI" ######################################################################### l "nb-NO" "Norwegian (Norsk)" 0x0414 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -9776,6 +10396,8 @@ t MSG_319 "Ignorer oppstartsmarkør" t MSG_320 "Forfriskende partisjonsoppsett (%s)..." t MSG_321 "Bildet du har valgt er en ISOHybrid, men skaperne har ikke gjort det kompatibelt med ISO / File copy modus.\nSom et resultat vil DD-skrivemodus bli håndhevet." t MSG_322 "Kan ikke åpne eller lese '%s'" +t MSG_323 "Bruk SkuSiPolicy.p7b under installasjon (se KB5042562)" +t MSG_324 "QoL‑forbedringer (ikke påtving Copilot, OneDrive, Outlook, Hurtig oppstart osv.)" t MSG_325 "Utfører tilpasning av Windows: %s" t MSG_326 "Aktiverer brukertilpasninger..." t MSG_327 "Windows brukeropplevelse" @@ -9788,7 +10410,7 @@ t MSG_333 "Lag en lokal brukerkonto med brukernavnet:" t MSG_334 "Sett regionale innstillinger til det samme som den aktive brukerkontoen" t MSG_335 "Deaktiver BitLocker kryptering av enheten" t MSG_336 "Behold log" -t MSG_337 "En ekstra fil ('diskcopy.dll') må lastes ned fra Microsoft for å installere MS-DOS:\n- Velg \"Ja\" for å koble til Internett og laste den ned\n- Velg 'Nei' for å avbryte operasjonen\n\nMerk: Filen vil bli lastet ned i programmets katalog og vil automatisk bli gjenbrukt hvis den er tilstede." +t MSG_337 "En ekstra fil ('%s') må lastes ned fra Microsoft for å bruke denne funksjonen:\n- Velg 'Ja' for å koble til Internett og laste den ned\n- Velg 'Nei' for å avbryte operasjonen\n\nMerk: Filen vil bli lastet ned i programmets katalog og vil automatisk bli gjenbrukt hvis den er tilstede." t MSG_338 "Opphevet UEFI bootloader oppdaget" t MSG_339 "Rufus oppdaget at ISO-en du har valgt inneholder en UEFI-oppstartslaster som har blitt tilbakekalt og som vil produsere %s, når sikker oppstart er aktivert på et fullstendig oppdatert UEFI-system.\n\n- Hvis du har fått dette ISO-bildet fra en ikke-anerkjent kilde, bør du vurdere muligheten for at det kan inneholde UEFI-malware og unngå å starte opp fra det.\n- Hvis du har fått det fra en pålitelig kilde, bør du prøve å finne en mer oppdatert versjon, som ikke vil gi denne advarselen." t MSG_340 "en \"Sikkerhetsbrudd\"-skjerm" @@ -9800,6 +10422,30 @@ t MSG_346 "Begrens Windows til S-modus (INKOMPATIBEL med online kontoomgåelse)" t MSG_347 "Ekspert modus" t MSG_348 "Pakker ut arkivfiler: %s" t MSG_349 "Bruk Rufus MBR" +t MSG_350 "Bruk bootloaders signert med «Windows CA 2023» (krever en kompatibel target‑PC)" +t MSG_351 "Søker etter tilbakekalling av UEFI‑bootloader…" +t MSG_352 "Søker etter UEFI‑DBX‑oppdateringer..." +t MSG_353 "UEFI‑DBX‑oppdatering tilgjengelig" +t MSG_354 "Rufus har funnet en oppdatert versjon av DBX‑filene som brukes til å utføre tilbakekallingssjekk for UEFI Secure Boot. Vil du laste ned denne oppdateringen?\n– Velg «Ja» for å koble til Internett og laste ned innholdet\n– Velg «Nei» for å avbryte operasjonen\n\nMerk: Filene lastes ned til programmets katalog og vil automatisk bli gjenbrukt hvis de allerede finnes." +t MSG_355 "⚠STILLEMODUS⚠ slett disk og installer:" +t MSG_356 "Du har valgt alternativet for «stille» Windows‑installasjon.\n\nDette er et avansert alternativ, beregnet for brukere som ønsker å opprette installasjonsmedier som ikke viser noen spørsmål under Windows‑installasjonen, og som derfor UBETINGET SLETTER den første oppdagede disken på målsystemet.\n\nDu MÅ lese og godta alle følgende erklæringer for å fortsette:" +t MSG_358 "Ugyldig bildelokasjon" +t MSG_359 "Du kan ikke bruke et bilde som er lagret på måldisken, siden denne disken vil bli fullstendig slettet. Det tilsvarer å sage av grenen du sitter på!\n\nFlytt bildet til en annen plassering og prøv igjen." +t MSG_360 "Det er trygt å la dette alternativet være aktivert selv om systemet har TPM eller mer RAM, siden alternativet kun omgår installasjonskravene og ikke hindrer Windows i å bruke all tilgjengelig maskinvare." +t MSG_361 "For at dette alternativet skal fungere, MÅ nettverk/Internett være frakoblet under installasjonen!" +t MSG_362 "Svar automatisk «nei» på Windows‑installasjonsspørsmål som gjelder deling av data med Microsoft, i stedet for å spørre brukeren." +t MSG_363 "Dette alternativet bør være aktivert, med mindre du aksepterer at «Windows To Go» får tilgang til interne disker og i stillhet utfører irreversible filsystemoppgraderinger." +t MSG_364 "Opprett automatisk en lokal konto med angitt brukernavn og tomt passord, som må endres ved neste pålogging." +t MSG_365 "Dupliser regionale innstillinger fra denne PC‑en (tastatur, tidssone, valuta) i stedet for å spørre brukeren." +t MSG_366 "Ikke krypter systemdisken, med mindre brukeren uttrykkelig ber om det." +t MSG_367 "Bruk dette alternativet kun hvis du vet hva S‑modus er, og forstår at systemet kan forbli låst i S‑modus selv etter full sletting av disken og ny installasjon av Windows." +t MSG_368 "Bruk dette alternativet dersom systemet du planlegger å installere Windows på, bruker fullt oppdaterte Secure Boot‑sertifikater. Ved behov kan du vurdere å bruke «Mosby» for å oppdatere systemet." +t MSG_369 "Bruk dette alternativet hvis du ønsker å tilbakekalle flere potensielt usikre Windows‑bootloaders, men vær oppmerksom på at dette også kan hindre standard Windows‑medier i å starte." +t MSG_370 "«Quality of Life»-forbedringer: Deaktiverer de fleste uønskede funksjonene Microsoft forsøker å påtvinge sluttbrukere." +t MSG_371 "Hvis du bruker dette alternativet, sørg for å koble fra alle disker fra mål‑PC‑en unntatt den du vil installere Windows på, og pass på at installasjonsmediet ikke er koblet til noen PC du ikke ønsker å slette." +t MSG_372 "JEG VIL sørge for at alle disker, unntatt den jeg vil installere Windows på, er frakoblet." +t MSG_373 "JEG VIL sørge for at dette mediet ikke er tilkoblet en PC jeg ikke planlegger å slette." +t MSG_374 "JEG GODTAR at ethvert datatap fra dette alternativet er helt og fullt mitt ansvar." t MSG_900 "Rufus er et verktøy som hjelper til med å formatere og lage oppstartbare USB-stasjoner, for eksempel USB-minnepinner, USB-harddisker, og lignende." t MSG_901 "Offisiell webside: %s" t MSG_902 "Kildekode: %s" @@ -9822,7 +10468,7 @@ t MSG_922 "Last ned UEFI kommandolinje ISOer" ######################################################################### l "fa-IR" "Persian (پارسی)" 0x0429 -v 4.5 +v 4.14 b "en-US" a "r" @@ -10019,7 +10665,7 @@ t MSG_129 "شما درایو UEFI:NTFS ایجاد کردید. لطفا به یا t MSG_130 "انتخاب ایمیج (Image) ویندوز" t MSG_131 "این فایل ISO چند ایمیج (Image) مختلف ویندوز دارد.\nلطفا ایمیجی که می‌خواهید نصب کنید را انتخاب کنید:" t MSG_132 "برنامه دیگری در حال استفاده از این درایو است. آیا می‌خواهید در هر صورت این درایو را فرمت کنید؟" -t MSG_133 "Rufus تشخیص داده است که شما می‌خواهید با ISO ورژن 1809 درایوی با قابلیت «Windows To Go» ایجاد کنید.\nبه دلیل باگی که شرکت مایکروسافت در این مورد دارد؛ در هنگام راه‌اندازی ویندوز به خطای «Blue Screen Of Death» خواهید خورد. برای رفع این مشکل می‌توانید فایل 'WppRecorder.sys' را با ورژن 1803 جایگزین کنید.\nهمچنین در نظر داشته باشید به دلیل اینکه کپی‌رایت فایل 'WppRecorder.sys' برای مایکروسافت است؛ Rufus نمی‌تواند به صورت خودکار این مشکل را برای شما برطرف کند و این فایل را در برنامه خود قرار دهد." +t MSG_133 "Rufus تشخیص داده است که شما می‌خواهید با ISO ورژن 1809 درایوی با قابلیت «Windows To Go» ایجاد کنید.\nبه دلیل باگی که شرکت مایکروسافت در این مورد دارد؛ در هنگام راه‌اندازی ویندوز به خطای «Blue Screen Of Death» برخورد خواهید کرد. برای رفع این مشکل می‌توانید فایل 'WppRecorder.sys' را با ورژن 1803 جایگزین کنید.\nهمچنین در نظر داشته باشید به دلیل اینکه حق نشر فایل 'WppRecorder.sys' برای مایکروسافت است؛ Rufus نمی‌تواند به صورت خودکار این مشکل را برای شما برطرف کند و این فایل را در برنامه خود قرار دهد." t MSG_134 "چون MBR برای ساختار پارتیشن انتخاب شده است؛ Rufus تنها می‌تواند پارتیشن با حداکثر ظرفیت 2TB روی این دیسک ایجاد کند. بنابراین %s از ظرفیت دیسک در دسترس نخواهد بود.\nآیا برای ادامه این عملیات مطمئن هستید؟" t MSG_135 "نسخه" t MSG_136 "انتشار" @@ -10060,7 +10706,7 @@ t MSG_172 "امضای فایل دانلود شده معتبر نیست" t MSG_173 "برای انتخاب کلیک کنید..." t MSG_174 "Rufus، ابزاری کاربردی و قابل‌اطمینان برای فرمت کردن درایوهای USB" t MSG_175 "نسخه %d.%d (Build %d)" -t MSG_176 "ترجمه فارسی:\\line‏ •مستر ویتو \\line‏ •ضیاءالدین عظیمی " +t MSG_176 "ترجمه فارسی:\\line‏ •روبی \\line‏ •ضیاءالدین عظیمی " t MSG_177 "گزارش اشکال (Bug) یا درخواست قابلیت جدید و بهبود نرم‌افزار در:" t MSG_178 "حقوق نشر دیگران:" t MSG_179 "سیاست به‌روزرسانی:" @@ -10207,6 +10853,8 @@ t MSG_319 "Boot Marker را نادیده بگیرید" t MSG_320 "در حال تازه کردن طرح پارتیشن (%s)..." t MSG_321 "تصویری که انتخاب کرده‌اید ISOHybrid است، اما سازندگان آن آنرا با حالت کپی ISO/File سازگار نکرده‌اند.\nدر نتیجه حالت نوشتن تصویر DD اعمال خواهد شد." t MSG_322 "باز کردن یا خواندن %s ممکن نیست" +t MSG_323 "اعمال کردن SkuSiPolicy.p7b در هنگام نصب کردن (نگاه کردن به KB5042562)" +t MSG_324 "بهبود های QoL (Don't force Copilot, OneDrive, Outlook, Fast Startup, etc.)" t MSG_325 "اعمال سفارشی سازی ویندوز: %s" t MSG_326 "اعمال گزینه های کاربر..." t MSG_327 "تجربه کاربری ویندوز" @@ -10219,7 +10867,7 @@ t MSG_333 "یک حساب کاربری محلی با نام کاربری ایجا t MSG_334 "گزینه های منطقه ای را روی همان مقادیر این کاربر تنظیم کنید" t MSG_335 "رمزگذاری خودکار دستگاه BitLocker را غیرفعال کنید" t MSG_336 "لیست مداوم" -t MSG_337 "فایل دیگری ('diskcopy.dll:) نیاز است دانلود شود از مایکروسافت برای نصب MS-DOS:\n- انتخاب :'بله' برای وصل شدن به اینترنت و دانلود آن\n- انتخاب 'نه' برای کنسل کردن این کار\n\nنکته: فایل در مکان نرم افزار دانلود میشود و دوباره استفاده میشود درصورت انجام مجدد این کار." +t MSG_337 "برای استفاده از این ویژگی، باید یک فایل اضافی ('%s') از مایکروسافت دانلود شود:\n- انتخاب :'بله' برای وصل شدن به اینترنت و دانلود آن\n- انتخاب 'نه' برای کنسل کردن این کار\n\nنکته: فایل در مکان نرم افزار دانلود میشود و درصورت نیاز دوباره استفاده خواهد شد." t MSG_338 "بوت لودر UEFI کنسل شده شناسایی شد" t MSG_339 "Rufus متوجه شده که فایل ISO که انتخاب کردید دارای UEFI بوت لودری است که لفو شده و باعث %s, درصورتی که بوت امن فعال شده بر روی سیستم کاملا اپدیت شده UEFI\v\v- اگه شما این فایل ISO رو از یک جای غیر قابل اعتماد دریافت کردید ممکن است این فایل دارای ویروس UEFI باشد و نباید آنرا بوت کرد \n\v- اگه شما شما از جای مورد اغفماد دریافت کردیدش, میتونید تلاش کنید برای پیدا کردن نسخه جدیدتر, با اینکار دیگر این هشتار را دریافت نمیکنید." t MSG_340 "یک صفحه \"مشکلی امنیتی\"" @@ -10231,6 +10879,30 @@ t MSG_346 "مجبور کردن ویندوز به S-Mode ( دارای مشکلا t MSG_347 "بخش حرفه ای" t MSG_348 "استراج کردن فایل های آرشیو: %s" t MSG_349 "استفاده از Rufus MBR" +t MSG_350 "استفاده از بوتلودر امضا شده 'Windows CA 2023' (نیازمند به یک کامپیوتر سازگار است)" +t MSG_351 "درحال بررسی برای بوتلودر UEFI باطل." +t MSG_352 "درحال بررسی بروزرسانی برای UEFI DBX..." +t MSG_353 "آپدیت DBX موجود است" +t MSG_354 "Rufus یک نسخه بروزرسانی شده از فایل های DBX که در ابطال بررسی های UEFI Secure Boot استفاده میشوند پیدا کرده است, آیا میخواهید این بروزرسانی را بارگیری کنید؟ \n- انتخاب 'بله' برای وصل شدن به اینترنت و دانلود آن\n- انتخاب 'نه' برای کنسل این عملیات\n\nنکته: فایل در مکان نرم افزار دانلود میشود و درصورت نیاز دوباره استفاده خواهد شد." +t MSG_355 "⚠مخفیانه⚠ دیسک را پاک کن و نصب کن:" +t MSG_356 "شما انتخاب کرده‌اید که از گزینه نصب ویندوز «مخفیانه» استفاده کنید.\n\nاین یک گزینه پیشرفته است که برای افرادی در نظر گرفته شده است که می‌خواهند مدیا ایجاد کنند که در حین نصب ویندوز به کاربر اطلاع ندهد و بنابراین بدون قید و شرط اولین دیسک شناسایی شده روی سیستم هدف را پاک کند. اگر مراقب نباشید، استفاده از این گزینه می‌تواند منجر به از دست رفتن غیرقابل برگشت داده‌ ها شود!\n\nاگر این چیزی نیست که می‌خواهید، لطفاً برای بازگشت و برداشتن تیک گزینه، «خیر» را انتخاب کنید.\n\nبرای ادامه، باید تمام موارد زیر را بخوانید و بپذیرید:" +t MSG_358 "محل پشتیبانی نشده ایمیج (Image)" +t MSG_359 "شما نمیتوانید از این ایمیج که در درایو موردنظر است استفاده کنید. زیرا این درایو قرار است کاملا پاک شود, مثل این میماند که میخواهید شاخه درختی که بر روی آن نشسته اید را ببرید! \n\nلطفا ایمیج را به یه محل دیگه منتقل کنید و دوباره تلاش کنید." +t MSG_360 "روشن گزاشتن این گزینه امن است زیرا حتی اگر TPM و یا RAM بیشتر داشته باشید, زیرا که این گزینه فقط باعث دور زدن الزامات نصب میباشد و باعث جلوگیری ویندوز از استفاده نکردن از تمامی سخت افزار موجود نمیشود." +t MSG_361 "برای اینکه این گزینه کار کند, باید اینترنت/شبکه در هنگام نصب قطع باشد!" +t MSG_362 "بصورت خودکار به سوالات ارسال داده به مایکروسافت 'نه' بگو, بجای اینکه از کاربر درخواست کنی." +t MSG_363 "شما باید این گزینه را فعال بگزارید, مگراینکه میخواهید 'Windows To Go' به دیسک داخلی دسترسی داشته باشد و بصورت مخفیانه بروزرسانی غیرقابل برگشت در File System انجام دهد." +t MSG_364 "به طور خودکار یک حساب محلی با نام کاربری مشخص شده ایجاد می‌کند، با استفاده از یک رمز عبور خالی که باید در ورود بعدی تغییر کند." +t MSG_365 "تنظیمات منطقه ای را از همین کامپیوتر (کیبورد, وقت منطقه ای, واحد پول), بجای اینکه از کاربر پرسیده شود." +t MSG_366 "هارد سیستم را رمزگزاری نکن, مگر اینکه کاربر صریحاً درخواست کرده باشد." +t MSG_367 "از این گزینه فقط در صورتی که میدانید S-Mode چیست و میدانید که ممکن است سیستم شما در حالت S-Mode قفل شود حتی بعد از اینکه شما کاملا ویندوز را پاک و دوباره نصب کردید استفاده کنید." +t MSG_368 "از این گزینه درصورتی استفاده کنید که سیستمی که میخواهید بر روی آن ویندوز نصب کنید از آخرین گواهینامه های Secure Boot دارا است, درصورت نیاز, میتواند با استفاده از 'Mosby' سیستم خود را بروزرسانی کنید." +t MSG_369 "از این گزینه فقط درصورتی که میخواهید بوتلودر های ناامن ویندوز را لغو کنید, اما با پتانسیل جلوگیری از بوت شدن ویندوز مدیا استاندارد." +t MSG_370 "\"Quality of Life\"" +t MSG_371 "اگر میخواهید از این گزینه استفاده کنید, لطفا تمامی دیسک ها از کامپیوتر موردنظر قطع کنید, بجز آنکه میخواهید ویندوز را در آن نصب کنید, و همچنین فلش را به کامپیوتری که نمی‌خواهید اطلاعاتش پاک شود، متصل نگذارید." +t MSG_372 "اطمینان می‌کنم که همه دیسک‌ها، جز دیسک مقصد Windows، قطع شده باشند." +t MSG_373 "اطمینان حاصل می‌کنم که این رسانه را به کامپیوتری که قصد پاک کردن آن را ندارم، متصل نگذارم." +t MSG_374 "می‌پذیرم که هرگونه از دست رفتن داده‌ها ناشی از استفاده از این گزینه، کاملاً بر عهده من است." t MSG_900 "Rufus ابزاری است که به فرمت و ایجاد درایوهای فلش USB قابل بوت، مانند کلیدهای USB/pendrives، مموری استیک ها و غیره به شما کمک می کند." t MSG_901 "سایت رسمی: %s" t MSG_902 "منبع کد: %s" @@ -10253,7 +10925,7 @@ t MSG_922 "ISO های پوسته UEFI را دانلود کنید" ######################################################################### l "pl-PL" "Polish (Polski)" 0x0415 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -10438,7 +11110,7 @@ t MSG_129 "Właśnie utworzyłeś nośnik, który używa bootloadera UEFI:NTFS. t MSG_130 "Wybór obrazu Windows" t MSG_131 "To ISO zawiera wiele obrazów Windows.\nWybierz obraz, którego chcesz użyć dla tej instalacji:" t MSG_132 "Inny program lub proces używa tego dysku. Czy chcesz go sformatować mimo to?" -t MSG_133 "Rufus wykrył, że próbujesz utworzyć nośnik \"Windows To Go\" bazujący na ISO 1809.\n\nZ powodu *BŁĘDU MICROSOFTU*, ten nośnik ulegnie awarii podczas rozruchu systemu (Blue Screen of Death), chyba że ręcznie zastąpisz plik \"WppRecorder.sys\" wersją z 1803.\n\nNależy również pamiętać, że powodem, dla którego Rufus nie może automatycznie rozwiązać tego problemu, jest to, że \"WppRecorder.sys” jest plikiem chronionym prawem autorskim firmy Microsoft, więc nie możemy zgodnie z prawem osadzić kopii pliku w aplikacji." +t MSG_133 "Rufus wykrył, że próbujesz utworzyć nośnik „Windows To Go” na podstawie obrazu ISO systemu Windows 10 w wersji 1809.\n\nZ powodu BŁĘDU PO STRONIE MICROSOFTU taki nośnik spowoduje awarię systemu podczas uruchamiania Windows (Blue Screen), chyba że ręcznie zastąpisz plik „WppRecorder.sys” jego wersją z wydania 1803.\n\nZauważ również, że powodem, dla którego Rufus nie może automatycznie naprawić tego problemu, jest fakt, iż plik „WppRecorder.sys” jest objęty prawami autorskimi firmy Microsoft, więc nie możemy legalnie dołączyć jego kopii do aplikacji." t MSG_134 "Ponieważ MBR został wybrany jako schemat partycji, Rufus może utworzyć partycję o rozmiarze do 2 TB na tym nośniku, co spowoduje, że %s miejsca na dysku będzie niedostępne.\n\nJesteś pewien, że chcesz kontynuować?" t MSG_135 "Wersja" t MSG_136 "Wydanie" @@ -10625,6 +11297,8 @@ t MSG_319 "Zignoruj znacznik 'boot'" t MSG_320 "Odświeżanie układu partycji (%s)..." t MSG_321 "Obraz, który został wybrany jest Hybrydą ISO i nie jest zgodny z trybem kopiowania ISO.\nWynikiem tego będzie przymusowe zapisywanie w trybie DD." t MSG_322 "Nie można otworzyć '%s'" +t MSG_323 "Zastosuj SkuSiPolicy.p7b przy instalacji (Patrz KB5042562)" +t MSG_324 "Usprawnienia „QoL” (Nie wymuszaj Copilot, OneDrive, Outlook, Szybki Startup, itp.)" t MSG_325 "Zastosuj niestandardowe ustawienia Windows: %s" t MSG_326 "Aplikowanie ustawień użytkownika..." t MSG_328 "Niestandardowe ustawienia Windows?" @@ -10636,7 +11310,7 @@ t MSG_333 "Stwórz konto lokalne o nazwie użytkownika:" t MSG_334 "Ustaw taką samą lokalizację i wartości jak obecny użytkownik" t MSG_335 "Dezaktywuj automatyczne szyfrowanie BitLocker" t MSG_336 "Stały dziennik (log)" -t MSG_337 "Dodatkowy plik (\"diskcopy.dll\") musi zostać pobrany od Microsoft, żeby zainstalować MS-DOS:\n- Wybierz opcję \"Tak\", aby pobrać pliku z internetu\n- Wybierz opcję \"Nie\", aby anulować operację\n\nUwaga: Plik zostanie pobrany do folderu aplikacji i będzie użyty ponownie, gdy będzie dostępny." +t MSG_337 "Aby skorzystać z tej funkcji, należy pobrać z firmy Microsoft dodatkowy plik ('%s'):\n– Wybierz „Tak”, aby połączyć się z Internetem i pobrać ten plik\n– Wybierz „Nie”, aby anulować operację\n\nUwaga: Plik zostanie pobrany do katalogu aplikacji i będzie automatycznie ponownie wykorzystywany, jeśli będzie już obecny." t MSG_338 "Wykryto unieważniony bootloader UEFI" t MSG_339 "Rufus wykrył, że wybrany plik ISO zawiera bootloader UEFI, który został unieważniony, i który wygeneruje %s. gdy włączony zostanie \"Secure Boot\" w pełni zaktualizowanym systemie UEFI.\n\n- Jeśli uzyskałeś ten obraz ISO z niezaufanego źródła, powinieneś rozważyć możliwość, że może on zawierać złośliwe oprogramowanie dla UEFI i unikać jego uruchamiania.\n- Jeśli uzyskałeś go z zaufanego źródła, powinieneś spróbować znaleźć nowszą wersję, która nie wygeneruje tego ostrzeżenia." t MSG_340 "ekran \"Naruszenie Bezpieczeństwa\"" @@ -10649,6 +11323,30 @@ t MSG_346 "Ogranicz system Windows do trybu S (NIEZGODNY z obejściem konta onli t MSG_347 "Tryb eksperta" t MSG_348 "Wypakowywanie plików z archiwum: %s" t MSG_349 "Użyj Rufus MBR" +t MSG_350 "Użyj programów rozruchowych (bootloaderów) podpisanych przez „Windows CA 2023” (wymaga kompatybilnego komputera docelowego)" +t MSG_351 "Sprawdzanie unieważnienia programu rozruchowego UEFI…" +t MSG_352 "Sprawdzanie aktualizacji bazy UEFI DBX…" +t MSG_353 "Dostępna aktualizacja DBX" +t MSG_354 "Rufus wykrył zaktualizowaną wersję plików DBX używanych do sprawdzania unieważnień w UEFI Secure Boot. Czy chcesz pobrać tę aktualizację?\n– Wybierz „Tak”, aby połączyć się z Internetem i pobrać tę zawartość\n– Wybierz „Nie”, aby anulować operację\n\nUwaga: Pliki zostaną pobrane do katalogu aplikacji i będą automatycznie ponownie wykorzystywane, jeśli już tam się znajdują." +t MSG_355 "⚠AUTOMATYCZNIE I BEZ POTWIERDZENIA⚠ wymaż dysk i zainstaluj:" +t MSG_356 "Wybrałeś opcję „cichej” instalacji systemu Windows.\n\nJest to opcja zaawansowana, przeznaczona dla osób, które chcą utworzyć nośnik instalacyjny niewyświetlający żadnych monitów podczas instalacji systemu Windows, a co za tym idzie BEZWARUNKOWO WYMAZUJĄCY pierwszy wykryty dysk w systemie docelowym. Jeśli nie zachowasz ostrożności, użycie tej opcji może doprowadzić do NIEODWRACALNEJ UTRATY DANYCH!\n\nAby kontynuować, MUSISZ przeczytać i zaakceptować wszystkie poniższe stwierdzenia:" +t MSG_358 "Nieobsługiwana lokacja obrazu" +t MSG_359 "Nie możesz użyć obrazu, który znajduje się na dysku docelowym, ponieważ ten dysk zostanie całkowicie wymazany. To dokładnie to samo, co próba piłowania gałęzi, na której się siedzi!\n\nPrzenieś obraz w inne miejsce i spróbuj ponownie." +t MSG_360 "Można bezpiecznie pozostawić tę opcję włączoną, nawet jeśli posiadasz moduł TPM lub większą ilość pamięci RAM, ponieważ opcja ta jedynie omija wymagania instalatora i w rzeczywistości nie uniemożliwia systemowi Windows korzystania z całego dostępnego sprzętu." +t MSG_361 "Aby ta opcja działała poprawnie, podczas instalacji połączenie sieciowe / internetowe MUSI być odłączone!" +t MSG_362 "Automatycznie odpowiadaj „nie” na pytania instalatora systemu Windows dotyczące udostępniania danych firmie Microsoft, zamiast wyświetlać je użytkownikowi." +t MSG_363 "Należy pozostawić tę opcję włączoną, chyba że akceptujesz sytuację, w której „Windows To Go” uzyskuje dostęp do wewnętrznych dysków i po cichu przeprowadza nieodwracalne aktualizacje systemu plików." +t MSG_364 "Automatycznie utwórz konto lokalne o podanej nazwie użytkownika, używając pustego hasła, które będzie musiało zostać zmienione przy następnym logowaniu." +t MSG_365 "Automatycznie skopiuj ustawienia regionalne z tego komputera (klawiatura, strefa czasowa, waluta), zamiast pytać użytkownika." +t MSG_366 "Nie szyfruj dysku systemowego, chyba że użytkownik wyraźnie tego zażąda." +t MSG_367 "Używaj tej opcji tylko wtedy, gdy wiesz, czym jest tryb S (S‑Mode), i rozumiesz, że system może pozostać zablokowany w trybie S nawet po całkowitym wymazaniu dysku i ponownej instalacji systemu Windows." +t MSG_368 "Użyj tej opcji, jeśli system, na którym planujesz zainstalować system Windows, korzysta z w pełni aktualnych certyfikatów Secure Boot. W razie potrzeby możesz skorzystać z narzędzia „Mosby”, aby zaktualizować swój system." +t MSG_369 "Użyj tej opcji, jeśli chcesz unieważnić dodatkowe, potencjalnie niebezpieczne programy rozruchowe systemu Windows, mając jednak świadomość, że może to również uniemożliwić uruchamianie standardowych nośników instalacyjnych Windows." +t MSG_370 "Usprawnienia jakości życia („Quality of Life”): wyłączenie większości niechcianych funkcji, które Microsoft próbuje narzucać użytkownikom końcowym." +t MSG_371 "Jeśli korzystasz z tej opcji, upewnij się, że odłączyłeś wszystkie dyski od komputera docelowego z wyjątkiem tego, na którym chcesz zainstalować system Windows, oraz że nie pozostawiasz nośnika podłączonego do żadnego komputera, którego nie chcesz wymazać." +t MSG_372 "ZAPEWNIĘ, że wszystkie dyski oprócz dysku z Windows są odłączone." +t MSG_373 "ZAPEWNIĘ, że nie pozostawię tego nośnika podłączonego do komputera, którego nie planuję wymazać." +t MSG_374 "ZGADZAM SIĘ, że wszelka utrata danych wynikająca z użycia tej opcji obciąża wyłącznie mnie." t MSG_900 "Rufus to narzędzie, które pomaga formatować i tworzyć dyski rozruchowe flash USB, takie jak klucze USB, pendrive-y itp." t MSG_901 "Oficjalna strona: %s" t MSG_902 "Kod źródłowy: %s" @@ -10670,7 +11368,7 @@ t MSG_922 "Ściągnij obrazy ISO UEFI Shell" ######################################################################### l "pt-BR" "Portuguese Brazilian (Português do Brasil)" 0x0416 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -10853,7 +11551,7 @@ t MSG_129 "Você acabou de criar uma mídia que usa o carregador de inicializaç t MSG_130 "Seleção de imagem do Windows" t MSG_131 "Este ISO contém várias imagens do Windows.\nPor favor, selecione a imagem que você deseja usar para esta instalação:" t MSG_132 "Outro programa ou processo está acessando esta unidade. Você quer formatá-lo mesmo assim?" -t MSG_133 "Rufus detectou que você está tentando criar uma mídia do Windows To Go com base em uma ISO 1809.\nDevido a um *MICROSOFT BUG*, esta mídia irá travar durante a inicialização do Windows (Tela Azul da Morte), a menos que você substitua manualmente o arquivo 'WppRecorder.sys' por uma versão 1803.\nObserve também que a razão pela qual o Rufus não pode corrigir isso automaticamente para você é que 'WppRecorder.sys' é um arquivo protegido por direitos autorais da Microsoft, portanto, não podemos incorporar legalmente uma cópia do arquivo no aplicativo..." +t MSG_133 "Rufus detectou que você está tentando criar uma mídia do Windows To Go com base em uma ISO 1809.\n\nDevido a um *BUG DA MICROSOFT*, esta mídia irá travar durante a inicialização do Windows (Tela Azul da Morte), a menos que você substitua manualmente o arquivo 'WppRecorder.sys' por uma versão 1803.\n\nObserve também que a razão pela qual o Rufus não pode corrigir isso automaticamente para você é que 'WppRecorder.sys' é um arquivo protegido por direitos autorais da Microsoft, portanto, não podemos incorporar legalmente uma cópia do arquivo no aplicativo..." t MSG_134 "Como o MBR foi selecionado para o esquema de partição, o Rufus só pode criar uma partição de até 2 TB nessa mídia, o que deixará %s de espaço em disco indisponível.\n\nVocê tem certeza que quer continuar?" t MSG_135 "Versão" t MSG_136 "Lançamento" @@ -10894,7 +11592,7 @@ t MSG_172 "Assinatura do download inválida" t MSG_173 "Clique para selecionar..." t MSG_174 "Rufus - O Utilitário de Formatação USB Confiável" t MSG_175 "Versão %d.%d (Build %d)" -t MSG_176 "Tradutores:\\line• Tiago Rinaldi \\line• Chateaubriand Vieira Moura \\line• Maison da Silva \\line• Marcos Mello " +t MSG_176 "Tradutores:\\line• Tiago Rinaldi \\line• Chateaubriand Vieira Moura \\line• Maison da Silva \\line• Marcos Mello " t MSG_177 "Relate bugs ou solicite aprimoramentos em:" t MSG_178 "Direitos Autorais Adicionais:" t MSG_179 "Política de Atualização:" @@ -11040,6 +11738,8 @@ t MSG_319 "Ignorar marcador de inicialização" t MSG_320 "Atualizando o layout da partição (%s)..." t MSG_321 "A imagem que você selecionou é uma ISOHybrid, mas os criadores não a tornaram compatível com o modo de cópia ISO/Arquivo.\nComo resultado, o modo de gravação de imagem DD será aplicado." t MSG_322 "Impossível abrir ou ler '%s'" +t MSG_323 "Aplicar SkuSiPolicy.p7b na instalação (Ver KB5042562)" +t MSG_324 "Melhorias QoL (Não forçar Copilot, OneDrive, Outlook, Fast Startup, etc.)" t MSG_325 "Aplicando a personalização do Windows: %s" t MSG_326 "Aplicando opções do usuário..." t MSG_327 "Experiência do Usuário do Windows" @@ -11052,7 +11752,7 @@ t MSG_333 "Criar uma conta local com nome de usuário:" t MSG_334 "Definir as opções regionais com os mesmos valores deste usuário" t MSG_335 "Desativar a encriptação automática BitLocker" t MSG_336 "Registo persistente" -t MSG_337 "Um arquivo adicional ('diskcopy.dll') precisa ser baixado da Microsoft para instalar o MS-DOS:\n- Selecione 'Sim' para se conectar à Internet e baixá-lo\n- Selecione 'Não' para cancelar a operação\n\nNota: O arquivo será baixado no diretório da aplicação e será reutilizado automaticamente caso presente." +t MSG_337 "Um arquivo adicional ('%s') precisa ser baixado da Microsoft para usar este recurso:\n- Selecione 'Sim' para se conectar à Internet e baixá-lo\n- Selecione 'Não' para cancelar a operação\n\nNota: O arquivo será baixado no diretório da aplicação e será reutilizado automaticamente caso presente." t MSG_338 "Detectado carregador de inicialização UEFI revogado" t MSG_339 "Rufus detectou que o ISO selecionado contém um carregador de inicialização UEFI que foi revogado e produzirá %s quando Secure Boot estiver habilitado em um sistema UEFI atualizado.\n\n- Se você obteve essa imagem ISO de uma fonte não confiável, você deve considerar a possibilidade da mesma conter malware UEFI e evitar inicializar através dela.\n- Se você a obteve de uma fonte confiável, você deve tentar achar uma versão mais recente, que não produza este aviso." t MSG_340 "uma tela \"Security Violation\"" @@ -11065,6 +11765,30 @@ t MSG_346 "Restringir Windows ao modo S (INCOMPATÍVEL com remoção de exigênc t MSG_347 "Modo Especialista" t MSG_348 "Extraindo arquivos: %s" t MSG_349 "Usar MBR do Rufus" +t MSG_350 "Usar carregadores de inicialização assinados com 'Windows CA 2023' (Requer um PC de destino compatível)" +t MSG_351 "Verificando revogação de carregadores de inicialização UEFI..." +t MSG_352 "Verificando atualizações do UEFI DBX..." +t MSG_353 "Atualização do DBX disponível" +t MSG_354 "Rufus encontrou uma versão atualizada dos arquivos DBX usados para realizar verificações de revogação do UEFI Secure Boot. Você quer baixar esta atualização?\n- Selecione 'Sim' para se conectar à Internet e baixar este conteúdo\n- Selecione 'Não' para cancelar a operação\n\nNota: Os arquivos serão baixados no diretório da aplicação e serão reutilizados automaticamente caso presentes." +t MSG_355 "⚠SILENCIOSAMENTE⚠ apagar o disco e instalar:" +t MSG_356 "Você selecionou a opção de instalação \"silenciosa\" do Windows.\n\nEsta é uma opção avançada, reservada para quem pretende criar uma mídia que não questiona o usuário durante a instalação do Windows e que, portanto, INCONDICIONALMENTE APAGA o primeiro disco detectado no sistema de destino. Se você não for cuidadoso, usar esta opção pode resultar em PERDA IRREVERSÍVEL DE DADOS!\n\nVocê DEVE ler e aceitar todas as afirmações a seguir para continuar:" +t MSG_358 "Localização da imagem não suportada" +t MSG_359 "Você não pode usar uma imagem que está localizada na unidade de destino, já que a unidade será completamente apagada. É a mesma coisa que tentar serrar o galho em que você está sentado!\n\nPor favor mova a imagem para um local diferente e tente novamente." +t MSG_360 "É seguro deixar esta opção ativada mesmo que você tenha um TPM ou mais RAM, visto que esta opção apenas ignora os requisitos e não impede, de fato, que o Windows utilize todo o hardware disponível." +t MSG_361 "Para esta opção funcionar, a rede/Internet PRECISA ser desconectada durante a instalação!" +t MSG_362 "Responde automaticamente 'não' às perguntas da instalação do Windows relacionadas ao compartilhamento de dados com a Microsoft em vez de solicitar confirmação do usuário." +t MSG_363 "Você deve deixar esta opção ativada a menos que não se importe com o 'Windows To Go' acessando os discos internos e realizando silenciosamente atualizações irreversíveis no sistema de arquivos." +t MSG_364 "Cria automaticamente uma conta local com o nome de usuário especificado, usando uma senha em branco que deverá ser alterada no próximo logon." +t MSG_365 "Duplica as opções regionais deste PC (teclado, fuso horário, moeda), ao invés de pedir confirmação do usuário." +t MSG_366 "Não encripta o disco do sistema, a menos que explicitamente solicitado pelo usuário." +t MSG_367 "Use esta opção apenas se você souber o que é o modo S e compreender que seu sistema poderá ficar travado no modo S mesmo depois de apagar completamente e reinstalar o Windows." +t MSG_368 "Use esta opção se o sistema onde você pretende instalar o Windows está usando certificados atualizados do Secure Boot. Se necessário, você pode considerar usar o 'Mosby' para atualizar seu sistema." +t MSG_369 "Use esta opção se você quiser revogar carregadores de inicialização do Windows adicionais potencialmente inseguros, mas com o risco de também impedir que mídias padrão do Windows iniciem." +t MSG_370 "Melhorias \"Quality of Life\": Desativa a maioria dos recursos indesejados que a Microsoft está tentando forçar sobre os usuários." +t MSG_371 "Se você usar esta opção, por favor certifique-se de desconectar todos os discos do PC de destino, exceto aquele em que deseja instalar o Windows, bem como não deixar a mídia conectada em qualquer PC que você não queira apagar." +t MSG_372 "EU VOU garantir que todos os discos, exceto o de instalação do Windows, estejam desconectados." +t MSG_373 "EU VOU garantir que não deixarei esta mídia conectada a um PC que não pretendo apagar." +t MSG_374 "EU CONCORDO que qualquer perda de dados pelo uso desta opção é de minha total responsabilidade." t MSG_900 "Rufus é um utilitário que ajuda a formatar e a criar unidades flash USB inicializáveis, tais como pendrives USB, cartões de memória, etc." t MSG_901 "Site oficial: %s" t MSG_902 "Código fonte: %s" @@ -11087,7 +11811,7 @@ t MSG_922 "Baixar ISOs do Shell UEFI" ######################################################################### l "pt-PT" "Portuguese Standard (Português)" 0x0816 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -11095,12 +11819,12 @@ t IDD_ABOUTBOX "Acerca do Rufus" t IDC_ABOUT_LICENSE "Licença" g IDD_DIALOG -t IDS_DRIVE_PROPERTIES_TXT "Propriedades do dispositivo" -t IDS_DEVICE_TXT "Dispositivo/Disco" +t IDS_DRIVE_PROPERTIES_TXT "Propriedades da unidade" +t IDS_DEVICE_TXT "Dispositivo" t IDS_BOOT_SELECTION_TXT "Tipo de arranque" t IDC_SELECT "Selecionar" t IDS_IMAGE_OPTION_TXT "Opções da Imagem" -t IDS_PARTITION_TYPE_TXT "Esquema de partição" +t IDS_PARTITION_TYPE_TXT "Esquema de partições" t IDS_TARGET_SYSTEM_TXT "Sistema do destino" t IDC_LIST_USB_HDD "Mostrar unidades USB" t IDC_OLD_BIOS_FIXES "Opções de compatibilidade para BIOS antigas" @@ -11128,12 +11852,12 @@ t IDC_LOG_SAVE "Guardar" g IDD_NEW_VERSION t IDCANCEL "Fechar" -t IDD_NEW_VERSION "Procurar atualizações de Rufus" -t IDS_NEW_VERSION_AVAIL_TXT "Nova versão disponível. Por favor, descarregue a última versão!" -t IDC_WEBSITE "Clique aqui para aceder ao Site de Rufus" -t IDS_NEW_VERSION_NOTES_GRP "Notas relativas a esta versão" -t IDS_NEW_VERSION_DOWNLOAD_GRP "Transferir" -t IDC_DOWNLOAD "Transferir" +t IDD_NEW_VERSION "Procurar atualizações - Rufus" +t IDS_NEW_VERSION_AVAIL_TXT "Está disponível uma versão mais recente. Descarregue a última versão!" +t IDC_WEBSITE "Clicar aqui para aceder à página do Rufus" +t IDS_NEW_VERSION_NOTES_GRP "Notas de lançamento" +t IDS_NEW_VERSION_DOWNLOAD_GRP "Descarregar" +t IDC_DOWNLOAD "Descarregar" g IDD_NOTIFICATION t IDC_MORE_INFO "Mais informações" @@ -11142,16 +11866,16 @@ t IDNO "Não" g IDD_UPDATE_POLICY t IDCANCEL "Fechar" -t IDD_UPDATE_POLICY "Configuração e política das atualizações" -t IDS_UPDATE_SETTINGS_GRP "Configurações" +t IDD_UPDATE_POLICY "Definições e política das atualizações" +t IDS_UPDATE_SETTINGS_GRP "Definições" t IDS_UPDATE_FREQUENCY_TXT "Procurar atualizações" t IDS_INCLUDE_BETAS_TXT "Incluir versões de teste" t IDC_CHECK_NOW "Procurar" t MSG_001 "Foi detetada outra instância da aplicação" -t MSG_002 "Outra instância da aplicação Rufus está em execução.\nFeche a primeira intância da aplicação antes de iniciar outra." +t MSG_002 "Outra instância da aplicação Rufus está em execução.\nFeche a primeira instância da aplicação antes de iniciar outra." t MSG_003 "AVISO: TODOS OS DADOS EM %s SERÃO ELIMINADOS.\nPara continuar, prima OK. Para sair da operação, prima CANCELAR." -t MSG_004 "Atualização de Rufus" +t MSG_004 "Política de atualização do Rufus" t MSG_005 "Permitir que Rufus procure atualizações na Internet?" t MSG_006 "Fechar" t MSG_007 "Cancelar" @@ -11178,11 +11902,11 @@ t MSG_036 "Imagem ISO" t MSG_037 "Aplicação" t MSG_038 "Abortar" t MSG_039 "Iniciar" -t MSG_040 "Transferir" +t MSG_040 "Descarregar" t MSG_041 "Operação cancelada pelo utilizador" t MSG_042 "Erro" t MSG_043 "Erro: %s" -t MSG_044 "Transferência de ficheiro" +t MSG_044 "Descarga de ficheiro" t MSG_045 "Dispositivo de armazenamento USB (Genérico)" t MSG_046 "%s (Disco %d) [%s]" t MSG_047 "Várias partições" @@ -11220,29 +11944,29 @@ t MSG_078 "Impossível montar o volume GUID." t MSG_079 "O dispositivo não está pronto." t MSG_080 "Rufus detetou que o Windows ainda está a limpar o buffer interno no dispositivo USB.\n\nDependendo da velocidade do dispositivo USB, esta operação pode demorar muito tempo a terminar, especialmente para ficheiros grandes.\n\nRecomendamos que deixe o Windows terminar para evitar corrompimentos; No entanto, se não quiser esperar, pode simplesmente desligar o dispositivo..." t MSG_081 "Tipo de imagem não suportada" -t MSG_082 "Esta imagem não é inicializável ou então usa um método de arranque ou compressão não suportado." +t MSG_082 "Esta imagem não é de arranque ou utiliza um método de arranque ou compressão que não é suportado pelo Rufus..." t MSG_083 "Substituir %s?" -t MSG_084 "Esta imagem ISO usa uma versão obsoleta do ficheiro '%s'.\nIsto pode fazer com que o menu de arranque não seja exibido corretamente.\n\nO Rufus pode transferir uma versão mais recente para resolver este problema:\n- Selecione 'Sim' para ligar-se à Internet e transferir o ficheiro\n- Selecione 'Não' para deixar o ficheiro ISO tal como está\nSe não sabe o que fazer, é recomendado selecionar 'Sim'.\n\nNota: O novo ficheiro será transferido para a pasta atual, e se o ficheiro\n '%s' já existir, será substituído automaticamente." -t MSG_085 "A transferir %s" +t MSG_084 "Esta imagem ISO usa uma versão obsoleta do ficheiro '%s'.\nIsto pode fazer com que o menu de arranque não seja exibido corretamente.\n\nO Rufus pode descarregar uma versão mais recente para resolver este problema:\n- Selecione 'Sim' para ligar-se à Internet e descarregar o ficheiro\n- Selecione 'Não' para deixar o ficheiro ISO tal como está\nSe não sabe o que fazer, é recomendado selecionar 'Sim'.\n\nNota: O novo ficheiro será descarregado para a pasta atual, e se o ficheiro\n '%s' já existir, será substituído automaticamente." +t MSG_085 "A descarregar %s" t MSG_086 "Nenhuma imagem selecionada" t MSG_087 "para %s TIPO" t MSG_088 "Imagem demasiado grande" t MSG_089 "A imagem é demasiado grande para o destino selecionado." t MSG_090 "ISO não suportado" -t MSG_091 "Quando usa UEFI como tipo de destino, só são suportadas imagens ISO inicializáveis tipo EFI. Selecione uma imagem ISO inicializável do tipo EFI ou altere o tipo de destino para BIOS." +t MSG_091 "Ao utilizar o tipo de destino UEFI, apenas são suportadas imagens ISO de arranque por EFI. Selecione uma imagem ISO de arranque por EFI ou defina o tipo de destino para BIOS." t MSG_092 "Sistema de ficheiros não suportado" -t MSG_093 "IMPORTANTE: ESTA DRIVE CONTÉM VÁRIAS PARTIÇÕES!!\n\nIsto pode incluir partições/volumes que não estão listados ou invisíveis a partir do Windows. Caso queira prosseguir, é responsável por qualquer perda de dados nessas partições." +t MSG_093 "IMPORTANTE: ESTA UNIDADE CONTÉM VÁRIAS PARTIÇÕES!!\n\nIsto pode incluir partições/volumes que não estão listados ou invisíveis a partir do Windows. Caso queira prosseguir, é responsável por qualquer perda de dados nessas partições." t MSG_094 "Várias partições detetadas" t MSG_095 "Imagem DD" -t MSG_096 "O sistema de ficheiros selecionado não pode ser usado com este tipo de ISO. Por favor, selecione um sistema de ficheiros diferente ou use um ISO diferente." +t MSG_096 "O sistema de ficheiros selecionado não pode ser usado com este tipo de ISO. Selecione um sistema de ficheiros diferente ou use um ISO diferente." t MSG_097 "'%s' apenas pode ser aplicado se o sistema de ficheiros for NTFS." t MSG_098 "IMPORTANTE: Está a tentar instalar 'Windows To Go', mas a drive de destino não tem o atributos 'FIXO'. Por isso o Windows provalvelmente irá parar durante o arranque, uma vez que não está preparado para trabalhar em drives que tenham o atributo de 'AMOVÍVEL'.\n\nDeseja continuar mesmo assim?\n\nNota: O atributo 'FIXO/AMOVÍVEL' é uma propriedade do hardware que apenas pode se alterado através de ferramentas do fabricante da drive. No entanto, estas ferramentas na MAIORIA dos CASOS, NUNCA são fornecidas aos utilizadores..." t MSG_099 "Limitação de sistema de ficheiros" t MSG_100 "Esta imagem ISO contém um ficheiro com mais de 4 GB, que ultrapassa o tamanho máximo permitido para o sistema de ficheiros FAT ou FAT32." t MSG_101 "O suporte para ficheiro WIM não está disponível" -t MSG_102 "Não é possível extrair ficheiros comprimidos WIM. A extração WIM é necessária para criar dispositivos USB inicializável tipo EFI com Windows 7 e Windows Vista. Para corrigir, instale uma versão recente do 7-Zip.\nQuer visitar a página de transferências do 7-Zip?" -t MSG_103 "Pretende transferir %s?" -t MSG_104 "%s ou posterior requer que esteja instalado o ficheiro '%s'.\nDado que este ficheiro tem mais de 100 KB e está sempre presente nas \nimagens ISO %s, Rufus não o inclui na sua distribuição.\n\nO Rufus pode transferir o ficheiro em falta:\n- Selecione 'Sim' transferir o ficheiro\n- Selecione 'Não' se deseja mais tarde copiar manualmente este ficheiro para a unidade\n\nNota: O novo ficheiro será transferido para a pasta atual, e se o ficheiro\n '%s' já existir, será substituído automaticamente." +t MSG_102 "Não é possível extrair ficheiros comprimidos WIM. A extração WIM é necessária para criar dispositivos USB de arranque tipo EFI com Windows 7 e Windows Vista. Para corrigir, instale uma versão recente do 7-Zip.\nQuer visitar a página de transferências do 7-Zip?" +t MSG_103 "Descarregar %s?" +t MSG_104 "%s ou posterior requer que esteja instalado o ficheiro '%s'.\nDado que este ficheiro tem mais de 100 KB e está sempre presente nas \nimagens ISO %s, Rufus não o inclui na sua distribuição.\n\nO Rufus pode descarregar o ficheiro em falta:\n- Selecionar 'Sim' para descarregar o ficheiro\n- Selecionar 'Não' se pretende copiar manualmente este ficheiro para a unidade mais tarde\n\nNota: O novo ficheiro será descarregado para a pasta atual, e se o ficheiro\n '%s' já existir, será substituído automaticamente." t MSG_105 "Se cancelar agora pode deixar o dispositivo INUTILIZADO.\nSe pretende mesmo cancelar, selecione SIM. Caso contrário, selecione NÃO." t MSG_106 "Selecione a pasta" t MSG_107 "Todos os ficheiros" @@ -11252,9 +11976,9 @@ t MSG_110 "MS-DOS não arranca de um disco com um tamanho de cluster de 64 kilob t MSG_111 "Tamanho de cluster incompatível" t MSG_112 "Formatar um volume UDF de tamanho grande pode demorar muito tempo. À velocidade de USB 2.0, o tempo estimado de formatação é de %d:%02d, durante o qual a barra de progresso parecerá \"congelada\". Por favor, seja paciente!" t MSG_113 "Volume UDF de tamanho grande" -t MSG_114 "Esta imagem usa Syslinux %s%s mas a aplicação inclui apenas os ficheiros de instalação para Syslinux %s%s.\n\nComo as diferentes versões de Syslinux podem não ser compatíveis entre si e não é possível o Rufus incluir todas elas, dois ficheiros adicionais devem ser transferidos ('ldlinux.sys' e 'ldlinux.bss'):\n- Selecione 'Sim' para transferir os ficheiros\n- Selecione 'Não' para cancelar\n\nNota: Os ficheiros serão transferidos para a pasta atual da aplicação e serão usados automaticamente se presentes." -t MSG_115 "Transferência" -t MSG_116 "Esta imagem usa Grub %s mas a aplicação inclui apenas os ficheiros de instalação para Grub %s.\n\nAs diferentes versões de Grub podem não ser compatíveis entre si e não é possível incluir todas elas. Rufus irá tentar localizar para a versão de Grub o ficheiro de instalação ('core.img') que coincida com o da imagem:\n- Selecione 'Sim' para tentar transferir\n- Selecione 'Não' para usar a versão padrão do Rufus\n- Selecione 'Cancelar' para abortar a operação\n\nNota: O ficheiro será transferido para a pasta atual da aplicação e será usado automaticamente sempre que presente. Se não for possível encontrar online, a versão padrão será utilizada." +t MSG_114 "Esta imagem usa Syslinux %s%s mas a aplicação inclui apenas os ficheiros de instalação para Syslinux %s%s.\n\nComo as diferentes versões de Syslinux podem não ser compatíveis entre si e não é possível o Rufus incluir todas elas, dois ficheiros adicionais devem ser descarregados ('ldlinux.sys' e 'ldlinux.bss'):\n- Selecionar 'Sim' para descarregar os ficheiros\n- Selecionar 'Não' para cancelar\n\nNota: Os ficheiros serão descarregados para a pasta atual da aplicação e serão usados automaticamente se presentes." +t MSG_115 "Descarregar" +t MSG_116 "Esta imagem usa Grub %s mas a aplicação inclui apenas os ficheiros de instalação para Grub %s.\n\nAs diferentes versões de Grub podem não ser compatíveis entre si e não é possível incluir todas elas. Rufus irá tentar localizar para a versão de Grub o ficheiro de instalação ('core.img') que coincida com o da imagem:\n- Selecionar 'Sim' para tentar descarregar\n- Selecionar 'Não' para usar a versão padrão do Rufus\n- Selecionar 'Cancelar' para abortar a operação\n\nNota: O ficheiro será descarregado para a pasta atual da aplicação e será usado automaticamente sempre que presente. Se não for possível encontrar online, a versão padrão será utilizada." t MSG_117 "Instalação padrão do Windows" t MSG_119 "propriedades avançadas da unidade" t MSG_120 "opções avançadas de formatação" @@ -11270,7 +11994,7 @@ t MSG_129 "Acabou de criar um disco que usa o carregador de inicialização UEFI t MSG_130 "Seleção de imagem do Windows" t MSG_131 "Este ISO contém várias imagens do Windows.\nPor favor, selecione a imagem que pretende usar para esta instalação:" t MSG_132 "Outro programa ou processo está a aceder a esta unidade. Mesmo assim, pretende formatá-la?" -t MSG_133 "Rufus detetou que está a tentar criar um disco Windows To Go com base num ISO da versão 1809.\n\nDevido a um *BUG da MICROSOFT*, este disco irá bloquear durante a inicialização do Windows (Ecrã Azul da Morte), a menos que substitua manualmente o ficheiro 'WppRecorder.sys' por um da versão 1803.\n\nTenha em atenção também que a razão pela qual o Rufus não pode corrigir automaticamente é que 'WppRecorder.sys' é um ficheiro protegido por direitos de autor da Microsoft, portanto, não podemos incorporar legalmente uma cópia do ficheiro no Rufus..." +t MSG_133 "O Rufus detetou que está a tentar criar um disco Windows To Go com base num ISO da versão 1809.\n\nDevido a um *BUG da MICROSOFT*, este disco irá bloquear durante o arranque do Windows (Ecrã Azul da Morte), a menos que substitua manualmente o ficheiro 'WppRecorder.sys' por um da versão 1803.\n\nTenha em atenção também que a razão pela qual o Rufus não consegue corrigir isto automaticamente é que o 'WppRecorder.sys' é um ficheiro protegido por direitos de autor da Microsoft, portanto, não podemos incorporar legalmente uma cópia do ficheiro no Rufus..." t MSG_134 "Uma vez que foi selecionado o MBR para o esquema de partição, o Rufus só pode criar uma partição de até 2 TB neste disco, o que deixará %s de espaço em disco indisponível.\n\nTem a certeza de que pretende continuar?" t MSG_135 "Versão" t MSG_136 "Lançamento" @@ -11279,13 +12003,13 @@ t MSG_138 "Idioma" t MSG_139 "Arquitetura" t MSG_140 "Continuar" t MSG_141 "Voltar" -t MSG_142 "Por favor, aguarde..." -t MSG_143 "Transferir no browser" +t MSG_142 "Aguarde..." +t MSG_143 "Descarregar no navegador" t MSG_144 "A transferência de ISOs do Windows não está disponível porque a Microsoft alterou o seu site para evitá-la." t MSG_145 "É necessário o PowerShell 3.0 ou posterior para executar este script." -t MSG_146 "Pretende ligar e fazer a transferência?" -t MSG_148 "A executar script da transferência..." -t MSG_149 "Transferir imagem ISO" +t MSG_146 "Ir à Internet e fazer a descarga?" +t MSG_148 "A executar script da descarga..." +t MSG_149 "Descarregar imagem ISO" t MSG_150 "Tipo de computador com o qual pretende usar esta unidade inicializável. É da sua responsabilidade determinar se o computador é do tipo BIOS ou UEFI antes de começar a criar a unidade, pois pode falhar no arranque." t MSG_151 "'UEFI-CSM' significa que o dispositivo inicializará apenas no modo de emulação da BIOS (também conhecido como 'Legacy Mode') em UEFI e não no modo UEFI nativo." t MSG_152 "'não CSM' significa que o dispositivo inicializará apenas no modo UEFI nativo, e não no modo de emulação da BIOS (também conhecido como 'Legacy Mode')." @@ -11301,7 +12025,7 @@ t MSG_161 "Verificação de erros no dispositivo com o padrão de teste" t MSG_162 "Desmarque esta opção para usar o método de formatação \"lento\"" t MSG_163 "Método a usar para criar partições" t MSG_164 "Método a usar para tornar a unidade inicializável" -t MSG_165 "Clique para selecionar ou transferir uma imagem.." +t MSG_165 "Clique para selecionar ou descarregar uma imagem.." t MSG_166 "Selecione esta opção para permitir a exibição de caracteres acentuados e atribuir um ícone para a unidade (cria um ficheiro autorun.inf)" t MSG_167 "Instalar um carregador de arranque UEFI, que irá efetuar a validação do ficheiro MD5Sum do suporte de dados" t MSG_169 "Criar uma partição extra oculta e tentar alinhar limites das partições. Isto pode melhorar a deteção de USB inicializável para as BIOS antigas." @@ -11311,7 +12035,7 @@ t MSG_172 "Assinatura do ficheiro inválida" t MSG_173 "Clique para selecionar..." t MSG_174 "Rufus - O utilitário de confiança para formatação USB" t MSG_175 "Versão %d.%d (Build %d)" -t MSG_176 "Tradução para Português Europeu: Dinis Medeiros, Fernando Baptista" +t MSG_176 "Tradução para Português Europeu: Dinis Medeiros, Fernando Baptista, Hugo Carvalho" t MSG_177 "Para reportar erros ou sugerir melhorias, visite:" t MSG_178 "Direitos de autor adicionais:" t MSG_179 "Politica de atualização:" @@ -11328,14 +12052,14 @@ t MSG_189 "Esta imagem ISO não é compatível com o sistema de ficheiros seleci t MSG_190 "Detetada unidade incompatível" t MSG_191 "Escrita" t MSG_192 "Leitura" -t MSG_193 "Transferido %s" -t MSG_194 "Não é possível transferir %s" +t MSG_193 "Descarregado %s" +t MSG_194 "Não é possível descarregar %s" t MSG_195 "A usar a versão incorporada do(s) ficheiro(s) %s" t MSG_196 "IMPORTANTE: ESTA DRIVE USA UM TAMANHO DE SECTOR NÃO CONVENCIONAL!\n\nAs drives convencionais usam o tamanho de sector de 512-byte mas esta drive usa %d-byte. Em muitos casos, isto implica que NÃO será possível fazer arranque com esta drive.\nRufus pode tentar criar uma drive inicializável, mas SEM GARANTIA que funcione." t MSG_197 "Detetado tamanho de sector não standard" t MSG_198 "'Windows To Go' apenas pode ser instalado numa drive com partição GPT se o atributo FIXO estiver selecionado. A drive atual não foi detetada como FIXO." t MSG_199 "Esta funcionalidade não está disponível nesta plataforma." -t MSG_201 "A cancelar - por favor aguarde..." +t MSG_201 "A cancelar - aguarde..." t MSG_202 "A analisar a imagem..." t MSG_203 "Ocorreu um erro ao analisar a imagem" t MSG_204 "Foi detetado um ficheiro %s obsoleto" @@ -11346,7 +12070,7 @@ t MSG_208 "%d dispositivo encontrado" t MSG_209 "%d dispositivos encontrados" t MSG_210 "PRONTO" t MSG_211 "Operação cancelada" -t MSG_212 "A operação FALHOU" +t MSG_212 "Falha" t MSG_213 "A iniciar a nova aplicação..." t MSG_214 "Erro ao iniciar a nova aplicação" t MSG_215 "%s aberto" @@ -11374,12 +12098,12 @@ t MSG_236 "Blocos com erro: A verificar com padrão aleatório" t MSG_237 "Blocos com erro: A verificar com padrão 0x%02X" t MSG_238 "A criar partições (%s)..." t MSG_239 "A apagar partições (%s)..." -t MSG_240 "A assinatura da atualização transferida não foi validada. Isto pode significar que o seu sistema está configurado incorretamente para validação de assinaturas ou indicar uma transferência maliciosa.\n\nO ficheiro transferido será eliminado. Por favor, verifique o registo para mais detalhes." -t MSG_241 "A transferir: %s" -t MSG_242 "Erro ao transferir o ficheiro." +t MSG_240 "Não é possível validar a assinatura da atualização descarregada. Isto pode significar que o seu sistema não está configurado corretamente para a validação de assinaturas ou indicar que se trata de um ficheiro malicioso.\n\nO ficheiro descarregado será eliminado. Consulte o registo para obter mais detalhes." +t MSG_241 "A descarregar: %s" +t MSG_242 "Erro ao descarregar o ficheiro." t MSG_243 "Procurar atualizações de Rufus..." -t MSG_244 "Atualizações: Não é possível ligar à Internet" -t MSG_245 "Atualizações: Impossível aceder aos dados da versão" +t MSG_244 "Atualizações: Não foi possível ligar à Internet" +t MSG_245 "Atualizações: Não foi possível aceder aos dados da versão" t MSG_246 "Está disponível uma nova versão de Rufus!" t MSG_247 "Não foi encontrada uma nova versão de Rufus" t MSG_248 "Foram apagadas as chaves de registo da aplicação" @@ -11418,8 +12142,8 @@ t MSG_280 "Disco ou imagem ISO" t MSG_281 "%s (selecionar)" t MSG_282 "Bloqueio exclusivo do dispositivo USB" t MSG_283 "Assinatura inválida" -t MSG_284 "Está em falta uma assinatura digital no executável transferido." -t MSG_285 "O executável transferido está assinado por '%s'.\nNão é uma assinatura reconhecida e poderá indiciar algum tipo de atividade mal intencionada...\nTem a certeza de que pretende executar este ficheiro?" +t MSG_284 "Está em falta uma assinatura digital no executável descarregado." +t MSG_285 "O executável descarregado está assinado por '%s'.\nNão é uma assinatura reconhecida e poderá indiciar algum tipo de atividade mal intencionada...\nTem a certeza de que pretende executar este ficheiro?" t MSG_286 "A limpar disco: %s" t MSG_287 "Detecção de unidades removíveis não-USB" t MSG_288 "Sem privilégios de administrador" @@ -11432,10 +12156,10 @@ t MSG_294 "Esta versão do Windows já não é suportada por Rufus.\nA última v t MSG_295 "Aviso: versão não oficial" t MSG_296 "Esta versão de Rufus NÃO foi desenvolvida pelo autor oficial.\n\nTem a certeza de que pretende executar?" t MSG_297 "Detetado ISO truncado" -t MSG_298 "O ficheiro ISO selecionado não corresponde ao tamanho declarado: faltam %s de dados!\n\nSe obteve este ficheiro da Internet, deve tentar transferir uma nova cópia e verificar se os checksums MD5 ou SHA correspondem aos oficiais.\n\nPara calcular o MD5 ou SHA com Rufus, clique no botão (✓)." +t MSG_298 "O ficheiro ISO selecionado não corresponde ao tamanho declarado: faltam %s de dados!\n\nSe obteve este ficheiro da Internet, deve tentar descarregar uma nova cópia e verificar se os checksums MD5 ou SHA correspondem aos oficiais.\n\nPara calcular o MD5 ou SHA com Rufus, clique no botão (✓)." t MSG_299 "Erro de validação da data/hora" -t MSG_300 "Não foi possível ao Rufus confirmar que a data e hora da atualização transferida é mais recente que a do executável atual.\n\nPara evitar possíveis cenários de ataque informático, o processo de atualização foi cancelado e o ficheiro transferido será apagado. Para mais detalhes, verifique o registo." -t MSG_301 "Mostrar configurações da aplicação" +t MSG_300 "Não foi possível ao Rufus confirmar que a data e hora da atualização descarregada é mais recente que a do executável atual.\n\nPara evitar possíveis cenários de ataque informático, o processo de atualização foi cancelado e o ficheiro descarregado será apagado. Para mais detalhes, verifique o registo." +t MSG_301 "Mostrar definições da aplicação" t MSG_302 "Mostrar informações acerca da aplicação" t MSG_303 "Mostrar registo de eventos" t MSG_304 "Criar imagem do disco do dispositivo selecionado" @@ -11457,6 +12181,8 @@ t MSG_319 "Ignorar marcador de arranque" t MSG_320 "A atualizar a estrutura da partição (%s)..." t MSG_321 "A imagem que selecionou é ISOHybrid mas os criadores não a tornaram compatível com o modo de cópia ISO/Ficheiro.\nComo resultado, será aplicado o modo de gravação da imagem DD." t MSG_322 "Não foi possível abrir ou ler '%s'" +t MSG_323 "Aplicar o ficheiro SkuSiPolicy.p7b na instalação (ver KB5042562)" +t MSG_324 "Melhorias na QoL (não forçar o Copilot, o OneDrive, o Outlook, o Arranque Rápido, etc.)" t MSG_325 "A aplicar personalização do Windows: %s" t MSG_326 "A aplicar as opções do utilizador..." t MSG_327 "Experiência do Utilizador Windows" @@ -11469,7 +12195,7 @@ t MSG_333 "Criar uma conta local com o nome de utilizador:" t MSG_334 "Definir as opções regionais com os mesmos valores deste utilizador" t MSG_335 "Desativar a encriptação automática BitLocker" t MSG_336 "Registo permanente (log)" -t MSG_337 "Um ficheiro adicional ('diskcopy.dll') deve ser transferido da Microsoft para instalar o MS-DOS:\n- Selecione 'Sim' para se ligar à Internet e descarregá-lo\n- Selecione 'Não' para cancelar a operação\n\nNota: O ficheiro será transferido para a pasta da aplicação e será reutilizado automaticamente se estiver presente." +t MSG_337 "Um ficheiro adicional ('%s') deve ser descarregado da Microsoft para utilizar esta funcionalidade:\n- Selecionar 'Sim' para se ligar à Internet e descarregá-lo\n- Selecionar 'Não' para cancelar a operação\n\nNota: O ficheiro será descarregado para a pasta da aplicação e será reutilizado automaticamente se estiver presente." t MSG_338 "Detetado carregador de arranque UEFI revogado" t MSG_339 "O Rufus detetou que a ISO que selecionou contém um carregador de arranque UEFI que foi revogado e que produzirá %s, quando o Arranque Seguro está ativado num sistema UEFI totalmente atualizado.\n\n- Se obteve esta imagem ISO de uma fonte não segura, deve considerar a possibilidade de que a mesma possa conter malware UEFI e evitar arrancar a partir dela.\n- Se a obteve de uma fonte segura, deve tentar localizar uma versão mais atualizada, que não produza este aviso." t MSG_340 "um ecrã de \"Violação de Segurança\"" @@ -11477,18 +12203,42 @@ t MSG_341 "um ecrã de recuperação do Windows (BSOD) com '%s'" t MSG_342 "Imagem VHDX comprimida" t MSG_343 "Imagem VHD não comprimida" t MSG_344 "Imagem de atualização completa" -t MSG_345 "É necessário transferir alguns dados adicionais da Microsoft para usar esta funcionalidade:\n- Selecione 'Sim' para se ligar à Internet e descarregá-los\n- Selecione 'Não' para cancelar a operação" +t MSG_345 "É necessário descarregar alguns dados adicionais da Microsoft para usar esta funcionalidade:\n- Selecionar 'Sim' para se ligar à Internet e descarregá-los\n- Selecionar 'Não' para cancelar a operação" t MSG_346 "Restringir o Windows ao modo S (INCOMPATÍVEL com o ignorar da conta online)" t MSG_347 "Modo avançado" t MSG_348 "A extrair ficheiros de arquivo: %s" t MSG_349 "Usar o MBR do Rufus" -t MSG_900 "Rufus é um utilitário que ajuda a formatar e a criar unidades USB inicializáveis, tais como dispositivos USB/pendrives, cartões de memória, etc." -t MSG_901 "Site oficial: %s" +t MSG_350 "Utilizar carregadores de arranque assinados pelo 'Windows CA 2023' (requer um PC de destino compatível)" +t MSG_351 "A verificar se o carregador de arranque UEFI foi revogado..." +t MSG_352 "A verificar se existem atualizações do UEFI DBX..." +t MSG_353 "Atualização do DBX disponível" +t MSG_354 "O Rufus encontrou uma versão atualizada dos ficheiros DBX utilizados para realizar verificações de revogação do Arranque Seguro UEFI. Pretende descarregar esta atualização?\n- Selecionar 'Sim' para se ligar à Internet e descarregar este conteúdo\n- Selecionar 'Não' para cancelar a operação\n\nNota: Os ficheiros serão descarregados para o diretório da aplicação e serão reutilizados automaticamente, caso já existam." +t MSG_355 "⚠SILENCIOSAMENTE⚠ apagar o disco e instalar:" +t MSG_356 "Selecionou a opção de instalação \"silenciosa\" do Windows.\n\nEsta é uma opção avançada, reservada a quem pretende criar um suporte que não apresente mensagens ao utilizador durante a instalação do Windows e que, por conseguinte, APAGA INCONDICIONALMENTE o primeiro disco detetado no sistema de destino. Se não tiver cuidado, a utilização desta opção pode resultar em PERDA IRREVERSÍVEL DE DADOS!\n\nTem de ler e aceitar todas as afirmações seguintes para continuar:" +t MSG_358 "Localização da imagem não suportada" +t MSG_359 "Não pode utilizar uma imagem que se encontre na unidade de destino, uma vez que essa unidade vai ser completamente apagada. É o mesmo que tentar serrar o ramo em que está sentado!\n\nMova a imagem para um local diferente e tente novamente." +t MSG_360 "É seguro manter esta opção ativada, mesmo que tenha um TPM ou mais memória RAM, uma vez que esta opção apenas ignora os requisitos de configuração e não impede, de facto, que o Windows utilize todo o hardware disponível." +t MSG_361 "Para que esta opção funcione, a ligação à rede/Internet TEM de ser desligada durante a instalação!" +t MSG_362 "Responda automaticamente 'não' às perguntas da instalação do Windows relacionadas com a partilha de dados com a Microsoft, em vez de solicitar a confirmação do utilizador." +t MSG_363 "Deve manter esta opção ativada, a menos que não se importe que o \"Windows To Go\" aceda aos discos internos e realize atualizações irreversíveis do sistema de ficheiros sem aviso prévio." +t MSG_364 "Criar automaticamente uma conta local com o nome de utilizador especificado, utilizando uma palavra-passe em branco que terá de ser alterada no próximo início de sessão." +t MSG_365 "Copiar as definições regionais deste computador (teclado, fuso horário, moeda), em vez de solicitar a confirmação do utilizador." +t MSG_366 "Não encriptar o disco do sistema, a menos que o utilizador o solicite explicitamente." +t MSG_367 "Utilizar esta opção apenas se souber o que é o Modo S e compreender que o seu sistema poderá ficar bloqueado no Modo S, mesmo após apagar completamente e reinstalar o Windows." +t MSG_368 "Utilizar esta opção se o sistema no qual pretende instalar o Windows estiver a utilizar certificados de Arranque Seguro totalmente atualizados. Se necessário, pode considerar a utilização do 'Mosby' para atualizar o seu sistema." +t MSG_369 "Utilizar esta opção se pretender revogar carregadores de arranque do Windows adicionais que possam ser inseguros, mas tendo em conta que isso poderá também impedir o arranque a partir de suportes de instalação padrão do Windows." +t MSG_370 "Melhorias na \"Qualidade de Vida\": Desativa a maioria das funcionalidades indesejadas que a Microsoft está a tentar impor aos utilizadores finais." +t MSG_371 "Se utilizar esta opção, certifique-se de que desliga todos os discos do computador de destino, exceto aquele em que pretende instalar o Windows, e não deixe o suporte ligado a nenhum computador que não pretenda apagar." +t MSG_372 "VOU garantir que todos os discos, exceto o de instalação do Windows, estão desligados." +t MSG_373 "VOU garantir que não deixo este suporte ligado a um PC que não pretendo apagar." +t MSG_374 "CONCORDO que qualquer perda de dados desta opção é inteiramente da minha responsabilidade." +t MSG_900 "O Rufus é um utilitário que ajuda a formatar e a criar unidades USB inicializáveis, tais como dispositivos USB/pendrives, cartões de memória, etc." +t MSG_901 "Página oficial: %s" t MSG_902 "Código fonte: %s" t MSG_903 "Alterações: %s" t MSG_904 "Este software está licenciado sob os termos da GNU Public License (GPL) versão 3.\nConsulte https://www.gnu.org/licenses/gpl-3.0.html para mais detalhes." -t MSG_905 "Inicializável" -t MSG_910 "Formatar dispositivos USB, cartão de memória e drives virtuais em FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" +t MSG_905 "Arranque" +t MSG_910 "Formatar dispositivos USB, cartão de memória e unidades virtuais em FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" t MSG_911 "Criar unidades USB inicializáveis FreeDOS" t MSG_912 "Criar unidades inicializáveis a partir de ISOs inicializáveis (Windows, Linux, etc.)" t MSG_913 "Criar unidades inicializáveis a partir de imagens de disco inicializáveis, inclusive de imagens compactadas" @@ -11499,12 +12249,12 @@ t MSG_917 "Crie partições persistentes para Linux" t MSG_918 "Criar imagens VHD/DD do dispositivo selecionado" t MSG_919 "Calcular checksums MD5, SHA-1, SHA-256 e SHA-512 da imagem selecionada" t MSG_920 "Executar verificações de blocos inválidos, incluindo a deteção de unidades flash \"falsas\"" -t MSG_921 "Transferir ISOs oficiais do Microsoft Windows Retail" -t MSG_922 "Transferir ISOs de UEFI Shell" +t MSG_921 "Descarregar ISOs oficiais do Microsoft Windows Retail" +t MSG_922 "Descarregar ISOs de UEFI Shell" ######################################################################### l "ro-RO" "Romanian (Română)" 0x0418, 0x0818 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -11690,7 +12440,7 @@ t MSG_129 "Tocmai ați creat un media care utilizează bootloader-ul UEFI:NTFS. t MSG_130 "Selectare imagine Windows" t MSG_131 "Acest ISO conține mai multe imagini Windows.\nVă rugăm să selectați imaginea pe care doriți să o utilizați pentru această instalare:" t MSG_132 "Un alt program sau proces utilizează această unitate. Doriți să o formatați oricum?" -t MSG_133 "Rufus a observat că încercați să creați un media Windows To Go bazat pe un ISO cu versiunea 1809.\n\nDin cauza unui *BUG MICROSOFT*, acest media va eșua în timpul pornirii Windows (Blue Screen Of Death), cu excepția cazului în care înlocuiți manual fișierul 'WppRecorder.sys' cu o versiune 1803.\n\nDe asemenea, rețineți că motivul pentru care Rufus nu poate remedia automat acest lucru pentru dvs. este că 'WppRecorder.sys' este un fișier Microsoft protejat prin drepturi de autor, deci nu putem încorpora în mod legal o copie a fișierului în aplicație..." +t MSG_133 "Rufus a observat că încercați să creați un media 'Windows To Go' bazat pe un ISO cu versiunea 1809.\n\nDin cauza unui *BUG MICROSOFT*, acest media va eșua în timpul pornirii Windows (Blue Screen Of Death), cu excepția cazului în care înlocuiți manual fișierul 'WppRecorder.sys' cu o versiune 1803.\n\nDe asemenea, rețineți că motivul pentru care Rufus nu poate remedia automat acest lucru pentru dvs. este că 'WppRecorder.sys' este un fișier Microsoft protejat prin drepturi de autor, deci nu putem încorpora în mod legal o copie a fișierului în aplicație..." t MSG_134 "Deoarece MBR a fost selectat pentru schema de partiționare, Rufus poate crea doar o partiție de până la 2 TB pe acest suport media, ceea ce va lăsa %s spațiu de disc indisponibil.\n\nSigur doriți să continuați?" t MSG_135 "Versiune" t MSG_136 "Lansare" @@ -11876,38 +12626,63 @@ t MSG_318 "Prioritate implicită pentru firul de execuție: %d" t MSG_319 "Ignorare Boot Marker" t MSG_320 "Se reîmprospătează așezarea partițiilor (%s)..." t MSG_321 "Imaginea selectată este de tip ISOHybrid, însă creatorii acesteia nu au făcut-o să fie compatibilă cu modul ISO/Copiere fișiere.\nDrept urmare, modul imagine DD va fi aplicat." -t MSG_322 "Nu se poate deschide sau citii '%s'" +t MSG_322 "Nu se poate deschide sau citi '%s'" +t MSG_323 "Aplică SkuSiPolicy.p7b la instalare (Vezi KB5042562)" +t MSG_324 "Îmbunătățiri QoL (Fără Copilot, OneDrive, Outlook, pornire rapidă forțată, etc.)" t MSG_325 "Aplicând modificări la Windows: %s" -t MSG_326 "Aplicând optiuni de utilizator..." +t MSG_326 "Aplicând opțiuni de utilizator..." t MSG_327 "Experiența utilizatorului de Windows" t MSG_328 "Doriți să modificați instalația de Windows?" -t MSG_329 "Elimină necesitatea de 4GB+ RAM, Bootare Securizată si TPM 2.0" +t MSG_329 "Elimină necesitatea de 4GB+ RAM, Bootare Securizată și TPM 2.0" t MSG_330 "Elimină necesitatea pentru un cont Microsoft" -t MSG_331 "Blochează colectarea de date (Sari peste întrebările de intimitate)" +t MSG_331 "Dezactivează colectarea de date (Sari peste întrebările de confidențialitate)" t MSG_332 "Blochează Windows To Go de la accesarea discurilor interne" -t MSG_333 "Crează un cont local cu nume de utilizator:" -t MSG_334 "Serează opțiunile regionale să aibă aceleași valori ca acestui utilizator" +t MSG_333 "Creează un cont local cu nume de utilizator:" +t MSG_334 "Setează opțiunile regionale să aibă aceleași valori ca ale acestui utilizator" t MSG_335 "Blochează BitLocker de la encriptarea automată a dispozitivului" t MSG_336 "Logare persistentă" -t MSG_337 "Un fișier adițional ('diskcopy.dll') trebuie să fie descărcat de la Microsoft pentru a instala MS-DOS:\n- Selectează 'Da' ca să te conectezi la Internet și să le descarci\n- Selectează 'Nu' pentru a anula operațiunea\n\nNotiță: Acest fișier va fi descărcat in aceeași locație cu aplicația și va fi reutilizat automat dacă este prezent." +t MSG_337 "Un fișier suplimentar ('%s') trebuie descărcat de la Microsoft pentru a utiliza această funcție:\n- Selectați 'Da' pentru a vă conecta la Internet și a-l descărca\n- Selectați 'Nu' pentru a anula operațiunea\n\nNotă: Fișierul va fi descărcat în directorul aplicației și va fi reutilizat automat dacă este prezent." t MSG_338 "Bootloader UEFI nepermis detectat" -t MSG_339 "Rufus a detectat că fișierul ISO care lai selectat conține un bootloader UEFI care nu este permis si ar produce %s, cand Secure Boot este activat pe un system UEFI actualizat.\n\n- Dacă ai făcut rost de aceasta imagine ISO de la o sursă de neîncredere, este recomandat să consideri posibilitatea că ar putea conține malware UEFI ce nu ar permite pornirea de la aceasta.\n- Dacă ai făcut rost de aceasta de la o sursă de încredere, ar putea fi necesară căutarea unei versiuni mai noi, care nu ar produce acest avertisment." +t MSG_339 "Rufus a detectat că fișierul ISO selectat conține un bootloader UEFI care a fost revocat și care va produce %s, când Secure Boot este activat pe un sistem UEFI complet actualizat.\n\n- Dacă ați obținut această imagine ISO dintr-o sursă nesigură, luați în considerare posibilitatea că ar putea conține malware UEFI și evitați pornirea de pe aceasta.\n- Dacă ați obținut-o dintr-o sursă de încredere, încercați să găsiți o versiune mai recentă, care să nu producă acest avertisment." t MSG_340 "un ecran de \"Încălcare de Securitate\"" t MSG_341 "un ecran de Recuperare Windows (BSOD) cu '%s'" t MSG_342 "Imagine VHDX comprimată" t MSG_343 "Imagine VHD necomprimată" t MSG_344 "Flash complet de imagine de actualizare" -t MSG_345 "Niște date adiționale trebuie descărcate de la Microsoft pentru a folosii această funție:\n- Selectează 'Da' ca să te conectezi la Internet și să le descarci\n- Selectează 'Nu' pentru a anula operațiunea" +t MSG_345 "Unele date suplimentare trebuie descărcate de la Microsoft pentru a folosi această funcție:\n- Selectați 'Da' pentru a vă conecta la Internet și a le descărca\n- Selectați 'Nu' pentru a anula operațiunea" t MSG_346 "Restricționează Windows la S-Mode (INCOMPATIBIL cu bypass-ul pentru un cont online)" t MSG_347 "Mod expert" t MSG_348 "Extractând fișiere arhivate: %s" t MSG_349 "Folosește Rufus MBR" +t MSG_350 "Folosește bootloadere semnate cu 'Windows CA 2023' (necesită un PC compatibil)" +t MSG_351 "Se verifică revocarea bootloaderului UEFI..." +t MSG_352 "Se verifică actualizările DBX UEFI..." +t MSG_353 "Actualizare DBX disponibilă" +t MSG_354 "Rufus a găsit o versiune actualizată a fișierelor DBX folosite pentru verificările de revocare Secure Boot UEFI. Doriți să descărcați această actualizare?\n- Selectați „Da” pentru a vă conecta la internet și a descărca acest conținut\n- Selectați „Nu” pentru a anula operațiunea\n\nNotă: Fișierele vor fi descărcate în directorul aplicației și vor fi reutilizate automat, dacă există." +t MSG_355 "⚠ȘTERGE SILENȚIOS⚠ discul și instalează:" +t MSG_356 "Ați selectat opțiunea de instalare Windows \"silențioasă\".\n\nAceasta este o opțiune avansată, rezervată persoanelor care doresc să creeze suporturi media care nu solicită utilizatorilor informații în timpul instalării Windows și, prin urmare, ȘTERGE NECONDIȚIONAT primul disc detectat pe sistemul țintă. Dacă nu sunteți atenți, utilizarea acestei opțiuni poate duce la PIERDERI IREVERSIBILE DE DATE!\n\nTREBUIE să citiți și să acceptați toate afirmațiile următoare pentru a continua:" +t MSG_358 "Locație imagine neacceptată" +t MSG_359 "Nu puteți folosi o imagine aflată pe unitatea țintă, deoarece acea unitate va fi complet ștearsă. Este același lucru cu încercarea de a tăia creanga pe care stai!\n\nMută imaginea într-o altă locație și încearcă din nou." +t MSG_360 "Este sigur să lăsați această opțiune activată chiar dacă aveți un TPM sau mai multă memorie RAM, deoarece aceasta ocolește doar cerințele de configurare și nu împiedică Windows să utilizeze tot hardware-ul disponibil." +t MSG_361 "Pentru ca această opțiune să funcționeze, rețeaua/Internetul TREBUIE să fie deconectat în timpul instalării!" +t MSG_362 "Răspunde automat cu 'Nu' la întrebările de instalare Windows legate de partajarea datelor cu Microsoft, în loc să întrebe utilizatorul." +t MSG_363 "Lăsați această opțiune activată dacă nu doriți ca 'Windows To Go' să acceseze discurile interne și să efectueze actualizări ireversibile ale sistemului de fișiere fără avertizare." +t MSG_364 "Creează automat un cont local cu numele de utilizator specificat, folosind o parolă goală care va trebui schimbată la prima autentificare." +t MSG_365 "Preia setările regionale de pe acest PC (tastatură, fus orar, monedă), în loc să întrebe utilizatorul." +t MSG_366 "Nu cripta discul de sistem, cu excepția cazului în care utilizatorul solicită explicit acest lucru." +t MSG_367 "Folosiți această opțiune doar dacă știți ce este S-Mode și acceptați că sistemul poate rămâne blocat în S-Mode chiar și după reinstalarea completă a Windows." +t MSG_368 "Folosiți această opțiune dacă sistemul pe care intenționați să instalați Windows utilizează certificate Secure Boot complet actualizate. Dacă este necesar, puteți folosi 'Mosby' pentru a actualiza sistemul." +t MSG_369 "Folosiți această opțiune pentru a revoca bootloadere Windows potențial nesigure suplimentare, cu riscul de a împiedica și pornirea suporturilor Windows standard." +t MSG_370 "Îmbunătățiri \"Quality of Life\": Dezactivează majoritatea funcțiilor nedorite pe care Microsoft încearcă să le impună utilizatorilor finali." +t MSG_371 "Dacă folosiți această opțiune, asigurați-vă că deconectați toate discurile de la computerul țintă, cu excepția celui pe care doriți să instalați Windows, și nu lăsați suportul conectat la niciun computer pe care nu doriți să îl ștergeți." +t MSG_372 "MĂ VOI ASIGURA că toate discurile, cu excepția discului Windows, sunt deconectate." +t MSG_373 "MĂ VOI ASIGURA că nu las acest mediu conectat la un PC pe care nu intenționez să îl șterg." +t MSG_374 "SUNT DE ACORD că orice pierdere de date din această opțiune îmi revine în întregime mie." t MSG_900 "Rufus este un utilitar care ajută la formatarea și crearea de drive-uri USB bootabile, precum cheile sau pendriverele USB, unități de memorie, etc." -t MSG_901 "Site official: %s" -t MSG_902 "Codul Sursei: %s" +t MSG_901 "Site oficial: %s" +t MSG_902 "Cod sursă: %s" t MSG_903 "Listă de schimbări: %s" -t MSG_904 "Această aplicație este sub liciența și termenii și condițiile ale lui GNU Public License (GPL) versiunea a 3-a.\nVazi https://www.gnu.org/licenses/gpl-3.0.en.html pentru detalii." -t MSG_905 "Bootează" +t MSG_904 "Această aplicație este licențiată conform termenilor GNU Public License (GPL) versiunea 3.\nVezi https://www.gnu.org/licenses/gpl-3.0.en.html pentru detalii." t MSG_910 "Formatează USB, card flash si drive-uri virtuale la FAT/FAT32/NTFS/UDF/exFAT/ReFS/ext2/ext3" t MSG_911 "Crează drive USB bootabil FreeDOS" t MSG_912 "Crează drive-uri bootabile de la ISO-uri bootabile (Windows, Linux, etc.)" @@ -11924,7 +12699,7 @@ t MSG_922 "Descarcă UEFI Shell ISO-uri" ######################################################################### l "ru-RU" "Russian (Русский)" 0x0419, 0x0819 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -12065,7 +12840,7 @@ t MSG_076 "Невозможно исправить/настроить файлы t MSG_077 "Невозможно назначить букву диска." t MSG_078 "Невозможно смонтировать том GUID." t MSG_079 "Устройство не готово." -t MSG_080 "Rufus обнаружил, что Windows всё ещё очищает внутренний буфер USB-устройства.\n\nВ зависимости от скорости USB-устройства, эта операция может занять много времени, особенно для больших файлов.\n\nЧтобы избежать повреждения устройства, дождитесь, пока Windows закончит. Но если вам надоест ждать, можете просто отключить устройство..." +t MSG_080 "Rufus обнаружил, что Windows всё ещё очищает внутренний буфер USB-устройства.\n\nВ зависимости от скорости USB-устройства, эта операция может занять много времени, особенно для больших файлов.\n\nЧтобы избежать повреждения устройства, дождитесь, пока Windows закончит. Но если Вам надоест ждать, можете просто отключить устройство..." t MSG_081 "Неподдерживаемый образ" t MSG_082 "Образ либо незагрузочный, либо использует метод загрузки или сжатия, не поддерживаемый Rufus." t MSG_083 "Заменить %s?" @@ -12078,7 +12853,7 @@ t MSG_089 "Образ слишком большой для выбранного t MSG_090 "Неподдерживаемый образ ISO" t MSG_091 "При использовании целевого типа UEFI поддерживаются только загрузочные образы ISO. Выберите загрузочный образ EFI или измените целевой тип BIOS." t MSG_092 "Неподдерживаемая файловая система" -t MSG_093 "ВАЖНО: НА ЭТОМ ДИСКЕ НЕСКОЛЬКО РАЗДЕЛОВ!!\n\nЭтот диск может содержать разделы/тома, которые отсутствуют в списке или даже не видны в Windows. В случае продолжения вы несёте ответственность за любую потерю данных на этих разделах." +t MSG_093 "ВАЖНО: НА ЭТОМ ДИСКЕ НЕСКОЛЬКО РАЗДЕЛОВ!!\n\nЭтот диск может содержать разделы/тома, которые отсутствуют в списке или даже не видны в Windows. В случае продолжения Вы несёте ответственность за любую потерю данных на этих разделах." t MSG_094 "Обнаружено несколько разделов" t MSG_095 "DD-образ" t MSG_096 "Выбранная файловая система не может использоваться с этим типом образа ISO. Выберите другую файловую систему или другой образ ISO." @@ -12090,7 +12865,7 @@ t MSG_101 "Отсутствует поддержка WIM" t MSG_102 "Ваша система не может извлекать файлы из архивов WIM. Распаковка таких архивов необходима для создания загрузочных USB-накопителей EFI для Windows 7 и Windows Vista. Чтобы решить эту проблему, установите новейшую версию 7-Zip.\nОткрыть страницу загрузки 7-Zip?" t MSG_103 "Загрузить %s?" t MSG_104 "%s или новее требует наличия файла '%s'.\nПоскольку размер этого файла больше 100 КБ, и он всегда присутствует в ISO-образах %s, он не встроен в Rufus.\n\nRufus может скачать недостающий файл:\n- Выберите 'Да', если хотите скачать этот файл\n- Выберите 'Нет', если хотите скачать его вручную позже\n\n* Файл будет скачан в текущую папку. Если в ней есть '%s', он будет автоматически перезаписан." -t MSG_105 "При отмене устройство может оказаться в НЕРАБОЧЕМ состоянии.\nЕсли вы уверены, что хотите отменить операцию, нажмите 'Да'. Иначе - нажмите 'Нет'." +t MSG_105 "При отмене устройство может оказаться в НЕРАБОЧЕМ состоянии.\nЕсли Вы уверены, что хотите отменить операцию, нажмите 'Да'. Иначе - нажмите 'Нет'." t MSG_106 "Выберите папку" t MSG_107 "Все файлы" t MSG_108 "Журнал Rufus" @@ -12115,9 +12890,9 @@ t MSG_127 "Больше это не показывать" t MSG_128 "Важное примечание о %s" t MSG_129 "Вы только что создали носитель с загрузчиком UEFI:NTFS. Учтите, что для загрузки этого носителя НУЖНО ОТКЛЮЧИТЬ БЕЗОПАСНУЮ ЗАГРУЗКУ.\nЧтобы узнать, почему это необходимо, нажмите кнопку 'Ещё'." t MSG_130 "Выбор образа Windows" -t MSG_131 "Этот файл ISO содержит несколько образов Windows.\nВыберите образ, который вы хотите использовать для этой установки:" +t MSG_131 "Этот файл ISO содержит несколько образов Windows.\nВыберите образ, который Вы хотите использовать для этой установки:" t MSG_132 "К этому диску обращается другая программа или процесс. Всё равно настаиваете на форматировании?" -t MSG_133 "Rufus обнаружил, что вы пытаетесь создать носитель Windows To Go на основе ISO 1809.\n\nИз-за *ОШИБКИ MICROSOFT* этот носитель будет давать сбой при загрузке Windows (BSOD), если вы вручную не замените файл WppRecorder.sys версией 1803.\n\nRufus не может это исправить автоматически, так как WppRecorder.sys - это файл Microsoft, защищённый авторскими правами, поэтому мы не можем легально встраивать в приложение его копию." +t MSG_133 "Вы пытаетесь создать носитель Windows To Go на основе ISO 1809.\n\nИз-за *ОШИБКИ MICROSOFT* этот носитель будет давать сбой (BSOD) при загрузке Windows, если вы вручную не замените файл WppRecorder.sys версией 1803.\n\nRufus не может это исправить автоматически, так как WppRecorder.sys - это файл Microsoft, защищённый авторскими правами, поэтому мы не можем легально встраивать в приложение его копию." t MSG_134 "Поскольку для схемы разделов выбрана MBR, на этом носителе Rufus может создать только раздел размером до 2 ТБ, а %s дискового пространства останутся недоступными.\n\nВы действительно хотите продолжить?" t MSG_135 "Версия" t MSG_136 "Выпуск" @@ -12151,7 +12926,6 @@ t MSG_164 "Метод, который будет использоваться д t MSG_165 "Нажмите, чтобы выбрать или загрузить образ..." t MSG_166 "Разрешить отображение меток с международными символами и задать значок устройства\n(создаётся файл autorun.inf)" t MSG_167 "Установить загрузчик UEFI, который проверит файл MD5Sum на носителе" -t MSG_168 "Попробуйте замаскировать первый загрузочный \nUSB-диск (обычно 0x80) как другой диск.\nЭто необходимо только для установки Windows XP,\nесли у вас несколько дисков." t MSG_169 "Создать дополнительный скрытый раздел и попробовать выровнять границы разделов.\nЭто может улучшить обнаружение загрузчика в старых BIOS." t MSG_170 "Отображать внешние жёсткие диски USB.\nИСПОЛЬЗУЙТЕ НА СВОЙ СТРАХ И РИСК!" t MSG_171 "Начать форматирование.\nВсе данные на диске будут УНИЧТОЖЕНЫ!" @@ -12163,8 +12937,8 @@ t MSG_176 "Русский перевод: Дмитрий Ерохин " +t MSG_176 "Do slovenčiny preložil martinco78 " t MSG_177 "Oznámenie chýb alebo žiadosti o zlepšenie programu:" t MSG_178 "Doplnkové Copyrighty:" t MSG_179 "Zásady aktuálizácií:" @@ -13143,21 +13969,23 @@ t MSG_317 "ID disku" t MSG_318 "Predvolená priorita vlákna: %d" t MSG_319 "Ignorovať zavádzaciu značku" t MSG_320 "Obnovuje sa rozloženie oblasti (%s)..." -t MSG_321 "Obráz, ktorý ste vybrali, je ISOHybrid a nie je kompatibilný s ISO/režim kopírovania súboru.\nV dôsledku toho sa vynúti režim zápisu obrazu DD." +t MSG_321 "Obraz, ktorý ste vybrali, je ISOHybrid a nie je kompatibilný s ISO/režim kopírovania súboru.\nV dôsledku toho sa vynúti režim zápisu obrazu DD." t MSG_322 "Nedá sa otvoriť alebo prečítať „%s\"" +t MSG_323 "Použiť SkuSiPolicy.p7b pri inštalácii (pozri KB5042562)" +t MSG_324 "QoL vylepšenia (nenúťte Copilot, OneDrive, Outlook, Fast Startup a podobne)" t MSG_325 "Použitie prispôsobenia systému Windows: %s" t MSG_326 "Použitie používateľských nastavení..." t MSG_327 "Používateľská skúsenosť so systémom Windows" t MSG_328 "Prajete si prispôsobiť inštaláciu systému Windows?" -t MSG_329 "Odstrániť požiadavku pre 4GB+ RAM, Secure Boot a TPM 2.0" -t MSG_330 "Odstrániť požiadavky na online konto Microsoft" +t MSG_329 "Odstrániť požiadavky pre 4GB+ RAM, Secure Boot a TPM 2.0" +t MSG_330 "Odstrániť požiadavku na online konto Microsoft" t MSG_331 "Zakázať zhromažďovanie údajov (preskočiť otázky týkajúce sa ochrany osobných údajov)" t MSG_332 "Zabrániť funkcii Windows To Go v prístupe na interné disky" t MSG_333 "Vytvorte si lokálny účet s používateľským menom:" t MSG_334 "Nastaviť miestne možnosti na rovnaké hodnoty, ako možnosti tohto používateľa" t MSG_335 "Vypnutie automatického šifrovania zariadenia BitLocker" t MSG_336 "Trvalý záznam činností" -t MSG_337 "Pre inštaláciu systému MS-DOS je potrebné prevziať od spoločnosti Microsoft ďalší súbor („diskcopy.dll\"):\n- Výberom možnosti „Áno\" ho stiahnete z internetu\n- Výberom možnosti „Nie\" zrušíte operáciu\n\nPoznámka: Súbor sa stiahne do adresára aplikácie a automaticky sa znova použije, ak je k dispozícii." +t MSG_337 "Na použitie tejto funkcie je potrebné prevziať od spoločnosti Microsoft ďalší súbor („%s“):\n- Výberom možnosti „Áno\" ho stiahnete z internetu\n- Výberom možnosti „Nie\" zrušíte operáciu\n\nPoznámka: Súbor sa stiahne do adresára aplikácie a automaticky sa znova použije, ak je k dispozícii." t MSG_338 "Bol zistený zrušený zavádzač UEFI" t MSG_339 "Program Rufus zistil, že ISO, ktoré ste vybrali, obsahuje zavádzač UEFI, ktorý bol zrušený a ktorý bude produkovať %s, keď je povolené zabezpečené spustenie na plne aktuálnom systéme UEFI.\n\n- Ak ste tento obraz ISO získali z neseriózneho zdroja, mali by ste zvážiť možnosť, že by mohol obsahovať malvér UEFI a vyhnúť sa bootovaniu z neho.\n- Ak ste ho získali z dôveryhodného zdroja, mali by ste sa pokúsiť nájsť aktuálnejšiu verziu, ktorá toto upozornenie nespustí." t MSG_340 "obrazovka „Narušenie bezpečnosti\"" @@ -13170,6 +13998,30 @@ t MSG_346 "Obmedziť systém Windows s režimom S (NEKOMPATIBILNÝ s obídením t MSG_347 "Expertný režim" t MSG_348 "Extrahovanie archívnych súborov: %s" t MSG_349 "Použiť Rufus MBR" +t MSG_350 "Použiť podpísané bootloadery „Windows CA 2023\" (vyžaduje kompatibilný cieľový PC)" +t MSG_351 "Prebieha kontrola zrušenia UEFI zavádzača..." +t MSG_352 "Prebieha kontrola aktualizácie pre UEFI DBX..." +t MSG_353 "Dostupná aktualizácia DBX" +t MSG_354 "Rufus našiel aktualizovanú verziu DBX súborov používaných na kontrolu odvolávania UEFI Secure Boot. Chcete si stiahnuť túto aktualizáciu?\n- Vyberte „Áno\" ak chcete tieto súbory stiahnuť\n- Vyberte „Nie\" pre zrušenie operácie\n\nPoznámka: Súbory budú stiahnuté do adresára aplikácie a budú automaticky znovu použité, ak budú prítomné." +t MSG_355 "⚠BEZ UPOZORNENIA⚠ vymažte disk a nainštaluje:" +t MSG_356 "Vybrali ste možnosť „tichá\" inštalácia Windows.\n\nIde o pokročilú možnosť, vyhradenú pre ľudí, ktorí chcú vytvárať médiá, ktoré počas inštalácie Windows neupozorňujú používateľa a teda BEZPODMIENEČNE VYMAŽÚ prvý zistený disk na cieľovom systéme. Ak nebudete opatrní, pri tejto možnosti môže dôjsť k NEVRATNEJ STRATE DÁT!\n\nNa pokračovanie MUSÍTE prečítať a prijať všetky nasledujúce vyhlásenia:" +t MSG_358 "Nepodporované umiestnenie obrazu" +t MSG_359 "Nemôžete použiť obraz, ktorý sa nachádza na cieľovom disku, pretože tento disk bude úplne vymazaný. Je to to isté, ako keby ste sa snažili rezať konár, na ktorom sedíte!\n\nProsím, presuňte tento obraz do iného umiestnenia a skúste to znova." +t MSG_360 "Je bezpečné nechať túto možnosť zapnutú aj v prípade, že máte TPM alebo viac RAM, pretože táto možnosť len obchádza požiadavky na nastavenie a v skutočnosti nebráni Windows v používaní všetkého dostupného hardvéru." +t MSG_361 "Aby táto možnosť fungovala, sieť/internet MUSIA byť počas inštalácie odpojené!" +t MSG_362 "Automaticky odpovedá „NIE\" na otázky týkajúce sa Windows zdieľania dát s Microsoftom, namiesto toho, aby vyzývali používateľa." +t MSG_363 "Túto možnosť by ste mali nechať zapnutú, pokiaľ vám nevadí, že „Windows To Go\" pristupuje k interným diskom a potichu vykonáva nezvratné aktualizácie súborového systému." +t MSG_364 "Automaticky vytvorí lokálny účet s určeným používateľským menom s prázdnym heslom, ktoré bude potrebné zmeniť pri ďalšom prihlásení." +t MSG_365 "Duplikuje regionálne nastavenia z tohto PC (klávesnica, časové pásmo, mena) namiesto toho, aby výzýval používateľa." +t MSG_366 "Nešifrujte systémový disk, pokiaľ to používateľ výslovne nepožiada." +t MSG_367 "Použite túto možnosť len vtedy, ak viete, čo je S-Mode a chápete, že váš systém môže byť uzamknutý v S-Mode aj po úplnom vymazaní a preinštalovaní Windows." +t MSG_368 "Použite túto možnosť, ak systém ktorý plánujete nainštalovať Windows, používa plne aktuálne certifikáty Secure Boot. Ak je to potrebné, môžete zvážiť použitie „Mosby\" na aktualizáciu systému." +t MSG_369 "Použite túto možnosť, ak chcete zrušiť ďalšie potenciálne nebezpečné bootloadery Windows, ale zároveň potenciálne zabrániť spusteniu štandardných Windows médií." +t MSG_370 "Vylepšenia „kvality života\": Vypne väčšinu nežiaducich funkcií, ktoré sa Microsoft snaží vnútiť koncovým používateľom." +t MSG_371 "Ak použijete túto možnosť, uistite sa, že máte odpojené všetky disky od cieľového PC, okrem toho na ktorý chcete nainštalovať systém Windows. Taktiež nenechávajte médium pripojené k žiadnemu PC, ktorý nechcete vymazať." +t MSG_372 "ZABEZPEČÍM, že všetky disky, okrem toho, na ktorý chcem nainštalovať Windows, budú odpojené." +t MSG_373 "ZABEZPEČÍM, že toto médium nezostane pripojené k počítaču, ktorý neplánujem vymazať." +t MSG_374 "SÚHLASÍM, že akákoľvek strata dát z použitia tejto možnosti je výlučne mojou zodpovednosťou." t MSG_900 "Rufus je utilita, ktorá vám pomôže naformátovať a vytvoriť bootovacie jednotky USB Flash, ako sú napr. USB kľúče, pamäťové karty, atď." t MSG_901 "Oficiálna stránka: %s" t MSG_902 "Zdrojový kód: %s" @@ -13579,7 +14431,7 @@ t MSG_333 "Ustvarite lokalni račun z uporabniškim imenom:" t MSG_334 "Nastavite regionalne možnosti na enake vrednosti, kot jih ima ta uporabnik" t MSG_335 "Onemogoči samodejno šifriranje naprave BitLocker" t MSG_336 "Trajni dnevnik" -t MSG_337 "Za namestitev MS-DOS je treba od Microsofta prenesti dodatno datoteko ('diskcopy.dll'):\n- Izberite 'Da', da se povežete z internetom in jo prenesete\n- Izberite 'Ne', da prekličete operacijo\n\nOpomba: datoteka bo prenesena v imenik aplikacije in samodejno ponovno uporabljena, če je prisotna." +t MSG_337 "Za uporabo te funkcije je treba od Microsofta prenesti dodatno datoteko ('%s'):\n- Izberite 'Da', da se povežete z internetom in jo prenesete\n- Izberite 'Ne', da prekličete operacijo\n\nOpomba: datoteka bo prenesena v imenik aplikacije in samodejno ponovno uporabljena, če je prisotna." t MSG_338 "Zaznan preklican zagonski nalagalnik UEFI" t MSG_339 "Rufus je zaznal, da ISO, ki ste ga izbrali, vsebuje zagonski nalagalnik UEFI, ki je bil preklican in bo ustvaril %s, ko je varen zagon omogočen v popolnoma posodobljenem sistemu UEFI.\n\n- Če ste to ISO sliko pridobili iz neuglednega vira, razmislite o možnosti, da morda vsebuje zlonamerno programsko opremo UEFI, in se izogibajte zagonu iz nje.\n- Če ste jo pridobili iz zaupanja vrednega vira, poskusite poiskati posodobljenejšo različico, ki tega ne bo povzročila tega opozorila." t MSG_340 "zaslon \"Kršitev varnosti\"." @@ -13592,6 +14444,11 @@ t MSG_346 "Omejite Windows na S-način (NEZDRUŽLJIVO z obvodom spletnega račun t MSG_347 "Strokovni način" t MSG_348 "Ekstrahiranje arhivskih datotek: %s" t MSG_349 "Uporabite Rufus MBR" +t MSG_355 "⚠TIHO⚠ izbrišite disk in namestite:" +t MSG_356 "Izbrali ste možnost \"tihe\" namestitve sistema Windows.\n\nTo je napredna možnost, namenjena uporabnikom, ki želijo ustvariti namestitveni nosilec, ki med namestitvijo sistema Windows ne prikazuje pozivov in zato BREZ POGOJEV IZBRISE prvi zaznan disk v ciljnem sistemu. Če niste previdni, lahko uporaba te možnosti povzroči NEPOPRAVLJIVO IZGUBO PODATKOV!\n\nZa nadaljevanje MORATE prebrati in sprejeti vse naslednje izjave:" +t MSG_372 "POSKRBEL/A BOM, da bodo vsi diski, razen diska za Windows, izklopljeni." +t MSG_373 "POSKRBEL/A BOM, da tega medija ne pustim na računalniku, ki ga ne nameravam izbrisati." +t MSG_374 "STRINJAM SE, da je vsaka izguba podatkov iz te možnosti izključno moja odgovornost." t MSG_900 "Rufus je program za formatiranje in ustvarjanje zagonskih naprav USB." t MSG_901 "Uradna stran: %s" t MSG_902 "Šifra vira: %s" @@ -13614,7 +14471,7 @@ t MSG_922 "Prenos UEFI Shell ISOs" ######################################################################### l "es-ES" "Spanish (Español)" 0x040a, 0x080a, 0x0c0a, 0x100a, 0x140a, 0x180a, 0x1c0a, 0x200a, 0x240a, 0x280a, 0x2c0a, 0x300a, 0x340a, 0x380a, 0x3c0a, 0x400a, 0x440a, 0x480a, 0x4c0a, 0x500a, 0x540a, 0x580a -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -13793,7 +14650,7 @@ t MSG_129 "Has creado un sistema que usa un bootloader UEFI:NTFS. Por favor, rec t MSG_130 "Selección de imagen de Windows" t MSG_131 "Esta ISO contiene múltiples imágenes de Windows.\nPor favor, seleccione la imagen que desea usar para esta instalación:" t MSG_132 "Otro programa o proceso está accediendo a esta unidad. ¿Deseas formatearlo de todas formas?" -t MSG_133 "Rufus ha detectado que estás intentando crear un medio en Windows To Go basado en la ISO 1809.\n\nDebido a un *FALLO DE MICROSOFT*, este medio no arrancará al iniciar Windows (Pantallazo Azul de la Muerte), a no ser que manualmente reemplaces el fichero 'WppRecorder.sys' con la versión 1803.\n\nTen en cuenta que el motivo por el que Rufus no puede arreglar esto automáticamente es debido a que el fichero 'WppRecorder.sys' es un fichero con copyright, por lo que legalmente no podemos añadir una copia del fichero en la aplicación..." +t MSG_133 "Rufus ha detectado que estás intentando crear un medio Windows To Go basado en la ISO 1809.\n\nDebido a un *FALLO DE MICROSOFT*, este medio se bloqueará durante el arranque de Windows (Pantalla Azul de la Muerte), a menos que reemplaces manualmente el archivo 'WppRecorder.sys' con la versión 1803.\n\nTen en cuenta que el motivo por el que Rufus no puede corregir esto automáticamente es que 'WppRecorder.sys' es un archivo con derechos de autor de Microsoft, por lo que legalmente no podemos incluir una copia en la aplicación..." t MSG_134 "Debido a que has seleccionado MBR para el sistema de particiones, Rufus sólo puede crear una partición de hasta 2TB en este dispositivo, lo que dejará %s del disco no disponibles.\n\n¿Estas seguro de que deseas continuar?" t MSG_135 "Versión" t MSG_136 "Emisión" @@ -13980,6 +14837,8 @@ t MSG_319 "Ignorar marca de arranque (Boot Marker)" t MSG_320 "Actualizando disposición de partición (%s)..." t MSG_321 "La imagen seleccionada es ISOHybrid, pero sus creadores no la han creado compatible con el modo de copia ISO/FILE.\nPor consiguiente, se forzará el modo de escritura de imágenes DD." t MSG_322 "No se puede abrir o leer '%s'" +t MSG_323 "Aplicar SkuSiPolicy.p7b durante la instalación (ver KB5042562)" +t MSG_324 "Mejoras \"QoL\" (no forzar Copilot, OneDrive, Outlook, Inicio rápido, etc.)" t MSG_325 "Aplicando personalización de Windows: %s" t MSG_326 "Aplicando opciones de usuario..." t MSG_327 "Experiencia de usuario de Windows" @@ -13992,7 +14851,7 @@ t MSG_333 "Crear una cuenta local con nombre de usuario:" t MSG_334 "Establezca las opciones regionales en los mismos valores que las de este usuario" t MSG_335 "Deshabilitar el cifrado automático de dispositivos BitLocker" t MSG_336 "Registro persistente" -t MSG_337 "Se debe descargar un archivo adicional ('diskcopy.dll') de Microsoft para instalar MS-DOS:\n- Seleccione 'Sí' para conectarse a Internet y descargarlo\n- Seleccione 'No' para cancelar la operación.\n\nNota: El archivo se descargará en el directorio de la aplicación y se reutilizará automáticamente si está presente." +t MSG_337 "Se debe descargar un archivo adicional ('%s') de Microsoft para usar esta función:\n- Seleccione 'Sí' para conectarse a Internet y descargarlo\n- Seleccione 'No' para cancelar la operación\n\nNota: El archivo se descargará en la carpeta de la aplicación y se reutilizará automáticamente si está presente." t MSG_338 "Se detectó un gestor de arranque UEFI revocado" t MSG_339 "Rufus detectó que el ISO que seleccionó contiene un gestor de arranque UEFI que ha sido revocado y que producirá %s, cuando el arranque seguro esté habilitado en un sistema UEFI completamente actualizado.\n\n- Si obtuvo esta imagen ISO de una fuente no confiable, debe considerar la posibilidad de que contenga malware UEFI y evitar arrancar desde allí.\n- Si lo obtuvo de una fuente confiable, debe intentar localizar una versión más actualizada, que no producirá esta advertencia." t MSG_340 "una pantalla de \"violación de seguridad\"" @@ -14005,6 +14864,30 @@ t MSG_346 "Restringir Windows al Modo S (INCOMPATIBLE con la omisión de cuenta t MSG_347 "Modo experto" t MSG_348 "Extrayendo archivos comprimidos: %s" t MSG_349 "Utilice Rufus MBR" +t MSG_350 "Usar cargadores de arranque firmados con 'Windows CA 2023' (requiere una PC de destino compatible)" +t MSG_351 "Comprobando la revocación del cargador de arranque UEFI..." +t MSG_352 "Comprobando actualizaciones de UEFI DBX..." +t MSG_353 "Actualización de DBX disponible" +t MSG_354 "Rufus ha encontrado una versión actualizada de los archivos DBX utilizados para realizar comprobaciones de revocación de Secure Boot en UEFI. ¿Desea descargar esta actualización?\n- Seleccione 'Sí' para conectarse a Internet y descargar este contenido\n- Seleccione 'No' para cancelar la operación\n\nNota: Los archivos se descargarán en la carpeta de la aplicación y se reutilizarán automáticamente si están presentes." +t MSG_355 "⚠EN SILENCIO⚠ borrar el disco e instalar:" +t MSG_356 "Ha seleccionado usar la opción de instalación \"silenciosa\" de Windows.\n\nEsta es una opción avanzada, reservada para personas que desean crear un medio que no solicite interacción del usuario durante la instalación de Windows y que, por lo tanto, BORRA INCONDICIONALMENTE el primer disco detectado en el sistema de destino. Si no tiene cuidado, usar esta opción puede resultar en UNA PÉRDIDA DE DATOS IRREVERSIBLE.\n\nDEBE leer y aceptar todas las siguientes declaraciones para continuar:" +t MSG_358 "Ubicación de imagen no compatible" +t MSG_359 "No puede usar una imagen que esté ubicada en la unidad de destino, ya que esa unidad va a ser completamente borrada. Es lo mismo que intentar serrar la rama en la que está sentado.\n\nPor favor, mueva la imagen a una ubicación diferente e inténtelo de nuevo." +t MSG_360 "Es seguro dejar esta opción habilitada incluso si tiene un TPM o más memoria RAM, ya que esta opción solo omite los requisitos de instalación y no impide que Windows utilice todo el hardware disponible." +t MSG_361 "Para que esta opción funcione, la red/Internet DEBE estar desconectada durante la instalación." +t MSG_362 "Responder automáticamente 'No' a las preguntas de instalación de Windows relacionadas con el uso compartido de datos con Microsoft, en lugar de solicitárselo al usuario." +t MSG_363 "Debe dejar esta opción habilitada, a menos que esté de acuerdo con que 'Windows To Go' acceda a los discos internos y realice en silencio actualizaciones irreversibles del sistema de archivos." +t MSG_364 "Crear automáticamente una cuenta local con el nombre de usuario especificado, utilizando una contraseña vacía que deberá cambiarse en el próximo inicio de sesión." +t MSG_365 "Duplicar la configuración regional de esta PC (teclado, zona horaria, moneda), en lugar de solicitársela al usuario." +t MSG_366 "No cifrar el disco del sistema, a menos que el usuario lo solicite explícitamente." +t MSG_367 "Use esta opción solo si sabe qué es el Modo S y entiende que su sistema puede quedar bloqueado en Modo S incluso después de borrar completamente e reinstalar Windows." +t MSG_368 "Use esta opción si el sistema en el que planea instalar Windows utiliza certificados de Secure Boot completamente actualizados. Si es necesario, puede considerar usar 'Mosby' para actualizar su sistema." +t MSG_369 "Use esta opción si desea revocar cargadores de arranque adicionales de Windows que puedan ser inseguros, pero con la posibilidad de que también se impida que los medios estándar de Windows arranquen." +t MSG_370 "Mejoras de \"Calidad de Vida\": Deshabilitar la mayoría de las funciones no deseadas que Microsoft intenta imponer a los usuarios finales." +t MSG_371 "Si usa esta opción, asegúrese de desconectar todos los discos de la PC de destino, excepto aquel en el que desea instalar Windows, así como de no dejar el medio conectado en ninguna PC que no desee borrar." +t MSG_372 "ME ASEGURARÉ de que todos los discos, excepto el de Windows, estén desconectados." +t MSG_373 "ME ASEGURARÉ de no dejar este medio conectado a una PC que no planeo borrar." +t MSG_374 "ACEPTO que cualquier pérdida de datos por el uso de esta opción es responsabilidad mía." t MSG_900 "Rufus es una utilidad que le ayuda a formatear y crear dispositivos flash booteables, como «pendrives», tarjetas de memoria, etcétera." t MSG_901 "Sitio oficial %s" t MSG_902 "Código fuente %s" @@ -14027,7 +14910,7 @@ t MSG_922 "Descargar ISO de UEFI Shell" ######################################################################### l "sv-SE" "Swedish (Svenska)" 0x041d, 0x081d -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -14045,7 +14928,7 @@ t IDS_TARGET_SYSTEM_TXT "Målsystem" t IDC_LIST_USB_HDD "Lista USB-hårddiskar" t IDC_OLD_BIOS_FIXES "Lägg till korrigeringar för äldre BIOS:ar (extra partition, etc)" t IDC_UEFI_MEDIA_VALIDATION "Aktivera runtime UEFI-mediavalidering" -t IDS_FORMAT_OPTIONS_TXT "Formateringsinställningar" +t IDS_FORMAT_OPTIONS_TXT "Formatalternativ" t IDS_FILE_SYSTEM_TXT "Filsystem" t IDS_CLUSTER_SIZE_TXT "Klusterstorlek" t IDS_LABEL_TXT "Volymetikett" @@ -14258,7 +15141,7 @@ t MSG_183 "Din IP-adress" t MSG_184 "För att kunna skapa användningsstatistik, kommer vi att spara informationen, \\b i högst ett år\\b0 . Vi kommer dock behålla informationen för oss själva." t MSG_185 "Uppdateringsprocess:" t MSG_186 "Rufus installerar inga bakgrundsprogram, därför sker endast uppdateringskontrollen när det körs.\\line\nFör att kontrollera efter uppdateringar krävs naturligtvis internettillgång." -t MSG_187 "Ogiltig avbild för vald startinställning" +t MSG_187 "Ogiltig avbild för valt startalternativ" t MSG_188 "Nuvarande avbild matchar inte det startbara valet. Välj en annan avbild eller ändra de startbara valet." t MSG_189 "Denna ISO-avbild är inte kompatibel med valt filsystem" t MSG_190 "Enheten är inte kompatibel" @@ -14393,6 +15276,8 @@ t MSG_319 "Ignorera startmarkör" t MSG_320 "Uppdaterar partitionslayout (%s)..." t MSG_321 "Avbilden du har valt är en ISOHybrid, men den som skapade filen har inte gjort den kompatibelt med ISO/Filkopieringsläge.\nDärför kommer skrivläget DD-avbild att användas." t MSG_322 "Det går inte att öppna eller läsa '%s'" +t MSG_323 "Verkställ SkuSiPolicy.p7b vid installationen (se KB5042562)" +t MSG_324 "Förbättringar av användarupplevelsen (tvinga inte på Copilot, OneDrive, Outlook, Snabbstart osv.)" t MSG_325 "Verkställer Windows-anpassning: %s" t MSG_326 "Verkställer användaralternativ..." t MSG_327 "Windows användarupplevelse" @@ -14405,7 +15290,7 @@ t MSG_333 "Skapa ett lokalt konto med användarnamn:" t MSG_334 "Ställ in regionala alternativ till samma värden som denna användares" t MSG_335 "Inaktivera BitLockers automatiska enhetskryptering" t MSG_336 "Bestående logg" -t MSG_337 "En fil (diskcopy.dll) måste laddas ner från Microsoft för att installera MS-DOS:\n- Välj \"Ja\" för att ansluta till Internet och ladda ner den\n- Välj \"Nej\" för att avbryta operationen\n\nObs: Filen kommer att laddas ner i programmets katalog och kommer att återanvändas automatiskt om den finns." +t MSG_337 "En fil (%s) måste laddas ner från Microsoft för att använda den här funktionen:\n- Välj \"Ja\" för att ansluta till Internet och ladda ner den\n- Välj \"Nej\" för att avbryta operationen\n\nObs: Filen kommer att laddas ner i programmets katalog och kommer att återanvändas automatiskt om den finns." t MSG_338 "Återkallad UEFI-starthanterare upptäcktes" t MSG_339 "Rufus upptäckte att den ISO-filen du har valt innehåller en UEFI-starthanterare som har återkallats och som kommer att producera %s, när \"Secure Boot\" är aktiverat på ett helt uppdaterat UEFI-system.\n\n- Om du skaffade den här ISO-avbilden från en icke ansedd källa bör du överväga möjligheten att den kan innehålla UEFI-skadlig programvara och undvika att starta från den.\n- Om du har fått det från en pålitlig källa bör du försöka hitta en mer uppdaterad version som inte ger den här varningen." t MSG_340 "en \"Säkerhetsöverträdelseskärm\"" @@ -14418,6 +15303,30 @@ t MSG_346 "Begränsa Windows till S-läge (INKOMPATIBEL med förbikoppling av on t MSG_347 "Expertläge" t MSG_348 "Extraherar arkivfiler: %s" t MSG_349 "Använd Rufus MBR" +t MSG_350 "Använd bootloaders signerade med ’Windows CA 2023’ (kräver en kompatibel mål‑PC)" +t MSG_351 "Kontrollerar om UEFI‑bootloadern är återkallad..." +t MSG_352 "Söker efter UEFI‑DBX‑uppdateringar..." +t MSG_353 "DBX‑uppdatering tillgänglig" +t MSG_354 "Rufus har hittat en uppdaterad version av de DBX‑filer som används för att utföra UEFI Secure Boot‑återkallelsekontroller. Vill du ladda ned denna uppdatering?\n- Välj ”Ja” för att ansluta till Internet och ladda ner innehållet\n- Välj ”Nej” för att avbryta åtgärden\n\nObs: Filerna laddas ner till programmets katalog och återanvänds automatiskt om de redan finns." +t MSG_355 "Radera disken i ⚠TYST LÄGE⚠ och installera:" +t MSG_356 "Du har valt alternativet ”tyst läge” för Windows‑installationen.\n\nDetta är ett avancerat alternativ, avsett för personer som vill skapa installationsmedia som inte visar några dialogrutor under Windows‑installationen och därför OVILLKORLIGT RADERAR den första upptäckta disken på målsystemet. Om du inte är försiktig kan användning av detta alternativ leda till OÅTERKALLELIG FÖRLUST AV DATA!\n\nDu MÅSTE läsa och godkänna alla följande påståenden för att fortsätta:" +t MSG_358 "Platsen för avbilden stöds inte" +t MSG_359 "Du kan inte använda en avbildning som ligger på målenheten, eftersom den enheten kommer att raderas helt. Det är som att försöka såga av grenen du sitter på!\n\nFlytta avbildningen till en annan plats och försök igen." +t MSG_360 "Det är säkert att lämna det här alternativet aktiverat även om du har en TPM eller mer RAM, eftersom det endast kringgår installationskraven och inte hindrar Windows från att använda all tillgänglig hårdvara." +t MSG_361 "För att det här alternativet ska fungera måste nätverket/Internet vara frånkopplat under installationen!" +t MSG_362 "Svara automatiskt ’nej’ på Windows‑installationsfrågorna som rör delning av data med Microsoft, i stället för att fråga användaren." +t MSG_363 "Du bör lämna det här alternativet aktiverat, om du inte är okej med att ’Windows To Go’ får åtkomst till interna diskar och tyst utför oåterkalleliga filsystemuppgraderingar." +t MSG_364 "Skapa automatiskt ett lokalt konto med det angivna användarnamnet, med ett tomt lösenord som måste ändras vid nästa inloggning." +t MSG_365 "Duplicera de regionala inställningarna från den här datorn (tangentbord, tidszon, valuta) i stället för att fråga användaren." +t MSG_366 "Kryptera inte systemdisken, om det inte uttryckligen begärs av användaren." +t MSG_367 "Använd det här alternativet endast om du vet vad S‑läge är och förstår att ditt system kan låsas i S‑läge även efter att du helt har raderat och installerat om Windows." +t MSG_368 "Använd det här alternativet om systemet du planerar att installera Windows på använder helt uppdaterade Secure Boot‑certifikat. Vid behov kan du använda ’Mosby’ för att uppdatera systemet." +t MSG_369 "Använd det här alternativet om du vill återkalla ytterligare potentiellt osäkra Windows‑startprogram, men med risken att även förhindra att standard‑Windowsmedia kan starta." +t MSG_370 "Förbättringar för bättre användarupplevelse: Inaktivera de flesta av de oönskade funktioner som Microsoft försöker tvinga på slutanvändare." +t MSG_371 "Om du använder det här alternativet måste du se till att koppla bort alla diskar från måldatorn, förutom den du vill installera Windows på, och inte lämna mediet anslutet till någon dator som du inte vill radera." +t MSG_372 "JAG KOMMER ATT se till att alla diskar utom Windows-disken är frånkopplade." +t MSG_373 "JAG KOMMER ATT se till att detta media inte är anslutet till en dator jag inte planerar radera." +t MSG_374 "JAG ACCEPTERAR att all dataförlust från detta alternativ är helt och fullt mitt ansvar." t MSG_900 "Rufus är ett program som hjälper dig formatera och skapa startbara USB-diskar, så som USB-minnen, minneskort, etc." t MSG_901 "Officiell webbplats: %s" t MSG_902 "Källkod: %s" @@ -14440,7 +15349,7 @@ t MSG_922 "Ladda ner UEFI-skal ISO-filer" ######################################################################### l "th-TH" "Thai (ไทย)" 0x041e -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -14578,7 +15487,7 @@ t MSG_080 "Rufus พบว่าขณะนี้ Windows กำลังดำ t MSG_081 "ไม่รองรับอิมเมจไฟล์นี้" t MSG_082 "อิมเมจไฟล์นี้ไม่สามารถบูตได้ หรืออาจจะมีการใช้วิธีการบูตอื่นๆ ที่ Rufus ไม่รองรับ" t MSG_083 "แทนที่ %s?" -t MSG_084 "ไฟล์ ISO นี้อาจมีการใช้เวอร์ชันที่ล้าสมัยของ '%s'\nซึ่งอาจทำให้เมนูการบูตไม่สามารถแสดงผลได้ถูกต้อง\n\nRufus สามารถดาวน์โหลดเวอร์ชันที่ใหม่กว่าให้คุณได้:\n- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'No' เพื่อใช้อิมเมจไฟล์อันเดิม\nหากไม่รู้จะเลือกวิธีใด ให้เลือก 'Yes'\n\nหมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และเมื่อไฟล์ '%s มีแล้ว ไฟล์จะถูกเลือกใช้โดยอัตโนมัติ" +t MSG_084 "ไฟล์ ISO นี้อาจมีการใช้เวอร์ชันที่ล้าสมัยของ '%s'\nซึ่งอาจทำให้เมนูการบูตไม่สามารถแสดงผลได้ถูกต้อง\n\nRufus สามารถดาวน์โหลดเวอร์ชันที่ใหม่กว่าให้คุณได้:\n- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'ไม่ใช่ (No)' เพื่อใช้อิมเมจไฟล์อันเดิม\nหากไม่รู้จะเลือกวิธีใด ให้เลือก 'ใช่ (Yes)'\n\nหมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และเมื่อไฟล์ '%s มีแล้ว ไฟล์จะถูกเลือกใช้โดยอัตโนมัติ" t MSG_085 "กำลังดาวน์โหลด %s" t MSG_086 "ยังไม่ได้เลือกอิมเมจไฟล์" t MSG_087 "สำหรับ %s NAND" @@ -14597,7 +15506,7 @@ t MSG_100 "ไฟล์ ISO นี้ประกอบไปด้วยไฟ t MSG_101 "ไม่รองรับรูปแบบ WIM" t MSG_102 "ระบบปฏิบัติการของคุณไม่สามารถแตกไฟล์แบบ WIM ได้ โดยไฟล์ WIM จำเป็นที่ต้องใช้ในการสร้าง Windows 7 ให้บูตได้แบบ EFI และ Windows Vista บน USB ซึ่งแก้ไขได้โดยการติดตั้ง 7-Zip เวอร์ชันล่าสุด\nต้องการเปิดหน้าดาวน์โหลด 7-zip หรือไม่?" t MSG_103 "ดาวน์โหลด %s?" -t MSG_104 "%s หรือใหม่กว่า จำเป็นต้องมี '%s' ติดตั้งไว้\nเนื่องจากไฟล์นี้มีขนาดใหญ่กว่า 100 KB และพบเจอได้ใน ISO: %s ซึ่งไม่ได้รวมไว้ในโปรแกรม Rufus\n\nRufus สามารถดาวน์โหลดไฟล์ดังกล่าวให้คุณได้:\n- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'No' คุณต้องการคัดลอกไฟล์ดังกล่าวด้วยตัวเอง\n\nหมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และเมื่อไฟล์ '%s มีแล้ว ไฟล์จะถูกเลือกใช้โดยอัตโนมัติ" +t MSG_104 "%s หรือใหม่กว่า จำเป็นต้องมี '%s' ติดตั้งไว้\nเนื่องจากไฟล์นี้มีขนาดใหญ่กว่า 100 KB และพบเจอได้ใน ISO: %s ซึ่งไม่ได้รวมไว้ในโปรแกรม Rufus\n\nRufus สามารถดาวน์โหลดไฟล์ดังกล่าวให้คุณได้:\n- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'ไม่ใช่ (No)' คุณต้องการคัดลอกไฟล์ดังกล่าวด้วยตัวเอง\n\nหมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และเมื่อไฟล์ '%s มีแล้ว ไฟล์จะถูกเลือกใช้โดยอัตโนมัติ" t MSG_105 "การยกเลิกอาจทำให้อุปกรณ์ไม่สามารถใช้การได้ !\nหากคุณยืนยันที่จะยกเลิก คลิกที่ปุ่ม ใช่" t MSG_106 "กรุณาเลือกโฟลเดอร์" t MSG_107 "ไฟล์ทั้งหมด" @@ -14606,9 +15515,9 @@ t MSG_110 "MS-DOS ไม่สามารถบูตจากไดรฟ์ t MSG_111 "ไม่รองรับขนาดของคลัสเตอร์นี้" t MSG_112 "การฟอร์แมต UDF volume ขนาดใหญ่อาจใช้เวลานาน โดยความเร็วการฟอร์แมต USB 2.0 โดยประมาณคือ %d:%02d ซึ่งในระหว่างการฟอร์แมตแถบแสดงความคืบหน้าอาจหยุดนิ่ง โปรดรอ!" t MSG_113 "UDF volume ขนาดใหญ่" -t MSG_114 "อิมเมจนี้ใช้ Syslinux %s%s แต่โปรแกรมนี้มีเฉพาะไฟล์ติดตั้งของ Syslinux %s%s \n\nโดยเวอร์ชันใหม่ของ Syslinux อาจไม่รองรับกับรุ่นที่ต่างกันไปไฟล์จำนวน 2 ไฟล์ต่อไปนี้จะถูกดาวน์โหลดจากอินเทอร์เน็ต ('ldlinux.sys' and 'ldlinux.bss'):\n- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'No' เมื่อคุณต้องการคัดลอกไฟล์ดังกล่าวด้วยตัวเอง\n\nหมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และไฟล์ จะถูกเลือกใช้โดยอัตโนมัติ" +t MSG_114 "อิมเมจนี้ใช้ Syslinux %s%s แต่โปรแกรมนี้มีเฉพาะไฟล์ติดตั้งของ Syslinux %s%s \n\nโดยเวอร์ชันใหม่ของ Syslinux อาจไม่รองรับกับรุ่นที่ต่างกันไปไฟล์จำนวน 2 ไฟล์ต่อไปนี้จะถูกดาวน์โหลดจากอินเทอร์เน็ต ('ldlinux.sys' and 'ldlinux.bss'):\n- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'ไม่ใช่ (No)' เมื่อคุณต้องการคัดลอกไฟล์ดังกล่าวด้วยตัวเอง\n\nหมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และไฟล์ จะถูกเลือกใช้โดยอัตโนมัติ" t MSG_115 "จำเป็นต้องดาวน์โหลดไฟล์" -t MSG_116 "อิมเมจนี้ใช้ Grub %s แต่โปรแกรมนี้มีเฉพาะไฟล์ติดตั้งของ Grub %s \n\nโดยเวอร์ชันใหม่ของ Grub อาจไม่รองรับกับรุ่นที่ต่างกันไป Rufus สามารถค้นหาอิมเมจของ Grub เวอร์ชันล่าสุด ('core.img') ที่เข้ากันได้กับอิมเมจไฟล์ที่คุณเลือก:\n- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'No' เพื่อใช้เวอร์ชันปัจจุบันที่ติดมากับ Rufus\n-เลือก 'Cancel' เพื่อยกเลิกการดำเนินการนี้\n\nหมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และไฟล์จะถูกเลือกใช้โดยอัตโนมัติหากไม่พบไฟล์ที่ใหม่กว่า ไฟล์เวอร์ชันปัจจุบันจะถูกใช้แทน" +t MSG_116 "อิมเมจนี้ใช้ Grub %s แต่โปรแกรมนี้มีเฉพาะไฟล์ติดตั้งของ Grub %s \n\nโดยเวอร์ชันใหม่ของ Grub อาจไม่รองรับกับรุ่นที่ต่างกันไป Rufus สามารถค้นหาอิมเมจของ Grub เวอร์ชันล่าสุด ('core.img') ที่เข้ากันได้กับอิมเมจไฟล์ที่คุณเลือก:\n- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'ไม่ใช่ (No)' เพื่อใช้เวอร์ชันปัจจุบันที่ติดมากับ Rufus\n-เลือก 'ยกเลิก (Cancel)' เพื่อยกเลิกการดำเนินการนี้\n\nหมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และไฟล์จะถูกเลือกใช้โดยอัตโนมัติหากไม่พบไฟล์ที่ใหม่กว่า ไฟล์เวอร์ชันปัจจุบันจะถูกใช้แทน" t MSG_117 "ตัวติดตั้ง Windows มาตรฐาน" t MSG_119 "คุณสมบัติไดรฟ์ขั้นสูง" t MSG_120 "คุณสมบัติการฟอร์แมตขั้นสูง" @@ -14811,6 +15720,8 @@ t MSG_319 "ละเว้นการทำ Boot Marker" t MSG_320 "กำลังรีเฟรชเค้าโครงพาร์ติชัน (%s)..." t MSG_321 "อิมเมจไฟล์ที่คุณใช้เป็นแบบ ISOHybrid แต่ผู้ผลิตไม่ได้ทำให้รองรับกับการคัดลอกไฟล์ ISO\nนั่นทำให้โหมดการเขียนแบบ DD image writing จะถูกเรียกใช้งาน" t MSG_322 "ไม่สามารถเปิดหรืออ่าน '%s' ได้" +t MSG_323 "เปิดใช้งาน SkuSiPolicy.p7b ในการติดตั้ง (ดูที่ KB5042562)" +t MSG_324 "การปรับปรุงคุณภาพการใช้งาน/QoL (ยกเลิกการบังคับใช้: Copilot, OneDrive, Outlook, Fast Startup, เป็นต้น)" t MSG_325 "ปรับใช้งานการปรับแต่งขั้นตอนการติดตั้ง Windows: %s" t MSG_326 "ปรับใช้งานการตั้งค่าของผู้ใช้..." t MSG_327 "โปรแกรมประสบการณ์ผู้ใช้งาน Windows" @@ -14823,18 +15734,43 @@ t MSG_333 "สร้างบัญชีผู้ใช้ด้วยชื่ t MSG_334 "ตั้งค่าภูมิภาคให้ตรงกับค่าที่ใช้บนคอมพิวเตอร์เครื่องนี้" t MSG_335 "ยกเลิกการใช้ BitLocker เข้ารหัสอุปกรณ์อัตโนมัติ" t MSG_336 "Log แบบถาวร" -t MSG_337 "มีความจำเป็นต้องดาวน์โหลดไฟล์ ('diskcopy.dll') จาก Microsoft เพื่อติดตั้ง MS-DOS:\n- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'No' เพื่อยกเลิก\n\nหมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และเมื่อไฟล์ '%s มีแล้ว ไฟล์จะถูกเลือกใช้โดยอัตโนมัติ" +t MSG_337 "มีความจำเป็นต้องดาวน์โหลดไฟล์ ('%s') จาก Microsoft เพื่อใช้ฟีเจอร์นี้:\n- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'ไม่ใช่ (No)' เพื่อยกเลิก\n\nหมายเหตุ: ไฟล์ใหม่จะถูกจัดเก็บในโฟลเดอร์ปัจจุบัน และเมื่อไฟล์ '%s มีแล้ว ไฟล์จะถูกเลือกใช้โดยอัตโนมัติ" t MSG_338 "ตรวจพบ UEFI bootloader ที่ถูกเพิกถอน" t MSG_339 "Rufus ตรวจพบว่าไฟล์ ISO ที่คุณเลือกมี UEFI bootloader ที่ถูกเพิกถอน ซึ่งตุณอาจจะเจอกับ%s เมื่อ SecureBoot เปิดใช้งานบนระบบ UEFI ที่ทันสมัย\n\n- ถ้าคุณได้ไฟล์ ISO นี้มาจากแหล่งที่ไม่น่าเชื่อถือ คุณควรตระหนักถึงความเป็นไปได้ที่ไฟล์ดังกล่าวอาจมี UEFI malware และหลีกเลี่ยงการบูตจากอิมเมจดังกล่าว\n- ถ้าคุณได้ไฟล์ ISO นี้มาจากแหล่งที่เชื่อถือได้ คุณควรพยายามค้นหาเวอร์ชันที่ทันสมัยกว่านี้ ซึ่งจะไม่ทำให้เกิดคำเตือนนี้" t MSG_340 "หน้าจอ \"Security Violation\"" t MSG_341 "หน้าจอ Windows Recovery (จอฟ้า; BSOD) พร้อมกับ '%s'" t MSG_342 "อิมเมจ VHDX ที่ถูกบีบอัด" t MSG_343 "อิมเมจ VHDX ที่ไม่บีบอัด" -t MSG_345 "มีความจำเป็นต้องดาวน์โหลดข้อมูลเพิ่มเติมจาก Microsoft เพื่อใช้งานฟังก์ชั่นนี้:\n- เลือก 'Yes' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'No' เพื่อยกเลิก" +t MSG_344 "ไฟล์อิมเมจสำหรับ Full Flash Update" +t MSG_345 "มีความจำเป็นต้องดาวน์โหลดข้อมูลเพิ่มเติมจาก Microsoft เพื่อใช้งานฟังก์ชั่นนี้:\n- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'ไม่ใช่ (No)' เพื่อยกเลิก" t MSG_346 "จำกัด Windows ให้อยู่ใน S-Mode (ไม่รองรับการยกเลิกการบังคับใช้บัญชี Microsoft)" t MSG_347 "โหมดผู้เชี่ยวชาญ" t MSG_348 "กำลังแตกไฟล์: %s" t MSG_349 "Rufus MBR" +t MSG_350 "ใช้งานบูตโหลดเดอร์ที่รับรองโดย 'Windows CA 2023' (ตัวเครื่องคอมพิวเตอร์ปลายทางต้องรองรับด้วย)" +t MSG_351 "กำลังตรวจสอบการเพิกถอนสิทธิ์ของบูตโหลดเดอร์แบบ UEFI..." +t MSG_352 "กำลังตรวจสอบการอัปเดตรายการเพิกถอนสิทธิ์ของ UEFI (DBX)..." +t MSG_353 "มีการอัปเดตรายการเพิกถอนสิทธิ์ (DBX) พร้อมใช้งานแล้ว" +t MSG_354 "Rufus ตรวจเจอเวอร์ชั่นอัพเดตที่ใหม่กว่าของไฟล์ DBX ซึ่งใช้สำหรับตรวจสอบการเพิกถอนสิทธิ์ของ UEFI Secure Boot คุณต้องการดาวน์โหลดไฟล์อัพเดตหรือไม่?\n- เลือก 'ใช่ (Yes)' เพื่อดาวน์โหลดไฟล์ผ่านอินเทอร์เน็ต\n- เลือก 'ไม่ใช่ (No)' เพื่อยกเลิกการดำเนินการ\n\nหมายเหตุ: ไฟล์จะถูกดาวน์โหลดลงในไดเรกทอรีของแอปพลิเคชัน และจะถูกนำกลับมาใช้ใหม่โดยอัตโนมัติหากมีไฟล์อยู่แล้ว" +t MSG_355 "⚠จะไม่มีการถามยืนยันซ้ำ⚠ ลบข้อมูลดิสก์ แล้วติดตั้ง:" +t MSG_356 "คุณเลือกที่จะใช้งานตัวเลือก การติดตั้ง Windows \"แบบเงียบ\"\n\nนี่คือตัวเลือกขั้นสูง ซึ่งสงวนไว้สำหรับผู้ที่ต้องการสร้างสื่อติดตั้งที่จะไม่ถามผู้ใช้ในระหว่างการติดตั้ง Windows ดังนั้นมันจะลบข้อมูลในดิสก์ตัวแรกที่ตรวจพบในระบบปลายทาง **โดยไม่มีเงื่อนไข** หากคุณไม่ระมัดระวัง การใช้ตัวเลือกนี้อาจส่งผลให้ **เกิดการสูญเสียข้อมูลอย่างถาวรและไม่สามารถกู้คืนได้!**\n\nคุณต้องอ่านและยอมรับข้อความต่อไปนี้ทั้งหมดเพื่อดำเนินการต่อ:" +t MSG_358 "ไม่รองรับตำแหน่งที่ตั้งของไฟล์อิมเมจ" +t MSG_359 "คุณไม่สามารถใช้ไฟล์อิมเมจที่อยู่ในไดรฟ์เป้าหมายได้ เนื่องจากไดรฟ์นั้นกำลังจะถูกลบข้อมูลทั้งหมด มันก็เหมือนกับการพยายามทำลายที่มั่นตัวเองอยู่นั่นแหละ!\n\nโปรดย้ายอิมเมจไปยังตำแหน่งอื่นแล้วลองใหม่อีกครั้ง" +t MSG_360 "การเปิดตัวเลือกนี้ทิ้งไว้มีความปลอดภัย ถึงแม้ว่าคุณจะมี TPM หรือแรมที่มากกว่าก็ตาม ตัวเลือกนี้มีผลแค่การข้าม ข้อกำหนดในการติดตั้ง เท่านั้น ไม่ได้ลดทอนการทำงานของ Windows ในการดึงประสิทธิภาพฮาร์ดแวร์มาใช้อย่างเต็มที่" +t MSG_361 "เพื่อให้ตัวเลือกนี้ทำงานได้ จะต้องปิดการเชื่อมต่อเครือข่าย/อินเทอร์เน็ตขณะทำการติดตั้งก่อน" +t MSG_362 "ตอบ 'ไม่ใช่ (no)' โดยอัตโนมัติ สำหรับคำถามในการตั้งค่า Windows ที่เกี่ยวกับการแชร์ข้อมูลให้กับ Microsoft โดยไม่ต้องเด้งถามผู้ใช้" +t MSG_363 "คุณควรจะเปิดตัวเลือกนี้ทิ้งไว้ ยกเว้นว่าคุณจะยอมรับได้หาก 'Windows To Go' เข้าถึงดิสก์ภายในเครื่อง และทำการอัปเกรดระบบไฟล์โดยอัตโนมัติ ซึ่งเป็นการดำเนินการที่ไม่สามารถย้อนกลับได้" +t MSG_364 "สร้างบัญชีผู้ใช้ภายในเครื่อง (Local account) ตามชื่อที่ระบุโดยอัตโนมัติ ซึ่งจะไม่มีรหัสผ่าน และอาจจะต้องเปลี่ยนรหัสเมื่อเข้าสู่ระบบครั้งถัดไป" +t MSG_365 "คัดลอกการตั้งค่าภูมิภาคจากพีซีปัจจุบัน (ภาษาแป้นพิมพ์, โซนเวลา, สกุลเงิน, ฯลฯ) โดยไม่ต้องเด้งถามผู้ใช้" +t MSG_366 "อย่าเข้ารหัสดิสก์ระบบ นอกเหนือจากว่าจะเป็นผู้ใช้งานจะเป็นผู้สั่งให้เข้ารหัสเอง" +t MSG_367 "โปรดใช้ตัวเลือกนี้เฉพาะในกรณีที่คุณทราบว่า S-Mode คืออะไร และเข้าใจว่าระบบของคุณอาจถูกล็อกให้อยู่ใน S-Mode ต่อไป แม้ว่าคุณจะทำการล้างข้อมูลทั้งหมดและติดตั้ง Windows ใหม่แล้วก็ตาม" +t MSG_368 "ใช้ตัวเลือกนี้หากระบบที่คุณต้องการติดตั้ง Windows มีการใช้ใบรับรอง Secure Boot ที่อัปเดตเป็นเวอร์ชันล่าสุดแล้ว หากจำเป็น คุณสามารถศึกษาการใช้เครื่องมือ 'Mosby' เพื่อทำการอัปเดตระบบของคุณได้" +t MSG_369 "ใช้ตัวเลือกนี้หากคุณต้องการเพิกถอนสิทธิ์บูตโหลดเดอร์ของ Windows เพิ่มเติมที่อาจจะไม่ปลอดภัย แต่โปรดทราบว่ามีความเสี่ยงที่จะทำให้สื่อติดตั้ง Windows มาตรฐานทั่วไปไม่สามารถบูตได้ด้วยเช่นกัน" +t MSG_370 "\"การปรับปรุงคุณภาพการใช้งาน (Quality of Life)\": ปิดการใช้งานคุณสมบัติส่วนใหญ่ที่ไม่พึงประสงค์ที่ Microsoft พยายามบังคับให้ผู้ใช้งานทั่วไปต้องใช้" +t MSG_371 "ถ้าหากคุณเลือกตัวเลือกนี้ กรุณาเช็คให้มั่นใจว่าคุณถอดดิสก์ที่เชื่อมกับพีซีเป้าหมาย เหลือไว้เฉพาะดิสก์ที่คุณต้องการจะติดตั้ง Windows เท่านั้น และห้ามเสียบตัวติดตั้ง (เช่น แฟลชไดรฟ์) ทิ้งไว้ในคอมพิวเตอร์เครื่องใดก็ตามที่คุณไม่ต้องการให้ข้อมูลถูกลบ\"" +t MSG_372 "ฉันจะตรวจสอบให้แน่ใจว่าดิสก์ทั้งหมด ยกเว้นดิสก์ที่ต้องการติดตั้ง Windows ถูกถอดการเชื่อมต่อแล้ว" +t MSG_373 "ฉันจะตรวจสอบให้แน่ใจว่าจะไม่เสียบสื่อนี้ทิ้งไว้กับพีซีที่ไม่ได้วางแผนจะลบข้อมูล" +t MSG_374 "ฉันยอมรับว่าการสูญหายของข้อมูลใดๆ ที่เกิดจากการใช้ตัวเลือกนี้เป็นความรับผิดชอบของฉันเองทั้งหมด" t MSG_900 "Rufus คือ โปรแกรมที่ช่วยฟอร์แมต และสร้างไดรฟ์บูต USB จาก USB keys, pendrives, memory sticks เป็นต้น" t MSG_901 "เว็บไซต์ทางการ: %s" t MSG_902 "ซอร์สโค้ด: %s" @@ -14856,7 +15792,7 @@ t MSG_922 "ดาวน์โหลดไฟล์ ISO ของ UEFI Shell" ######################################################################### l "tr-TR" "Turkish (Türkçe)" 0x041F -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -15042,7 +15978,7 @@ t MSG_129 "Az önce UEFI:NTFS önyükleyicisini kullanan bir ortam yarattınız. t MSG_130 "Windows yansı seçimi" t MSG_131 "Bu ISO birden çok Windows iyansısı içeriyor.\nLütfen bu yükleme için kullanmak istediğiniz yansıyı seçin:" t MSG_132 "Başka bir program ya da işlem bu sürücüye erişiyor. Yine de biçimlendirmek ister misiniz?" -t MSG_133 "Rufus, 1809 ISO tabanlı bir Windows To Go ortamı oluşturmaya çalıştığınızı algıladı.\n\nBir *MICROSOFT HATASI* nedeniyle, 'WppRecorder.sys' dosyasını 1803 sürümüyle el ile değiştirmediğiniz sürece, bu medya Windows açılışında (Ölü Mavi Ekran) çökecektir.\n\nAyrıca, Rufus'un bunu sizin için otomatik olarak çözememesinin nedeninin 'WppRecorder.sys' dosyasının Microsoft'un telif hakkı olan bir dosya olduğunu ve bu nedenle dosyanın yasal olarak bir kopyasını uygulamaya koyamayacağımızı unutmayın..." +t MSG_133 "Rufus, 1809 ISO'suna dayalı bir 'Windows To Go' medyası oluşturmaya çalıştığınızı algıladıi.\n\n*Bir MICROSOFT HATASI* nedeniyle, 'WppRecorder.sys' dosyasının 1803 sürümünündekini el ile değiştirmediğiniz sürece bu medya Windows önyüklemesi sırasında çökecektir (Mavi Ekran Hatası).\n\nAyrıca, Rufus'un bunu sizin için otomatik olarak düzeltememesinin nedeni, 'WppRecorder.sys' dosyasının Microsoft'un telif hakkıyla korunan bir dosyası olması ve bu nedenle dosyanın bir kopyasını uygulamaya yasal olarak yerleştiremememizdir..." t MSG_134 "MBR, bölüm şeması için seçildiğinden, Rufus bu ortam üzerinde yalnızca 2 TB'a kadar bölüm oluşturabilir ve bu da %s disk alanını kullanılamaz duruma getirir.\n\nDevam etmek istediğine emin misin?" t MSG_135 "Sürüm" t MSG_136 "Yayın" @@ -15229,6 +16165,8 @@ t MSG_319 "Önyükleme İşaretleyicisini Yoksay" t MSG_320 "Bölüm düzeni yenileniyor (%s)..." t MSG_321 "Seçtiğiniz yansı bir ISOHybrid, ancak yansı ISO/Dosya kopyalama modu ile uyumlu hale olrak oluşturulmamış.\nSonuç olarak, DD yansısı yazma modu uygulanacaktır." t MSG_322 "'%s' açılamıyor veya okunamıyor" +t MSG_323 "SkuSiPolicy.p7b yükleme sırasında uygulansın (Bakınız KB5042562)" +t MSG_324 "QoL(Yaşam Kalitesi) iyileştirmeleri (Copilot, OneDrive, Outlook, Hızlı Başlat vb. dayatılmasın)" t MSG_325 "Windows özelleştirmesi uygulanıyor: %s" t MSG_326 "Kullanıcı seçenekleri uygulanıyor..." t MSG_327 "Windows Kullanıcı Deneyimi" @@ -15241,7 +16179,7 @@ t MSG_333 "Kullanıcı adı ile yerel bir hesap oluşturun:" t MSG_334 "Bölgesel seçenekleri bu kullanıcınınkiyle aynı değerlere ayarlayın" t MSG_335 "BitLocker otomatik cihaz şifrelemesini devre dışı bırakın" t MSG_336 "Kalıcı günlük" -t MSG_337 "MS-DOS'u yüklemek için Microsoft'tan ek bir dosyanın ('diskcopy.dll') indirilmesi gerekir:\n- İnternete bağlanıp indirmek için 'Evet'i seçin\n- İşlemden vazgeçmek için 'Hayır'ı seçin\n\nNot: Dosya uygulamanın dizinine indirilecek ve varsa otomatik olarak yeniden kullanılacaktır." +t MSG_337 "Bu özelliği kullanmak için Microsoft'tan ek bir dosyanın ('%s') indirilmesi gerekmektedir:\n- İnternete bağlanıp indirmek için 'Evet'i seçin\n- İşlemden vazgeçmek için 'Hayır'ı seçin\n\nNot: Dosya uygulamanın dizinine indirilecek ve varsa otomatik olarak yeniden kullanılacaktır." t MSG_338 "İptal edilen UEFI önyükleyici algılandı" t MSG_339 "Rufus, seçtiğiniz ISO'nun iptal edilmiş bir UEFI önyükleyici içerdiğini ve tamamen güncel bir UEFI sisteminde Güvenli Önyükleme etkinleştirildiğinde %s oluşturacağını algıladı.\n\n- Bu ISO görüntüsünü saygın olmayan bir kaynaktan aldıysanız, bunun UEFI kötü amaçlı yazılım içerme olasılığını göz önünde bulundurmalı ve bu görüntüden önyükleme yapmaktan kaçınmalısınız.\n- Eğer güvenilir bir kaynaktan aldıysanız bu uyarıyı vermeyecek daha güncel bir versiyon bulmaya çalışmalısınız." t MSG_340 "\"Güvenlik İhlali\" ekranı" @@ -15254,6 +16192,30 @@ t MSG_346 "Windows'u S-Mode ile Kısıtlayın (çevrimiçi hesap atlamayla UYUMS t MSG_347 "Uzman Modu" t MSG_348 "Arşiv dosyaları çıkarılıyor: %s" t MSG_349 "Rufus MBR'yi kullanın" +t MSG_350 "'Windows CA 2023' imzalı önyükleyicileri kullanılsın (Uyumlu bir hedef bilgisayar gerektirir)" +t MSG_351 "UEFI önyükleyicisinin etkinlik durumu kontrol ediliyor..." +t MSG_352 "UEFI DBX güncellemeleri kontrol ediliyor..." +t MSG_353 "DBX güncellemesi mevcut" +t MSG_354 "Rufus, UEFI Güvenli Önyükleme etkinlik durum kontrollerini gerçekleştirmek için kullanılan DBX dosyalarının güncellenmiş bir sürümünü buldu. Bu güncellemeyi indirmek ister misiniz?\n- İnternete bağlanmak ve bu içeriği indirmek için 'Evet'i seçin\n- İşlemden vazgeçmek için 'Hayır'ı seçin\n\nNot: Dosyalar uygulamanın dizinine indirilecek ve mevcutsa otomatik olarak yeniden kullanılacaktır." +t MSG_355 "⚠SESSİZCE⚠ diski silin ve yükleyin:" +t MSG_356 "\"silent\" Katılımsız Windows kurulum seçeneğini kullanmayı seçtiniz.\n\nBu, Windows kurulumu sırasında kullanıcıya sorulmayan ve bu nedenle hedef sistemdeki ilk algılanan diski KOŞULSUZ OLARAK SİLEN bir ortam oluşturmak isteyenler için ayrılmış gelişmiş bir seçenektir. Dikkatli olmazsanız, bu seçeneği kullanmak GERİ DÖNÜŞÜ OLMAYAN VERİ KAYBINA neden olabilir!\n\nDevam etmek için aşağıdaki tüm ifadeleri okumanız ve kabul etmeniz GEREKİR:" +t MSG_358 "Desteklenmeyen yansı konumu" +t MSG_359 "Hedef sürücüde bulunan bir yansıyı, sürücü tamamen silineceğinden dolayı kullanamazsınız. Bu, oturduğunuz dalı kesmeye çalışmakla aynı şey!\n\nLütfen yansıyı farklı bir konuma taşıyın ve yeniden deneyin." +t MSG_360 "TPM veya daha fazla RAM'iniz olsa bile bu seçeneği etkin bırakmak güvenlidir, çünkü bu seçenek yalnızca kurulum gereksinimlerini atlar ve Windows'un mevcut tüm donanımı kullanmasını fiilen engellemez." +t MSG_361 "Bu seçeneğin çalışması için kurulum sırasında Ağ/Internet bağlantısının KESİLMESİ GEREKMEKTEDİR!" +t MSG_362 "Windows kurulumunda Microsoft ile veri paylaşımıyla ilgili sorulara kullanıcıya sormak yerine otomatik olarak 'hayır' yanıtını verilsin." +t MSG_363 "'Windows To Go'nun dahili disklere erişmesine ve geri döndürülemez dosya sistemi yükseltmeleri gerçekleştirmesine istemiyorsanız, bu seçeneği etkin bırakmalısınız." +t MSG_364 "Belirtilen kullanıcı adıyla otomatik olarak yerel bir hesap oluşturur; bu hesapta, bir sonraki oturum açmada değiştirilmesi gerekecek boş bir parola kullanılacaktır." +t MSG_365 "Kullanıcıdan onay istemek yerine, bu bilgisayardaki bölgesel ayarları (klavye, saat dilimi, para birimi) kopyalansın." +t MSG_366 "Kullanıcı tarafından özellikle tercih edilmediği sürece sistem diskini şifrelemeyin." +t MSG_367 "Bu seçeneği yalnızca S-Modu'nun ne olduğunu biliyorsanız ve Windows'u tamamen silip yeniden yükledikten sonra bile sisteminizin S-Modu'nda kilitli kalabileceğini anlıyorsanız kullanın." +t MSG_368 "Windows'u kurmayı planladığınız sistemde tamamen güncel Güvenli Önyükleme sertifikaları kullanılıyorsa bu seçeneği kullanın. Gerekirse, sisteminizi güncellemek için 'Mosby'yi kullanmayı düşünebilirsiniz." +t MSG_369 "Potansiyel olarak güvenli olmayan ek Windows önyükleme yükleyicilerinden vazgeçmek istiyorsanız, ancak bu işlem standart Windows medyalarının önyüklemesini de engelleme olasılığı varsa bu seçeneği kullanın." +t MSG_370 "\"Yaşam Kalitesi\" iyileştirmeleri: Microsoft'un son kullanıcılara zorla dayatmaya çalıştığı istenmeyen özelliklerin çoğunu devre dışı bırakın." +t MSG_371 "Bu seçeneği kullanıyorsanız, lütfen Windows'u kurmak istediğiniz disk dışındaki, hedef bilgisayardaki tüm diskleri çıkarın ve silmek istemediğiniz hiçbir bilgisayara disk takılı bırakmayın." +t MSG_372 "Yüklemek istediğim disk dışındaki tüm disklerin bağlantısının kesildiğinden EMİN OLACAĞIM." +t MSG_373 "Bu ortamı, silmeyi planlamadığım bir bilgisayara bağlı bırakmayacağımdan EMİN OLACAĞIM." +t MSG_374 "Bu seçenekten kaynaklanan herhangi bir veri kaybının tamamen bana ait olduğunu KABUL EDİYORUM." t MSG_900 "Rufus, USB anahtar/bellekler, hafıza kartları vb. USB sürücüleri, biçimlendirmeye ve önyüklemeli hale getirmeye yardımcı olan bir araçtır." t MSG_901 "Resmi site: %s" t MSG_902 "Kaynak Kodu: %s" @@ -15276,7 +16238,7 @@ t MSG_922 "UEFI Shell ISO'larını indirin" ######################################################################### l "uk-UA" "Ukrainian (Українська)" 0x0422 -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -15469,7 +16431,7 @@ t MSG_129 "Ви тільки що створили носій, що викори t MSG_130 "Вибір образу Windows" t MSG_131 "Цей ISO містить декілька образів Windows.\nБудь ласка, виберіть образ, котрий ви хочете використати для встановлення:" t MSG_132 "Інша програма чи процес отримують доступ до цього диска. Ви все одно бажаєте форматувати його?" -t MSG_133 "Rufus виявив, що ви намагаєтесь створити носій Windows To Go, заснований на версії ISO 1809\n\nЧерез *ПОМИЛКУ MICROSOFT* цей носій буде припиняти роботу під час завантаження Windows (Синій екран смерті), доки ви вручну не перенесете файл 'WppRecorder.sys' з версії 1803.\n\nТакож зауважте, що Rufus не може автоматично виправити цю помилку через те, що файл 'WppRecorder.sys' захищено авторським правом Microsoft, тому ми не можемо легально вставити копію файла в додаток..." +t MSG_133 "Rufus виявив, що ви намагаєтесь створити носій Windows To Go, заснований на версії ISO 1809.\n\nЧерез *ПОМИЛКУ MICROSOFT* цей носій буде припиняти роботу під час завантаження Windows (Синій екран смерті), доки ви вручну не перенесете файл 'WppRecorder.sys' з версії 1803.\n\nТакож зауважте, що Rufus не може автоматично виправити цю помилку через те, що файл 'WppRecorder.sys' захищено авторським правом Microsoft, тому ми не можемо легально вставити копію файла в додаток..." t MSG_134 "Через те, що для схеми розділів вибрано MBR, Rufus може створити розділ на цьому носії лише розміром до 2 Тб, що не дозволить використовувати %s дискового простору.\n\nВи бажаєте продовжити?" t MSG_135 "Версія" t MSG_136 "Реліз" @@ -15598,7 +16560,7 @@ t MSG_261 "Запис образа: %s" t MSG_262 "Підтримка ISO" t MSG_263 "Використання ПРАВИЛЬНОГО розміру одиниць" t MSG_264 "Видалення каталога '%s'" -t MSG_265 "Виявлено диск VMWare" +t MSG_265 "Виявлення дисків VMWare" t MSG_266 "Подвійний режим UEFI/BIOS" t MSG_267 "Застосування Windows-образа: %s" t MSG_268 "Застосування Windows-образа..." @@ -15656,6 +16618,8 @@ t MSG_319 "Ігнорувати Boot Marker" t MSG_320 "Оновлення макета розділу (%s)..." t MSG_321 "Вибраний образ має властивості ISOHybrid, проте його автор не потурбувався про сумісність з режимом копіювання ISO-файлів.\nЯк результат, буде примусово застосовано режим запису образів DD." t MSG_322 "Неможливо відкрити чи прочитати '%s'" +t MSG_323 "Застосувати SkuSiPolicy.p7b під час встановлення (дивись KB5042562)" +t MSG_324 "Покращення QoL (виключено Copilot, OneDrive, Outlook, Fast Startup, тощо)" t MSG_325 "Застосування налаштувань Windows: %s" t MSG_326 "Застосування параметрів користувача..." t MSG_327 "Інтерфейс користувача Windows" @@ -15668,7 +16632,7 @@ t MSG_333 "Створити локальний обліковий запис з t MSG_334 "Встановити регіональні параметри на такі самі, як у поточного користувача" t MSG_335 "Вимкнути автоматичне шифрування пристрою BitLocker" t MSG_336 "Постійний журнал" -t MSG_337 "Необхідно завантажити додатковий файл ('diskcopy.dll') з сайту Microsoft для встановлення MS-DOS:\n- Виберіть 'Так' для з'єднання з інтернетом та його завантаження\n- Виберіть 'Ні' для скасування операції\n\nПримітка: файл буде завантажено в каталог додатку та повторно використано за наявності." +t MSG_337 "Щоб скористатися цією функцією, необхідно завантажити додатковий файл ('%s') з веб-сайту Microsoft:\n- Виберіть 'Так' для з'єднання з інтернетом та його завантаження\n- Виберіть 'Ні' для скасування операції\n\nПримітка: файл буде завантажено в каталог додатку та повторно використано за наявності." t MSG_338 "Виявлено відкликаний завантажувач UEFI" t MSG_339 "Rufus виявив, що вибраний ISO містить відкликаний завантажувач UEFI, що буде створювати %s, коли в оновленій системі UEFI буде ввімкнено безпечне завантаження.\n\n- Якщо ви отримали цей образ з неперевіреного джерела, Вам слід розглянути можливість того, що він може містити зловмисне ПЗ і уникнути завантаження з нього.\n- Якщо ви отримали цей образ з довіреного джерела, Вам слід спробувати знайти більш актуальну версію, що не буде провокувати це попередження." t MSG_340 "вікно \"Security Violation\"" @@ -15681,6 +16645,30 @@ t MSG_346 "Обмежити Windows до S-Mode (НЕСУМІСНО з обхо t MSG_347 "Просунутий режим" t MSG_348 "Видобування архівованих файлів: %s" t MSG_349 "Використовувати Rufus MBR" +t MSG_350 "Використати завантажувач з підписом 'Windows CA 2023' (потребує сумісне обладнання)" +t MSG_351 "Перевірка відкликання завантажувача UEFI..." +t MSG_352 "Перевірка оновлень UEFI DBX..." +t MSG_353 "Доступне оновлення DBX" +t MSG_354 "Rufus знайшов оновлену версію файлів DBX, що використовуються для перевірки відкликання завантажувача UEFI. Чи хочете ви їх завантажити?\n- Виберіть 'Так', щоб завантажити файл з інтернету\n- Виберіть 'Ні', щоб скасувати операцію\n\nПримітка: Файли будуть завантажені в поточний каталог додатку і будуть використовуватися повторно за необхідності." +t MSG_355 "⚠ТИХЕ⚠ видалення та встановлення:" +t MSG_356 "Ви вибрали \"тихе\" встановлення Windows.\n\nЦе додаткова опція, призначена для тих, хто хоче створити завантажувальний диск, який не відволікає користувача під час встановлення Windows, тому ПРИМУСОВО СТИРАЄ перший виявлений диск у цільовій системі. Необачне використання цього параметра може привести до БЕЗПОВОРОТНОЇ ВТРАТИ ДАНИХ!\n\nЩоб продовжити, ви ПОВИННІ прочитати та прийняти всі наступні твердження:" +t MSG_358 "Непідтримуване розташування образа" +t MSG_359 "Ви не можете використовувати образ, що знаходиться на цільовому диску, так як цей диск буде повністю очищено. Як то кажуть \"не розхитуй човна, бо вивернешся\"!\n\nБудь ласка, перемістіть образ в інше місце і спробуйте знову." +t MSG_360 "Безпечно залишати цю опцію ввімкненою, навіть якщо у вас є TPM чи достатня кількість ОЗП, оскільки ця функція лише обходить вимоги до обладнання та не забороняє Windows використовувати всі наявні ресурси." +t MSG_361 "Щоб ця опція працювала необхідно вимкнути доступ до інтернету/мережі!" +t MSG_362 "Автоматично відповідати 'ні' на запитання Windows, щодо обміну даними з Microsoft за користувача." +t MSG_363 "Залиште цю опцію ввімкненою, щоб заборонити 'Windows To Go' доступ до внутрішніх дисків та виконання непомітних безповоротних змін у файловій системі." +t MSG_364 "Автоматично створити локальний обліковий запис з заданим іменем користувача, використовуючи порожній пароль, який необхідно буде змінити під час наступного входу в систему." +t MSG_365 "Скопіювати регіональні налаштування з цього ПК (розкладка клавіатури, часовий пояс, валюти) замість того, щоб запитувати користувача." +t MSG_366 "Не шифрувати системний диск, окрім випадків, коли цього вимагає користувач." +t MSG_367 "Ввімкніть цю опцію, якщо знаєте, що таке S-Mode та розумієте, що ваша система може бути заблокована в S-Mode навіть після повної очистки та перевстановлення Windows." +t MSG_368 "Ввімкніть цю опцію, якщо система, на яку ви плануєте встановити Windows має оновлені сертифікати завантажувача. За потреби, ви можете розглянути можливість використання 'Mosby' для оновлення системи." +t MSG_369 "Ввімкніть цю опцію, якщо хочете відкликати додаткові потенційно небезпечні завантажувачі Windows, але з можливістю також запобігти завантаженню стандартних носіїв Windows." +t MSG_370 "Покращення \"Quality of Life\": Вимкнення більшості небажаних функцій, які Microsoft намагається нав'язати кінцевому користувачу." +t MSG_371 "За використання цієї функції відключіть від ПК будь-які диски за виключенням того, на який ви хочете встановити Windows, а, також, не залишайте носій підключеним до будь-якого ПК, дані з якого ви не хочете стерти." +t MSG_372 "Я ЗАБЕЗПЕЧУ, щоб усі диски, крім того, на який я хочу встановити Windows, були відключені." +t MSG_373 "Я ЗАБЕЗПЕЧУ, що не залишу цей носій підключеним до ПК, який не планую видаляти." +t MSG_374 "Я ПОГОДЖУЮСЬ, що будь-яка втрата даних через цей параметр повністю лежить на мені." t MSG_900 "Rufus це утиліта, яка допомагає форматувати та створювати завантажувальні флешки, картки пам'яті, тощо." t MSG_901 "Офіційний сайт: %s" t MSG_902 "Сирцевий код: %s" @@ -15703,7 +16691,7 @@ t MSG_922 "Завантаження командної оболонки UEFI ISO ######################################################################### l "vi-VN" "Vietnamese (Tiếng Việt)" 0x042A -v 4.5 +v 4.14 b "en-US" g IDD_ABOUTBOX @@ -15711,23 +16699,23 @@ t IDD_ABOUTBOX "Thông tin về Rufus" t IDC_ABOUT_LICENSE "Giấy phép" g IDD_DIALOG -t IDS_DRIVE_PROPERTIES_TXT "Thuộc tính ổ đĩa" -t IDS_DEVICE_TXT "Thiết bị" -t IDS_BOOT_SELECTION_TXT "Phương thức khởi động" +t IDS_DRIVE_PROPERTIES_TXT "Thuộc tính thiết bị lưu" +t IDS_DEVICE_TXT "Thiết bị lưu" +t IDS_BOOT_SELECTION_TXT "Tùy chọn khởi động" t IDC_SELECT "Chọn" t IDS_IMAGE_OPTION_TXT "Tùy chọn tệp tin" -t IDS_PARTITION_TYPE_TXT "Định dạng phân vùng" -t IDS_TARGET_SYSTEM_TXT "Hệ thống áp dụng" -t IDC_LIST_USB_HDD "Danh sách ổ cứng USB" -t IDC_OLD_BIOS_FIXES "Thêm khắc phục cho BIOS cũ (phân vùng, sắp xếp...khác)" -t IDC_UEFI_MEDIA_VALIDATION "Bật xác thực phương tiện UEFI tại thời điểm chạy" +t IDS_PARTITION_TYPE_TXT "Sơ đồ phân vùng" +t IDS_TARGET_SYSTEM_TXT "Hệ thống khởi động" +t IDC_LIST_USB_HDD "Liệt kê danh sách ổ USB" +t IDC_OLD_BIOS_FIXES "Thêm các bản sửa lỗi cho BIOS cũ (phân vùng phụ, căn lề phân vùng, v.v...)" +t IDC_UEFI_MEDIA_VALIDATION "Bật xác minh thiết bị UEFI trong thời gian chạy" t IDS_FORMAT_OPTIONS_TXT "Tùy chọn định dạng" t IDS_FILE_SYSTEM_TXT "Hệ thống tập tin" -t IDS_CLUSTER_SIZE_TXT "Kích thước liên cung" -t IDS_LABEL_TXT "Nhãn ổ đĩa" +t IDS_CLUSTER_SIZE_TXT "Kích thước cụm" +t IDS_LABEL_TXT "Nhãn thiết bị lưu" t IDC_QUICK_FORMAT "Định dạng nhanh" -t IDC_BAD_BLOCKS "Kiểm tra khối hỏng trong thiết bị" -t IDC_EXTENDED_LABEL "Tạo tên mở rộng và tập tin biểu tượng" +t IDC_BAD_BLOCKS "Kiểm tra lỗi khối trên thiết bị lưu trữ" +t IDC_EXTENDED_LABEL "Tạo nhãn mở rộng và tệp tin biểu tượng" t IDS_STATUS_TXT "Trạng thái" t IDCANCEL "Đóng" t IDC_START "Bắt đầu" @@ -15745,7 +16733,7 @@ t IDC_LOG_SAVE "Lưu" g IDD_NEW_VERSION t IDCANCEL "Đóng" t IDD_NEW_VERSION "Kiểm tra cập nhật - Rufus" -t IDS_NEW_VERSION_AVAIL_TXT "Đã có phiên bản mới. Vui lòng tải phiên bản mới nhất!" +t IDS_NEW_VERSION_AVAIL_TXT "Đã có phiên bản mới hơn. Vui lòng tải phiên bản mới nhất!" t IDC_WEBSITE "Nhấn vào đây để truy cập website" t IDS_NEW_VERSION_NOTES_GRP "Ghi chú phát hành" t IDS_NEW_VERSION_DOWNLOAD_GRP "Tải xuống" @@ -15761,14 +16749,14 @@ t IDCANCEL "Đóng" t IDD_UPDATE_POLICY "Cập nhật chính sách và thiết lập" t IDS_UPDATE_SETTINGS_GRP "Thiết lập" t IDS_UPDATE_FREQUENCY_TXT "Kiểm tra cập nhật" -t IDS_INCLUDE_BETAS_TXT "Gồm bản thử nghiệm" +t IDS_INCLUDE_BETAS_TXT "Bao gồm bản thử nghiệm" t IDC_CHECK_NOW "Kiểm tra ngay" -t MSG_001 "Phát hiện tiến trình chạy đồng thời" -t MSG_002 "Ứng dụng Rufus khác đang chạy.\nVui lòng đóng ứng dụng đầu tiên trước khi chạy tiếp." -t MSG_003 "CẢNH BÁO: TẤT CẢ DỮ LIỆU TRÊN THIẾT BỊ '%s' SẼ BỊ HUỶ.\nĐể tiếp tục tiến trình này, nhấn OK. Để thoát nhấn HUỶ." +t MSG_001 "Đã phát hiện tiến trình chạy đồng thời" +t MSG_002 "Ứng dụng Rufus khác đang chạy.\nVui lòng đóng ứng dụng đầu tiên trước khi chạy một ứng dụng mới." +t MSG_003 "CẢNH BÁO: TẤT CẢ DỮ LIỆU TRÊN THIẾT BỊ '%s' SẼ BỊ XOÁ.\nĐể tiếp tục tiến trình này, nhấn OK. Để thoát nhấn HUỶ." t MSG_004 "Chính sách cập nhật Rufus" -t MSG_005 "Bạn có muốn cho phép Rufus kiểm tra cập nhật ứng dụng trực tuyến?" +t MSG_005 "Bạn có muốn cho phép Rufus kiểm tra các bản cập nhật ứng dụng trực tuyến?" t MSG_006 "Đóng" t MSG_007 "Huỷ" t MSG_008 "Có" @@ -15788,42 +16776,42 @@ t MSG_030 "%s (Mặc định)" t MSG_031 "BIOS (hoặc UEFI-CSM)" t MSG_032 "UEFI (không CSM)" t MSG_033 "BIOS hoặc UEFI" -t MSG_034 "Qua %d lần" -t MSG_035 "Qua %d lần %s" +t MSG_034 "Đạt %d lần" +t MSG_035 "Đã đạt %d lần %s" t MSG_036 "Tệp ISO" t MSG_037 "Ứng dụng" t MSG_038 "Huỷ bỏ" t MSG_039 "Khởi chạy" t MSG_040 "Tải xuống" -t MSG_041 "Tiến trình bị huỷ bởi người dùng" +t MSG_041 "Tiến trình đã bị huỷ bởi người dùng" t MSG_042 "Lỗi" t MSG_043 "Lỗi: %s" t MSG_044 "Tải xuống tập tin" t MSG_045 "Thiết bị lưu trữ USB (Cơ bản)" t MSG_046 "%s (Đĩa %d) [%s]" t MSG_047 "Đa phân vùng" -t MSG_048 "Rufus - Xoá bộ đệm" -t MSG_049 "Rufus - Huỷ" +t MSG_048 "Rufus - Đang xả bộ đệm" +t MSG_049 "Rufus - Hủy bỏ" t MSG_050 "Thành công." t MSG_051 "Lỗi không xác định khi đang định dạng." t MSG_052 "Không thể dùng hệ thống tập tin đã chọn cho thiết bị này." -t MSG_053 "Thiết bị từ chối truy cập." -t MSG_054 "Thiết bị được bảo vệ ghi." -t MSG_055 "Thiết bị đang được dùng bởi tiến trình khác. Vui lòng đóng mọi tiến trình có thể truy cập thiết bị." +t MSG_053 "Truy cập tới thiết bị đã bị từ chối." +t MSG_054 "Thiết bị đang được bảo vệ ghi." +t MSG_055 "Thiết bị đang được dùng bởi tiến trình khác. Vui lòng đóng mọi tiến trình có thể đang truy cập thiết bị." t MSG_056 "Định dạng nhanh không khả dụng với thiết bị này." -t MSG_057 "Tên ổ đĩa không hợp lệ." -t MSG_058 "Xử lý thiết bị không hợp lệ." -t MSG_059 "Kích cỡ liên cung đã chọn không thích hợp với thiết bị này." -t MSG_060 "Kích cỡ ổ đĩa không hợp lệ." -t MSG_061 "Vui lòng kết nối ổ gắn ngoài vào." +t MSG_057 "Nhãn ổ đĩa không hợp lệ." +t MSG_058 "Tham chiếu thiết bị không hợp lệ." +t MSG_059 "Kích thước cụm đã chọn không hợp lệ với thiết bị này." +t MSG_060 "Kích cỡ thiết bị không hợp lệ." +t MSG_061 "Vui lòng cắm thiết bị lưu trữ di động vào ổ." t MSG_062 "Đã nhận một lệnh không được hỗ trợ." t MSG_063 "Lỗi sắp xếp bộ nhớ." t MSG_064 "Lỗi đọc." t MSG_065 "Lỗi ghi." t MSG_066 "Cài đặt thất bại" t MSG_067 "Không thể mở thiết bị. Có thể nó đang được tiến trình khác sử dụng. Vui lòng cắm lại thiết bị và thử lại." -t MSG_068 "Không thể phân vùng ổ đĩa." -t MSG_069 "Không thể chép tập tin vào đĩa." +t MSG_068 "Không thể phân vùng thiết bị." +t MSG_069 "Không thể sao chép tệp vào thiết bị đích." t MSG_070 "Đã huỷ bởi người dùng." t MSG_071 "Không thể bắt đầu luồng." t MSG_072 "Kiểm tra khối hỏng chưa hoàn tất." @@ -15831,41 +16819,41 @@ t MSG_073 "Quét tệp ISO thất bại." t MSG_074 "Trích xuất tệp ISO thất bại." t MSG_075 "Không thể tái gắn ổ đĩa." t MSG_076 "Không thể vá/cài đặt tập tin cho việc khởi động." -t MSG_077 "Không thể định ký tự ổ đĩa." -t MSG_078 "Không thể gắn kết ổ GUID." +t MSG_077 "Không thể gán ký tự ổ đĩa." +t MSG_078 "Không thể gắn kết phân vùng GUID." t MSG_079 "Thiết bị chưa sẵn sàng." -t MSG_080 "Rufus đã phát hiện Windows vẫn đang làm sạch bộ đệm bên trong thiết bị USB.\n\nTuỳ thuộc vào tốc độ của thiết bị USB, hoạt động này có thể mất một thời gian dài để hoàn tất, đặc biệt với những tập tin lớn.\n\nChúng tôi khuyên bạn nên để Windows kết thúc để phòng hỏng dữ liệu. Nhưng nếu bạn cảm thấy quá lâu, hãy cứ tháo thiết bị ra..." +t MSG_080 "Rufus đã phát hiện Windows vẫn đang xả bộ đệm bên trong thiết bị USB.\n\nTuỳ thuộc vào tốc độ thiết bị USB của bạn, hoạt động này có thể mất một thời gian dài để hoàn tất, đặc biệt với những tập tin lớn.\n\nChúng tôi khuyên rằng bạn nên để Windows kết thúc để phòng hỏng dữ liệu. Nhưng nếu bạn cảm thấy quá lâu, hãy cứ tháo thiết bị ra..." t MSG_081 "Tệp tin không được hỗ trợ" -t MSG_082 "Tệp này không có khả năng khởi động hoặc sử dụng một phương thức khởi động hoặc nén không được Rufus hỗ trợ..." +t MSG_082 "Tệp này không có khả năng khởi động hoặc sử dụng một tuỳ chọn khởi động hoặc nén không được Rufus hỗ trợ..." t MSG_083 "Thay thế %s?" t MSG_084 "Tệp ISO này có vẻ là phiên bản lỗi thời của '%s'.\nCác menu khởi động có thể không hiện chính xác vì điều này.\n\nMột phiên bản mới có thể được tải xuống bởi Rufus để khắc phục vấn đề này:\n- Chọn 'Có' để kết nối với Internet và tải tập tin xuống\n- Chọn 'Không' để không thay đổi tập tin ISO đang có\nNếu bạn không biết phải làm gì, bạn nên chọn 'Có'.\n\nGhi chú: Tập tin mới sẽ được tải xuống vào thư mục hiện tại và một khi '%s' tồn tại trong đó, nó sẽ được tự động tái sử dụng." t MSG_085 "Đang tải xuống %s" -t MSG_086 "Chưa chọn tệp tin" +t MSG_086 "Chưa tệp tin nào được chọn" t MSG_087 "cho %s NAND" t MSG_088 "Tệp tin quá lớn" -t MSG_089 "Tệp tin quá lớn cho đĩa đã chọn." +t MSG_089 "Tệp tin quá lớn cho thiết bị đích đã chọn." t MSG_090 "ISO không được hỗ trợ" -t MSG_091 "Khi dùng loại hệ thống là UEFI, chỉ có tệp ISO có thể khởi động với EFI được hỗ trợ. Vui lòng chọn tệp phù hợp hoặc chọn loại hệ thống là BIOS." +t MSG_091 "Khi sử dụng kiểu hệ thống khởi động UEFI, chỉ hỗ trợ các tệp ISO có khả năng khởi động bằng EFI. Vui lòng chọn một tệp ISO có hỗ trợ EFI hoặc chuyển kiểu hệ thống khởi động sang BIOS." t MSG_092 "Hệ thống tập tin không được hỗ trợ" t MSG_093 "QUAN TRỌNG: Ổ ĐĨA NÀY CHỨA NHIỀU PHÂN VÙNG!!\n\nCó thể bao gồm phân vùng/ổ đĩa không có trong danh sách hoặc không hiển thị trong Windows. Nếu bạn tiến hành, bạn sẽ phải chịu trách nhiệm về mọi tổn thất dữ liệu trên những phân vùng này." t MSG_094 "Đã phát hiện nhiều phân vùng" t MSG_095 "Tệp tin DD" -t MSG_096 "Không thể dùng loại ISO này với hệ thống tập tin đã chọn. Vui lòng chọn một hệ thống tập tin hoặc ISO khác." +t MSG_096 "Không thể dùng loại ISO này với hệ thống tập tin đã chọn. Vui lòng chọn một hệ thống tập tin hoặc chọn tệp ISO khác." t MSG_097 "Chỉ có thể áp dụng '%s' nếu hệ thống tập tin là NTFS." -t MSG_098 "QUAN TRỌNG: Bạn đang cố cài đặt 'Windows To Go', nhưng ổ đĩa không có thuộc tính 'CỐ ĐỊNH'. Vì vậy, Windows có thể sẽ đóng băng tại điểm khởi động, do Microsoft không thiết kế nó để chạy với ổ đĩa có thuộc tính 'CÓ THỂ THÁO ĐƯỢC'. \n\nBạn vẫn muốn tiến hành?\n\nGhi chú: Thuộc tính 'CỐ ĐỊNH/CÓ THỂ THÁO ĐƯỢC' là một thuộc tính phần cứng chỉ có thể thay đổi bằng các công cụ tuỳ chỉnh từ nhà sản xuất ổ đĩa. Tuy nhiên những công cụ này HẦU NHƯ KHÔNG BAO GIỜ được cung cấp công khai..." +t MSG_098 "QUAN TRỌNG: Bạn đang cố cài đặt Windows To Go, nhưng ổ đĩa đích của bạn không có thuộc tính “CỐ ĐỊNH” (FIXED). Do đó, Windows có thể bị treo khi khởi động, vì Microsoft không thiết kế Windows To Go để hoạt động với ổ đĩa có thuộc tính “THÁO RỜI” (REMOVABLE).\n\nBạn có chắc chắn muốn tiếp tục không?\n\nLưu ý: Thuộc tính “CỐ ĐỊNH/THÁO RỜI” là một đặc điểm phần cứng và chỉ có thể thay đổi bằng công cụ đặc biệt từ nhà sản xuất ổ đĩa. Tuy nhiên, những công cụ này HẦU NHƯ KHÔNG bao giờ được cung cấp cho người dùng phổ thông..." t MSG_099 "Giới hạn tập tin hệ thống" t MSG_100 "Tệp ISO này có chứa một tập tin lớn hơn 4 GB, lớn hơn kích thước tập tin tối đa được hệ thống FAT hoặc FAT32 cho phép." t MSG_101 "Thiếu hỗ trợ WIM" t MSG_102 "Nền tảng của bạn không thể giải nén tệp từ lưu trữ WIM. Việc giải nén WIM là cần thiết để tạo đĩa USB khởi động Windows 7 và Windows Vista có hỗ trợ EFI. Bạn có thể khắc phục điều này bằng cách cài phiên bản mới nhất của 7-Zip.\nBạn muốn truy cập trang tải xuống của 7-Zip?" t MSG_103 "Tải xuống %s?" -t MSG_104 "%s hoặc mới hơn yêu cầu tập tin '%s' được cài đặt.\nVì tập tin này lớn hơn 100 KB, và luôn có trong ảnh ISO %s, nó không được kèm theo trong Rufus.\n\nRufus có thể tải xuống tập tin còn thiếu cho bạn:\n- Chọn 'Có' để kết nối với Internet và tải tập tin\n- Chọn 'Không' nếu bạn muốn tự chép tập tin này trên đĩa lúc khác\n\nGhi chú: tập tin sẽ được tải xuống thư mục hiện tại và khi '%s' tồn tại ở đó, nó sẽ tự động được tái sử dụng." +t MSG_104 "%s hoặc mới hơn yêu cầu tập tin '%s' được cài đặt.\nVì tập tin này lớn hơn 100 KB, và luôn có trong các tệp ISO %s, nó không được kèm theo trong Rufus.\n\nRufus có thể tải xuống tập tin còn thiếu cho bạn:\n- Chọn 'Có' để kết nối với Internet và tải tập tin\n- Chọn 'Không' nếu bạn muốn tự chép tập tin này trên đĩa lúc khác\n\nGhi chú: tập tin sẽ được tải xuống thư mục hiện tại và khi '%s' tồn tại ở đó, nó sẽ tự động được tái sử dụng." t MSG_105 "Huỷ bỏ có thể làm thiết bị rơi vào trạng thái KHÔNG THỂ SỬ DỤNG.\nNếu bạn chắc chắn muốn huỷ, chọn CÓ. Nếu không, hãy chọn KHÔNG." t MSG_106 "Vui lòng chọn thư mục" t MSG_107 "Tất cả tập tin" t MSG_108 "Nhật ký Rufus" t MSG_109 "0x%02X (Đĩa %d)" -t MSG_110 "MS-DOS không thể khởi động từ ổ đĩa dùng kích thước liên cung 64 kilobytes.\nVui lòng thay đổi kích thước liên cung hoặc dùng FreeDOS." -t MSG_111 "Kích thước liên cung không tương thích" +t MSG_110 "MS-DOS không thể khởi động từ ổ đĩa có kích thước cụm là 64 kilobyte.\nVui lòng thay đổi kích thước cụm hoặc sử dụng FreeDOS thay thế." +t MSG_111 "Kích thước cụm không tương thích" t MSG_112 "Định dạng ổ UDF lớn có thể mất nhiều thời gian. Với tốc độ của USB 2.0, thời gian định dạng dự kiến là %d:%02d, trong lúc này thanh tiến trình sẽ không thay đổi. Vui lòng kiên nhẫn!" t MSG_113 "Ổ UDF lớn" t MSG_114 "Tệp này dùng Syslinux %s%s nhưng ứng dụng này chỉ bao gồm tập tin cài đặt cho Syslinux %s%s.\n\nPhiên bản mới của Syslinux không tương thích với các phiên bản khác, và Rufus không thể kèm theo tất cả chúng, bạn phải tải xuống thêm hai tập tin từ Internet ('ldlinux.sys' và 'ldlinux.bss'):\n- Chọn 'Có' để kết nối tới Internet và tải xuống những tập tin này\n- Chọn 'Không' để huỷ hoạt động\n\nChú ý: Các tập tin sẽ được tải xuống vào thư mục ứng dụng hiện tại và sẽ được tự tái sử dụng nếu có." @@ -15885,8 +16873,8 @@ t MSG_128 "Chú ý quan trọng về %s" t MSG_129 "Bạn vừa mới tạo ổ đĩa sử dung UEFI:NTFS bootloader. Hãy nhớ rằng để khởi động được đĩa này BẠN PHẢI VÔ HIỆU SECURE BOOT.\nĐể hiểu tại sao nó quan trọng, xem trong phần 'Thông tin thêm' phía dưới." t MSG_130 "Chọn file ảnh Windows" t MSG_131 "File ISO này chứa nhiều tệp ảnh Windows.\nHãy chọn tệp ảnh bạn muốn sử dung cho việc cài đặt này:" -t MSG_132 "Có một chương trình hoặc tiến trình nào đó đang truy cập ổ. Bạn vẫn muốn định dạng ổ đĩa?" -t MSG_133 "Rufus nhận thấy bạn đang cố gắng tạo ổ đĩa Windows To Go dựa vào ISO phiên bản 1809.\n\nBởi vì một *LỖI CỦA MICROSOFT*, ổ đĩa này sẽ bị lỗi trong quá trình khởi động Windows (Màn hình xanh chết chóc), trừ khi bạn thay thế thủ công file 'WppRecorder.sys' của phiên bản 1803.\n\nCũng xin lưu ý rằng Rufus không thể tự động sửa lỗi này vì file 'WppRecorder.sys' thuộc bản quyền của Microsoft, vì vậy chúng tôi không thể nhúng file này vào chương trình..." +t MSG_132 "Có một chương trình hoặc tiến trình khác đang truy cập ổ. Bạn vẫn muốn định dạng ổ đĩa?" +t MSG_133 "Rufus nhận thấy bạn đang cố gắng tạo ổ đĩa Windows To Go dựa vào ISO phiên bản 1809.\n\nBởi vì một *LỖI CỦA MICROSOFT*, ổ đĩa này sẽ bị lỗi trong quá trình khởi động Windows (Màn hình xanh chết chóc), trừ khi bạn tự tay thay thế file 'WppRecorder.sys' của phiên bản 1803.\n\nCũng xin lưu ý rằng Rufus không thể tự động sửa lỗi này vì file 'WppRecorder.sys' thuộc bản quyền của Microsoft, vì vậy chúng tôi không thể nhúng file này vào chương trình..." t MSG_134 "Bởi vì MBR được chọn để định dạng phân vùng, Rufus chỉ có thể tạo phân vùng tới 2 TB cho ổ đĩa này, việc này sẽ bỏ phí %s không được sử dung.\n\nBạn có muốn tiếp tục?" t MSG_135 "Phiên bản" t MSG_136 "Phát hành" @@ -15912,8 +16900,8 @@ t MSG_156 "Mẫu thử: 0x%02X, 0x%02X, 0x%02X, 0x%02X" t MSG_157 "Đặt loại hệ thống tập tin" t MSG_158 "Kích thước tối thiểu của khối dữ liệu sẽ chiếm dụng trong hệ thống tập tin" t MSG_159 "Dùng trường này để đặt tên đĩa.\nCác ký tự quốc tế được chấp nhận." -t MSG_160 "Bật/tắt tuỳ chọn nâng cao" -t MSG_161 "Kiểm tra khối hỏng bằng mẫu thử" +t MSG_160 "Bật/tắt các tuỳ chọn nâng cao" +t MSG_161 "Kiểm tra thiết bị tìm khối lỗi bằng mẫu kiểm tra" t MSG_162 "Bỏ chọn mục này để dùng cách định dạng \"chậm\"" t MSG_163 "Cách thức để tạo phân vùng" t MSG_164 "Cách thức để tạo ổ đĩa có thể khởi động" @@ -15921,13 +16909,13 @@ t MSG_165 "Nhấn để chọn hoặc tải file ảnh..." t MSG_166 "Chọn mục này để cho phép hiện tên ổ đĩa toàn hệ thống và đặt biểu tượng thiết bị (khởi tạo autorun.inf)" t MSG_167 "Cài đặt bộ khởi động UEFI, cùng với việc tiến trình xác thực MD5Sum của phương tiện" t MSG_169 "Tạo một phân vùng ẩn khác và thử sắp xếp ranh giới phân vùng.\nĐiều này có thể cải thiện khả năng phát hiện khởi động cho BIOS cũ." -t MSG_170 "Kích hoạt liệt kê ổ cứng USB trong máy. DÙNG CẨN TRỌNG!!!" +t MSG_170 "Bật hiển thị các ổ cứng gắn ngoài qua USB. TỰ CHỊU RỦI RO KHI SỬ DỤNG!!!" t MSG_171 "Bắt đầu hoạt động định dạng.\nViệc này sẽ TIÊU HUỶ mọi dữ liệu trên đĩa đã chọn!" t MSG_172 "Chữ kí tải xuống không hợp lệ" t MSG_173 "Nhấn để chọn..." t MSG_174 "Rufus - Tiện ích Định dạng USB Đáng tin cậy" t MSG_175 "Phiên bản %d.%d (Bản dựng %d)" -t MSG_176 "Bản dịch tiếng Việt:\\line• thanhtai2009 \\line• caobach \\line• VNSpringRice " +t MSG_176 "Bản dịch Tiếng Việt:\\line• thanhtai2009 \\line• caobach \\line• Nguyễn Quang Minh (MinhNQ101) \\line• Trần Thái An " t MSG_177 "Báo lỗi hoặc yêu cầu cải tiến tại:" t MSG_178 "Các bản quyền bổ sung:" t MSG_179 "Chính sách cập nhật:" @@ -16030,15 +17018,15 @@ t MSG_276 "Ghi với chế độ %s (Khuyến cáo)" t MSG_277 "Ghi với chế độ %s" t MSG_278 "Đang kiểm tra các tiến trình xung đột..." t MSG_279 "Không có khả năng khởi động" -t MSG_280 "Đĩa hoặc tệp tin" +t MSG_280 "Đĩa hoặc tệp tin ISO" t MSG_281 "%s (Vui lòng chọn)" -t MSG_282 "Khoá ổ USB đặc biệt" +t MSG_282 "Chặn truy cập ổ USB từ chương trình khác" t MSG_283 "Chữ ký không hợp lệ" t MSG_284 "Tập tin thực thi đã tải xuống thiếu chữ ký số." t MSG_285 "Tập tin thực thi đã tải xuống được ký bởi '%s'.\nĐây không phải chữ ký số chúng tôi công nhận và có thể xác định là một dạng hoạt động nguy hiểm...\nBạn chắc muốn chạy tập tin này?" t MSG_286 "Đang ghi đè giá trị 0 lên ổ: %s" t MSG_287 "Phát hiện ổ đĩa tháo được không phải USB" -t MSG_288 "Thiếu đặc quyền" +t MSG_288 "Thiếu quyền quản trị" t MSG_289 "Ứng dụng này chỉ có thể chạy với đặc quyền quản trị" t MSG_290 "Lập chỉ mục tập tin" t MSG_291 "Chọn phiên bản" @@ -16058,7 +17046,7 @@ t MSG_304 "Tạo file ảnh ổ đĩa từ thiết bị được chọn" t MSG_305 "Sử dụng tùy chọn này để chỉ thị rằng hoặc bạn muốn cài Windows lên một ổ đĩa khác, hoặc nếu bạn muốn chạy Windows trực tiếp từ thiết bị này (Windows To Go)." t MSG_306 "Đang ghi đè nhanh giá trị 0 lên ổ đĩa: %s" t MSG_307 "điều này có thể mất một thời gian" -t MSG_308 "phát hiện VHD" +t MSG_308 "Phát hiện VHD" t MSG_309 "Lưu trữ đã nén" t MSG_310 "ISO bạn đã chọn sử dụng UEFI và đủ nhỏ để ghi dưới dạng Phân vùng hệ thống EFI (ESP). Ghi vào một ESP, thay vì ghi vào một phân vùng dữ liệu chung chiếm toàn bộ đĩa, có thể thích hợp hơn đối với một số loại cài đặt.\n\nVui lòng chọn chế độ mà bạn muốn sử dụng để viết hình ảnh này:" t MSG_311 "Sử dụng %s (tại cửa sổ chính của phần mềm) để thực thi." @@ -16073,19 +17061,21 @@ t MSG_319 "Bỏ qua đánh dấu khởi động" t MSG_320 "Đang làm mới bố cục phân vùng (%s)..." t MSG_321 "Hình ảnh bạn đã chọn là một ISOHybrid, nhưng những người tạo ra nó đã không làm cho nó tương thích với chế độ sao chép ISO/Tệp.\nDo đó, chế độ ghi hình ảnh DD sẽ được thực thi." t MSG_322 "Không thể mở hoặc đọc '%s'" +t MSG_323 "Áp dụng SkuSiPolicy.p7b trong khi cài đặt (Xem KB5042562)" +t MSG_324 "Những cải \"QoL\" (Không ép buộc Copilot, OneDrive, Outlook, Khởi động Nhanh, v.v.)" t MSG_325 "Đang áp dụng tuỳ biến Windows: %s" t MSG_326 "Đang áp dụng các cài đặt người dùng..." -t MSG_327 "Trải nghiệm người dùng Windows" +t MSG_327 "Trải nghiệm Người dùng Windows" t MSG_328 "Tuỳ biến cài đặt Windows?" t MSG_329 "Loại bỏ yêu cầu 4GB+ RAM, Secure Boot và TPM 2.0" t MSG_330 "Loại bỏ yêu cầu tài khoản Microsoft trực tuyến" t MSG_331 "Loại bỏ thu thập thông tin (Bỏ qua các câu hỏi riêng tư)" t MSG_332 "Ngăn cản Windows To Go truy cập ổ đĩa trong" -t MSG_333 "Tạo tài khoản nội bộ với tên:" +t MSG_333 "Tạo tài khoản nội bộ với tên người dùng:" t MSG_334 "Đặt các cài đặt địa phương cùng giá trị với người dùng hiện tại" t MSG_335 "Vô hiệu tự động mã hoá thiết bị BitLocker" -t MSG_336 "Nhật ký" -t MSG_337 "Một tệp tin bổ sung ('diskcopy.dll') phải được tải về từ Microsoft để cài đặt MS-DOS:\n- Chọn 'Có' để kết nối tới Internet và tải nó xuống\n- Chọn 'Không' để huỷ tiến trình\n\nGhi chú: Tệp tin sẽ được tải xuống tại đường dẫn của phần mềm và sẽ được tự động tái sử dụng nếu có sẵn." +t MSG_336 "Nhật ký lưu vĩnh viễn" +t MSG_337 "Một tệp tin bổ sung ('%s') cần được tải xuống từ Microsoft để sử dụng tính năng này:\n- Chọn 'Có' để kết nối tới Internet và tải nó xuống\n- Chọn 'Không' để huỷ tiến trình\n\nGhi chú: Tệp tin sẽ được tải xuống tại đường dẫn của phần mềm và sẽ được tự động tái sử dụng nếu có sẵn." t MSG_338 "Đã phát hiện bộ khởi động UEFI bị thu hồi" t MSG_339 "Rufus đã phát hiện ra rằng tệp ISO bạn đã chọn có chứa một bộ khởi động UEFI đã bị thu hồi và nó sẽ tạo ra %s, khi Secure Boot được kích hoạt trên một hệ thống UEFI được cập nhật đầy đủ và mới nhất.\n\n- Nếu bạn sở hữu tệp ISO này từ một nguồn không đáng tin cậy, bạn nên cân nhắc khả năng có thể chứa mã độc UEFI và tránh khởi động từ nó.\n- Nếu bạn sở hữu từ một nguồn uy tín, bạn nên thử tìm một bản mới hơn, theo đó cảnh báo này sẽ không hiện ra." t MSG_340 "một màn hình \"Vi phạm Bảo mật\"" @@ -16093,12 +17083,36 @@ t MSG_341 "một Màn hình Khôi phục Windows (BSOD) với '%s'" t MSG_342 "Tệp VHDX đã nén" t MSG_343 "Tệp VHD chưa nén" t MSG_344 "Ghi Đầy đủ Tệp Cập nhật" -t MSG_345 "Một vài dữ lieu phải được tải xuống từ Microsoft để sử dụng tính năng này:\n- Chọn 'Có' để kết nối tới Internet và tải xuống nó\n- Chọn 'Không' để huỷ tiến trình" +t MSG_345 "Một vài dữ liệu phải được tải xuống từ Microsoft để sử dụng tính năng này:\n- Chọn 'Có' để kết nối tới Internet và tải xuống nó\n- Chọn 'Không' để huỷ tiến trình" t MSG_346 "Giới hạn Windows vào S-Mode (KHÔNG TƯƠNG THÍCH với việc bỏ qua tài khoản trực tuyến)" t MSG_347 "Chế độ Chuyên nghiệp" t MSG_348 "Đang giải nén tệp lưu trữ: %s" t MSG_349 "Sử dụng Rufus MBR" -t MSG_900 "Rufus là một tiện ích giúp định dạng và tạo khả năng khởi động cho USB, chẳng hạn như thẻ USB/đĩa di động, thẻ nhớ, vv." +t MSG_350 "Sử dụng bootloader đã được ký bởi chứng chỉ “Windows UEFI CA 2023” (Cần có PC tương thích)" +t MSG_351 "Đang kiểm tra trạng thái thu hồi của bootloader UEFI..." +t MSG_352 "Đang kiểm tra cập nhật cơ sở dữ liệu chặn (DBX) của UEFI…" +t MSG_353 "Đã phát hiện bản cập nhật DBX của UEFI" +t MSG_354 "Rufus đã phát hiện phiên bản cập nhật của các tệp DBX, được dùng để kiểm tra thu hồi Secure Boot trong UEFI. Bạn có muốn tải bản cập nhật này không?\n- Chọn “Có” để kết nối Internet và tải nội dung này.\n- Chọn “Không” để hủy thao tác.\n\nLưu ý: Các tệp sẽ được tải về thư mục của ứng dụng và sẽ tự động được sử dụng lại nếu đã có sẵn." +t MSG_355 "Xoá sạch ổ cứng và cài đặt ⚠MỘT CÁCH ÂM THẦM⚠:" +t MSG_356 "Bạn đã lựa chọn phương thức cài đặt Windows \"im lặng\".\n\nĐây là một tuỳ chọn nâng cao, dành riêng cho những người muốn tạo một bản cài đặt không thông báo cho người dung xuyên suốt quá trình cài đặt Windows và qua đó XOÁ SẠCH VÔ ĐIỀU KIỆN ổ đĩa được nhận diện đầu tiên. Nếu bạn không cẩn than, sử dụng tuỳ chọn nào có thể gây ra MẤT HOÀN TOÀN DỮ LIỆU\n\nBạn PHẢI đọc và đồng ý với tất cả các điều khoản sau để tiếp tục:" +t MSG_358 "Vị trí tập tin ảnh đĩa không được hỗ trợ" +t MSG_359 "Bạn không thể sử dụng một ảnh đĩa nằm trên thiết bị mục tiêu, vì thiết bị đó sẽ bị xoá hoàn toàn. Nó giống như việc bạn tự chặt cành cây mà bạn đang đứng lên vậy!\n\nVui lòng di chuyển ảnh đĩa tới một vị trí khác và thử lại." +t MSG_360 "Việc bật tuỳ chọn này là hoàn toàn an toàn kể cả khi bạn có TPM hay nhiều RAM hơn, vì tuỳ chọn này chỉ bỏ qua nhừng yêu cầu cài đặt và không ngăn Windows sử dụng mọi tài nguyên phần cứng có thể." +t MSG_361 "Để tuỳ chọn này có hiệu quả, các mạng PHẢI được ngắt kết nối trong quá trình cài đặt!" +t MSG_362 "Tự động trả lời 'không' cho những câu hỏi liên quan tới việc chia sẻ dữ liệu cho Microsoft, thay vì thông báo cho người dùng." +t MSG_363 "Bạn nên để tuỳ chọn này ở mức 'Bật', trừ khi bạn ổn với việc Windows To Go truy cập vào các thiết bị nội bộ và âm thầm tạo ra những bản cập nhật hệ thống không thể hoàn tác." +t MSG_364 "Tự động tạo một tài khoản nội bộ với tên người dùng đã nêu, cùng một mật khẩu rỗng sẽ cần phải thay đổi trong lần đăng nhập tiếp theo." +t MSG_365 "Sao chép những cài đặt về vùng từ PC này (bàn phím, múi giờ, đơn vị), thay vì thông báo cho người dùng." +t MSG_366 "Không mã hoá ổ đĩa hệ thống, trừ khi được người dùng đích danh yêu cầu." +t MSG_367 "Chỉ sử dụng tuỳ chọn này khi bạn biết S-Mode là gì và bạn hiểu rằng hệ thống của bạn có thể bị khoá ở S-Mode kể cả khi bạn xoá sạch và cài đặt lại Windows." +t MSG_368 "Dùng tuỳ chọn này nếu hệ thống bạn muốn cài đặt Windows đang sử dụng những chứng chỉ Secure Boot (chế độ khởi động bảo mật) mới nhất. Nếu cần thiết, bạn có thể tìm hiểu việc dùng 'Mosby' để cập nhật hệ thống của bạn." +t MSG_369 "Dùng tuỳ chọn này nếu bạn muốn thu hồi những trình khởi động Windows có nguy cơ, nhưng cũng có khả năng ngăn ảnh đĩa Windows cơ bản khởi động." +t MSG_370 "Những nâng cấp \"tiện ích trải nghiệm\": Vô hiệu hoá đa số những tính năng không mong muốn Microsoft đang cố nhồi nhét cho người dùng." +t MSG_371 "Nếu bạn sử dụng tuỳ chọn này, hãy chắc chắn rằng bạn đã ngắt kết nối tất cả các ổ đĩa khỏi PC đích, ngoại trừ ổ bạn muốn cài Windows, cũng như là không cắm ảnh đĩa vào bất kì PC nào bạn không muốn xoá sạch." +t MSG_372 "TÔI SẼ đảm bảo tất cả ổ đĩa, trừ ổ đĩa cài Windows, đều được ngắt kết nối." +t MSG_373 "TÔI SẼ đảm bảo không để thiết bị này kết nối với PC mà tôi không có ý định xóa dữ liệu." +t MSG_374 "TÔI ĐỒNG Ý rằng mọi tổn thất dữ liệu do tùy chọn này hoàn toàn thuộc trách nhiệm của tôi." +t MSG_900 "Rufus là một tiện ích giúp định dạng và tạo khả năng khởi động cho các thiết bị USB, ví dụ như thẻ USB/đĩa di động, thẻ nhớ, v.v..." t MSG_901 "Trang web chính thức: %s" t MSG_902 "Mã nguồn: %s" t MSG_903 "Nhật ký thay đổi: %s" diff --git a/res/loc/translation_check.py b/res/loc/translation_check.py deleted file mode 100644 index a41d4613..00000000 --- a/res/loc/translation_check.py +++ /dev/null @@ -1,181 +0,0 @@ -#! /usr/bin/env python3 -# -*- coding=utf-8 -*- - -# LIMITATIONS -# this script was written as fast as possible so it is broken/minimalistic: -# it assumes the first language in rufus.loc in English -# written for 1.0.23, things may have changes since then -# horrible code below -# in multiline messages checks only first one if is the same as in English (should be enough for now) - -import sys -# regex -import re -# splitting by "quotes" -import shlex -# pretty print for debug -import pprint - -# global variables, I'm no python expert so I'll just dump everything here -languages = [] -unavailable = [] -untranslated = [] -version = "0.0.0" -ignored_messages = ['IDOK', 'MSG_020', 'MSG_021', 'MSG_022', 'MSG_023', 'MSG_024', 'MSG_025', 'MSG_026', 'MSG_027', 'MSG_028', 'MSG_118'] - -class Language: - code = "xx-XX" - name = "None" - version = "0.0.0" - base = "en-US" - groups = {} - #{ "group" => { "MNEMONIC => "transl" }, group2 = (...) } - def __init__(self): - self.groups = {} - - def get_current_group(self): - if len(self.groups) > 0: - return list(self.groups.keys())[len(self.groups)-1] - else: - return "none" - def get_current_message(self): - current_group = self.get_current_group() - if len(self.groups[current_group]) > 0: - return list(self.groups[current_group].keys())[len(self.groups[current_group])-1] - else: - return "none" - - -def print_no_new(data): - print(data, end="") - -def load_languages(): - print_no_new("loading rufus.loc file...\t") - sys.stdout.flush() - #load file - lines = [line.strip() for line in open("rufus.loc", "r", encoding="utf8")] - - # remove comments - #TODO properly remove comments, now it'll break messages with "#" in them, I just assumes there aren't any - #lines = [re.sub(re.compile("#(.*)?" ) ,"" ,line) for line in lines] - # remove empty lines - #lines = filter(None, lines) - - i = -1 - exceptions = [] - for index, line in enumerate(lines): - try: - if line != "" and line[0] != "#": - if line[0] == "l": - #this is language declaration - i += 1 - temp_language = Language() - temp_language.name = shlex.split(line)[2] - temp_language.code = shlex.split(line)[1] - languages.append(temp_language) - # print("current language: "+languages[i].name) - - elif line[0] == "v": - #this is language declaration - version = line.split(" ")[1] - languages[i].version = line.split(" ")[1] - elif line[0] == "b": - languages[i].base = shlex.split(line)[1] - if line != "b \"en-US\"": - print(languages[i].name + " is based on another translation: " + languages[i].base) - elif line[0] == "g": - languages[i].groups[shlex.split(line)[1]] = {} - # print("current group: "+languages[i].get_current_group()) - elif line[0] == "t": - pass - try: - temp_translation = shlex.split(line) #errors - except ValueError as err: - exceptions.append(str(err)+" in line "+ str(index+1)+": "+line) - languages[i].groups[languages[i].get_current_group()][temp_translation[1]] = temp_translation[2] - #print("cur transl: "+languages[i].get_current_message()) - elif line[0] == "\"": - pass - elif line[0] == "a": - pass #only RTL indication as for now - else: - raise Exception("unknown line "+str(index+1)+ ": "+line) - except Exception as error: - exceptions.append("Error: "+ repr(error)) - - - if len(exceptions) > 0: - print("[WARNING]") - print("\n".join(exceptions)) - else: - print("[OK]") - print() - print ("Found " + str(len(languages)) + " languages") - version = languages[0].version - print("Assuming " + version + " is the latest version. Only languages with this version will be checked...") - #comment if you want to check every single language, not only newest versions - languages[:] = [language for language in languages if language.version==version] - print (str(len(languages)) + " languages in " + languages[0].version + " version:") - print ("\n".join(language.name for language in languages)) - print() - -def check_unavailable(): - print_no_new("Checking for possible missing messages...\t") - sys.stdout.flush() - #for groups in english - #every lang - #does group exist - #for strings in groups - #does it exist - for group in languages[0].groups: - for language in languages[1::]: - if group not in language.groups: - unavailable.append("Language " + language.name + " is missing group '" + group + "'") - else: - for string in languages[0].groups[group]: - if string not in language.groups[group] and string not in ignored_messages: - unavailable.append("Language " + language.name + " is missing message '" + string + "'") - # print output - if len(unavailable) > 0: - print("[WARNING]") - print("Possible missing messages:") - print("\n".join(unavailable)) - else: - print("[OK]") - print() - -def check_untranslated(): - print_no_new("Checking for possible untranslated messages...\t") - sys.stdout.flush() - #evyerything but english - #for group - #for string - #transl==english? - for language in languages[1::]: - for group in language.groups: - for string in language.groups[group]: - try: - if language.groups[group][string] == languages[0].groups[group][string] and string not in ignored_messages: - untranslated.append("Language " + language.name + ": message '" + string + "' has the same translation as English") - except KeyError as error: - untranslated.append("Language " + language.name + ": message '" + string + "' doesn't exist in English") - # print output - if len(untranslated) > 0: - print("[WARNING]") - print("Possible untranslated messages:") - print("\n".join(untranslated)) - else: - print("[OK]") - print() - -def main(): - print("Rufus translation helper tool, proof of concept/MVP") - load_languages() - #pp = pprint.PrettyPrinter(indent=4) - #pp.pprint(languages[2].groups) - check_unavailable() - check_untranslated() - -#load main only in ran as stand-alone script -if __name__ == "__main__": - main() diff --git a/res/md5/bootaa64.efi b/res/md5/bootaa64.efi index ac57a169..65ae3b5a 100644 Binary files a/res/md5/bootaa64.efi and b/res/md5/bootaa64.efi differ diff --git a/res/md5/bootarm.efi b/res/md5/bootarm.efi index 2211a255..9f940182 100644 Binary files a/res/md5/bootarm.efi and b/res/md5/bootarm.efi differ diff --git a/res/md5/bootia32.efi b/res/md5/bootia32.efi index 4eeb657a..9a8b6740 100644 Binary files a/res/md5/bootia32.efi and b/res/md5/bootia32.efi differ diff --git a/res/md5/bootloongarch64.efi b/res/md5/bootloongarch64.efi index 0a06b633..a9dded11 100644 Binary files a/res/md5/bootloongarch64.efi and b/res/md5/bootloongarch64.efi differ diff --git a/res/md5/bootriscv64.efi b/res/md5/bootriscv64.efi index f870dd28..d633dda1 100644 Binary files a/res/md5/bootriscv64.efi and b/res/md5/bootriscv64.efi differ diff --git a/res/md5/bootx64.efi b/res/md5/bootx64.efi index 94ccb200..1cfaa95f 100644 Binary files a/res/md5/bootx64.efi and b/res/md5/bootx64.efi differ diff --git a/res/md5/readme.txt b/res/md5/readme.txt index 069a3f6c..6a92a5ac 100644 --- a/res/md5/readme.txt +++ b/res/md5/readme.txt @@ -1,3 +1,4 @@ This directory contains the uefi-md5sum bootloaders added by Rufus for media validation. +The aa64, ia32 and x64 versions are signed for Secure Boot. The others are not. See https://github.com/pbatard/uefi-md5sum for details. diff --git a/loadcfg.py b/res/scripts/loadcfg.py similarity index 100% rename from loadcfg.py rename to res/scripts/loadcfg.py diff --git a/res/setup/readme.txt b/res/setup/readme.txt index 88c1eab2..5faef42d 100644 --- a/res/setup/readme.txt +++ b/res/setup/readme.txt @@ -33,11 +33,11 @@ and can be validated to not have been tampered through SHA-256 validation (Since produce SHA-256 hashes during the build process per: https://github.com/pbatard/rufus/blob/master/.github/workflows/setup.yml). -Per the https://github.com/pbatard/rufus/actions/runs/15539519674 GitHub Actions +Per the https://github.com/pbatard/rufus/actions/runs/16191913388 GitHub Actions workflow run, the SHA-256 for the executables (before signature was applied) were: -* bea9a68e73b53820ea9c3fcdda70b1615f7453ad483dd3aa06e0385fd28f004e *./setup_x64.exe -* f024aed61b1f215a3b684bbb2fd176893fc61f92243708a0d9334671df1cdb61 *./setup_arm64.exe +* f8e1c7c5f1297be7a76d73567d4d82f61bb20c2e5c86d2a2f8d2e5961751d658 *./setup_x64.exe +* e6ff77b859231cc58c872c7b14ce9def73244641e487bbb074d3a759bdfcbc8d *./setup_arm64.exe You will also find the VirusTotal reports for the current signed executable at: -* https://www.virustotal.com/gui/file/41037f63f20f5984e5ca1dab12c033d795966e80bd8b76a39c1dc42a3dc33594/detection -* https://www.virustotal.com/gui/file/cc9cb4f4080db352d9a82ef926fc290d62a8d67a45a5557f46fa924a7b9bdbe3/detection +* https://www.virustotal.com/gui/file/11df838dc69378187e1e1aaf32d34384157642d07096c6e49c1d0e7375634544/detection +* https://www.virustotal.com/gui/file/14bd07f559513890a0f6565df3927392b4fe6b8e6fc3f5e832e9d69c8b7bb7eb/detection diff --git a/res/setup/setup.c b/res/setup/setup.c index a58ef474..c81d29c0 100644 --- a/res/setup/setup.c +++ b/res/setup/setup.c @@ -98,6 +98,13 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine STARTUPINFOA si = { 0 }; PROCESS_INFORMATION pi = { 0 }; SECURITY_ATTRIBUTES sa = { sizeof(SECURITY_ATTRIBUTES), NULL, TRUE }; + WCHAR *wc, wPath[MAX_PATH] = { 0 }; + + // If invoked from a different directory, cd to where this executable resides + if (GetModuleFileName(NULL, wPath, ARRAYSIZE(wPath)) != 0 && (wc = wcsrchr(wPath, L'\\')) != NULL) { + *wc = L'\0'; + SetCurrentDirectory(wPath); + } // Make sure we have 'setup.dll' in the same directory dwAttrib = GetFileAttributesA("setup.dll"); diff --git a/res/setup/setup.vcxproj b/res/setup/setup.vcxproj index b4043bc7..39f3853b 100644 --- a/res/setup/setup.vcxproj +++ b/res/setup/setup.vcxproj @@ -37,40 +37,40 @@ Application true Unicode - v143 + v145 Application false true Unicode - v143 + v145 Application true Unicode - v143 + v145 Application true Unicode - v143 + v145 Application false true Unicode - v143 + v145 Application false true Unicode - v143 + v145 diff --git a/res/setup/setup_arm64.exe b/res/setup/setup_arm64.exe index c8cbfc92..213a8166 100644 Binary files a/res/setup/setup_arm64.exe and b/res/setup/setup_arm64.exe differ diff --git a/res/setup/setup_x64.exe b/res/setup/setup_x64.exe index fad67aa1..e3cca98a 100644 Binary files a/res/setup/setup_x64.exe and b/res/setup/setup_x64.exe differ diff --git a/res/uefi/readme.txt b/res/uefi/readme.txt index c3ae32d7..894f11c6 100644 --- a/res/uefi/readme.txt +++ b/res/uefi/readme.txt @@ -7,28 +7,29 @@ This image, which can be mounted as a FAT file system or opened in 7-zip, contains the following data: o Secure Boot signed NTFS UEFI drivers, derived from ntfs-3g [1]. - These drivers are the exact same as the read-only binaries from release 1.7, + These drivers are the exact same as the read-only binaries from release 1.9, except for the addition of Microsoft's Secure Boot signature. - Note that, per Microsoft's current Secure Boot signing policies, the 32-bit - ARM driver (ntfs_arm.efi) is not Secure Boot signed. -o Non Secure Boot signed exFAT UEFI drivers from EfiFs [2]. - These drivers are the exact same as the binaries from EfiFs release 1.9 but, +o Non Secure Boot signed exFAT (and ARM/RISC NTFS) UEFI drivers from EfiFs [2]. + These drivers are the exact same as the binaries from EfiFs release 1.12 but, because they are licensed under GPLv3, cannot be Secure Boot signed. o Secure Boot signed UEFI:NTFS bootloader binaries [3]. - These drivers are the exact same as the binaries from release 2.3, except for + These drivers are the exact same as the binaries from release 2.8, except for the addition of Microsoft's Secure Boot signature. Note that, per Microsoft's current Secure Boot signing policies, the 32-bit ARM bootloader (bootarm.efi) is not Secure Boot signed. The above means that, if booting an NTFS partition on an x86_32, x86_64 or ARM64 -system, Secure Boot does not need to be disabled. +system, Secure Boot does not need to be disabled. You may however have to enable +3rd party certificates in your Secure Boot settings, as you would to boot Linux. -The FAT partition was created on Debian GNU/Linux using the following commands +The FAT partition was created on Debian GNU/Linux using the following commands: dd if=/dev/zero of=uefi-ntfs.img bs=512 count=2048 - mkfs.vfat -n UEFI_NTFS uefi-ntfs.img -and then mounting the uefi-ntfs.img image and copying the relevant files. + chown 1000:100 uefi-ntfs.img + mkfs.vfat -n RUFUS_BOOT uefi-ntfs.img + mount -t vfat uefi-ntfs.img /mnt/hd -o rw,uid=1000,gid=100 +and then copying the relevant files. [1] https://github.com/pbatard/ntfs-3g [2] https://github.com/pbatard/efifs diff --git a/res/uefi/uefi-ntfs.img b/res/uefi/uefi-ntfs.img index 8ed9d212..ac50eed9 100644 Binary files a/res/uefi/uefi-ntfs.img and b/res/uefi/uefi-ntfs.img differ diff --git a/rufus.sln b/rufus.sln index 26a77148..db1c23c9 100644 --- a/rufus.sln +++ b/rufus.sln @@ -31,202 +31,152 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wimlib", ".vs\wimlib.vcxpro EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|arm = Debug|arm Debug|arm64 = Debug|arm64 Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 - Release|arm = Release|arm Release|arm64 = Release|arm64 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {731858A7-0303-4988-877B-9C0DD6471864}.Debug|arm.ActiveCfg = Debug|ARM - {731858A7-0303-4988-877B-9C0DD6471864}.Debug|arm.Build.0 = Debug|ARM {731858A7-0303-4988-877B-9C0DD6471864}.Debug|arm64.ActiveCfg = Debug|ARM64 {731858A7-0303-4988-877B-9C0DD6471864}.Debug|arm64.Build.0 = Debug|ARM64 {731858A7-0303-4988-877B-9C0DD6471864}.Debug|x64.ActiveCfg = Debug|x64 {731858A7-0303-4988-877B-9C0DD6471864}.Debug|x64.Build.0 = Debug|x64 {731858A7-0303-4988-877B-9C0DD6471864}.Debug|x86.ActiveCfg = Debug|Win32 {731858A7-0303-4988-877B-9C0DD6471864}.Debug|x86.Build.0 = Debug|Win32 - {731858A7-0303-4988-877B-9C0DD6471864}.Release|arm.ActiveCfg = Release|ARM - {731858A7-0303-4988-877B-9C0DD6471864}.Release|arm.Build.0 = Release|ARM {731858A7-0303-4988-877B-9C0DD6471864}.Release|arm64.ActiveCfg = Release|ARM64 {731858A7-0303-4988-877B-9C0DD6471864}.Release|arm64.Build.0 = Release|ARM64 {731858A7-0303-4988-877B-9C0DD6471864}.Release|x64.ActiveCfg = Release|x64 {731858A7-0303-4988-877B-9C0DD6471864}.Release|x64.Build.0 = Release|x64 {731858A7-0303-4988-877B-9C0DD6471864}.Release|x86.ActiveCfg = Release|Win32 {731858A7-0303-4988-877B-9C0DD6471864}.Release|x86.Build.0 = Release|Win32 - {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Debug|arm.ActiveCfg = Debug|ARM - {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Debug|arm.Build.0 = Debug|ARM {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Debug|arm64.ActiveCfg = Debug|ARM64 {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Debug|arm64.Build.0 = Debug|ARM64 {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Debug|x64.ActiveCfg = Debug|x64 {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Debug|x64.Build.0 = Debug|x64 {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Debug|x86.ActiveCfg = Debug|Win32 {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Debug|x86.Build.0 = Debug|Win32 - {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Release|arm.ActiveCfg = Release|ARM - {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Release|arm.Build.0 = Release|ARM {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Release|arm64.ActiveCfg = Release|ARM64 {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Release|arm64.Build.0 = Release|ARM64 {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Release|x64.ActiveCfg = Release|x64 {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Release|x64.Build.0 = Release|x64 {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Release|x86.ActiveCfg = Release|Win32 {2B1D078D-8EB4-4398-9CA4-23457265A7F6}.Release|x86.Build.0 = Release|Win32 - {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Debug|arm.ActiveCfg = Debug|ARM - {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Debug|arm.Build.0 = Debug|ARM {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Debug|arm64.ActiveCfg = Debug|ARM64 {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Debug|arm64.Build.0 = Debug|ARM64 {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Debug|x64.ActiveCfg = Debug|x64 {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Debug|x64.Build.0 = Debug|x64 {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Debug|x86.ActiveCfg = Debug|Win32 {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Debug|x86.Build.0 = Debug|Win32 - {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Release|arm.ActiveCfg = Release|ARM - {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Release|arm.Build.0 = Release|ARM {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Release|arm64.ActiveCfg = Release|ARM64 {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Release|arm64.Build.0 = Release|ARM64 {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Release|x64.ActiveCfg = Release|x64 {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Release|x64.Build.0 = Release|x64 {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Release|x86.ActiveCfg = Release|Win32 {8390DCE0-859D-4F57-AD9C-AAEAC4D77EEF}.Release|x86.Build.0 = Release|Win32 - {266502AC-CD74-4581-B707-938A7D05AD7A}.Debug|arm.ActiveCfg = Debug|ARM - {266502AC-CD74-4581-B707-938A7D05AD7A}.Debug|arm.Build.0 = Debug|ARM {266502AC-CD74-4581-B707-938A7D05AD7A}.Debug|arm64.ActiveCfg = Debug|ARM64 {266502AC-CD74-4581-B707-938A7D05AD7A}.Debug|arm64.Build.0 = Debug|ARM64 {266502AC-CD74-4581-B707-938A7D05AD7A}.Debug|x64.ActiveCfg = Debug|x64 {266502AC-CD74-4581-B707-938A7D05AD7A}.Debug|x64.Build.0 = Debug|x64 {266502AC-CD74-4581-B707-938A7D05AD7A}.Debug|x86.ActiveCfg = Debug|Win32 {266502AC-CD74-4581-B707-938A7D05AD7A}.Debug|x86.Build.0 = Debug|Win32 - {266502AC-CD74-4581-B707-938A7D05AD7A}.Release|arm.ActiveCfg = Release|ARM - {266502AC-CD74-4581-B707-938A7D05AD7A}.Release|arm.Build.0 = Release|ARM {266502AC-CD74-4581-B707-938A7D05AD7A}.Release|arm64.ActiveCfg = Release|ARM64 {266502AC-CD74-4581-B707-938A7D05AD7A}.Release|arm64.Build.0 = Release|ARM64 {266502AC-CD74-4581-B707-938A7D05AD7A}.Release|x64.ActiveCfg = Release|x64 {266502AC-CD74-4581-B707-938A7D05AD7A}.Release|x64.Build.0 = Release|x64 {266502AC-CD74-4581-B707-938A7D05AD7A}.Release|x86.ActiveCfg = Release|Win32 {266502AC-CD74-4581-B707-938A7D05AD7A}.Release|x86.Build.0 = Release|Win32 - {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Debug|arm.ActiveCfg = Debug|ARM - {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Debug|arm.Build.0 = Debug|ARM {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Debug|arm64.ActiveCfg = Debug|ARM64 {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Debug|arm64.Build.0 = Debug|ARM64 {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Debug|x64.ActiveCfg = Debug|x64 {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Debug|x64.Build.0 = Debug|x64 {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Debug|x86.ActiveCfg = Debug|Win32 {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Debug|x86.Build.0 = Debug|Win32 - {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Release|arm.ActiveCfg = Release|ARM - {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Release|arm.Build.0 = Release|ARM {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Release|arm64.ActiveCfg = Release|ARM64 {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Release|arm64.Build.0 = Release|ARM64 {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Release|x64.ActiveCfg = Release|x64 {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Release|x64.Build.0 = Release|x64 {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Release|x86.ActiveCfg = Release|Win32 {7D2E9784-DDF7-4988-A887-CF099BC3B340}.Release|x86.Build.0 = Release|Win32 - {D4E80F35-2604-40AC-B436-97B052ECB572}.Debug|arm.ActiveCfg = Debug|ARM - {D4E80F35-2604-40AC-B436-97B052ECB572}.Debug|arm.Build.0 = Debug|ARM {D4E80F35-2604-40AC-B436-97B052ECB572}.Debug|arm64.ActiveCfg = Debug|ARM64 {D4E80F35-2604-40AC-B436-97B052ECB572}.Debug|arm64.Build.0 = Debug|ARM64 {D4E80F35-2604-40AC-B436-97B052ECB572}.Debug|x64.ActiveCfg = Debug|x64 {D4E80F35-2604-40AC-B436-97B052ECB572}.Debug|x64.Build.0 = Debug|x64 {D4E80F35-2604-40AC-B436-97B052ECB572}.Debug|x86.ActiveCfg = Debug|Win32 {D4E80F35-2604-40AC-B436-97B052ECB572}.Debug|x86.Build.0 = Debug|Win32 - {D4E80F35-2604-40AC-B436-97B052ECB572}.Release|arm.ActiveCfg = Release|ARM - {D4E80F35-2604-40AC-B436-97B052ECB572}.Release|arm.Build.0 = Release|ARM {D4E80F35-2604-40AC-B436-97B052ECB572}.Release|arm64.ActiveCfg = Release|ARM64 {D4E80F35-2604-40AC-B436-97B052ECB572}.Release|arm64.Build.0 = Release|ARM64 {D4E80F35-2604-40AC-B436-97B052ECB572}.Release|x64.ActiveCfg = Release|x64 {D4E80F35-2604-40AC-B436-97B052ECB572}.Release|x64.Build.0 = Release|x64 {D4E80F35-2604-40AC-B436-97B052ECB572}.Release|x86.ActiveCfg = Release|Win32 {D4E80F35-2604-40AC-B436-97B052ECB572}.Release|x86.Build.0 = Release|Win32 - {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Debug|arm.ActiveCfg = Debug|ARM - {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Debug|arm.Build.0 = Debug|ARM {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Debug|arm64.ActiveCfg = Debug|ARM64 {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Debug|arm64.Build.0 = Debug|ARM64 {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Debug|x64.ActiveCfg = Debug|x64 {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Debug|x64.Build.0 = Debug|x64 {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Debug|x86.ActiveCfg = Debug|Win32 {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Debug|x86.Build.0 = Debug|Win32 - {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Release|arm.ActiveCfg = Release|ARM - {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Release|arm.Build.0 = Release|ARM {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Release|arm64.ActiveCfg = Release|ARM64 {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Release|arm64.Build.0 = Release|ARM64 {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Release|x64.ActiveCfg = Release|x64 {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Release|x64.Build.0 = Release|x64 {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Release|x86.ActiveCfg = Release|Win32 {0CEC40A6-A195-4BE5-A88B-0AB00EB142EC}.Release|x86.Build.0 = Release|Win32 - {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Debug|arm.ActiveCfg = Debug|ARM - {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Debug|arm.Build.0 = Debug|ARM {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Debug|arm64.ActiveCfg = Debug|ARM64 {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Debug|arm64.Build.0 = Debug|ARM64 {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Debug|x64.ActiveCfg = Debug|x64 {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Debug|x64.Build.0 = Debug|x64 {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Debug|x86.ActiveCfg = Debug|Win32 {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Debug|x86.Build.0 = Debug|Win32 - {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Release|arm.ActiveCfg = Release|ARM - {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Release|arm.Build.0 = Release|ARM {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Release|arm64.ActiveCfg = Release|ARM64 {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Release|arm64.Build.0 = Release|ARM64 {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Release|x64.ActiveCfg = Release|x64 {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Release|x64.Build.0 = Release|x64 {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Release|x86.ActiveCfg = Release|Win32 {FA1B1093-BA86-410A-B7A0-7A54C605F812}.Release|x86.Build.0 = Release|Win32 - {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Debug|arm.ActiveCfg = Debug|ARM - {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Debug|arm.Build.0 = Debug|ARM {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Debug|arm64.ActiveCfg = Debug|ARM64 {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Debug|arm64.Build.0 = Debug|ARM64 {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Debug|x64.ActiveCfg = Debug|x64 {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Debug|x64.Build.0 = Debug|x64 {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Debug|x86.ActiveCfg = Debug|Win32 {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Debug|x86.Build.0 = Debug|Win32 - {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Release|arm.ActiveCfg = Release|ARM - {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Release|arm.Build.0 = Release|ARM {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Release|arm64.ActiveCfg = Release|ARM64 {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Release|arm64.Build.0 = Release|ARM64 {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Release|x64.ActiveCfg = Release|x64 {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Release|x64.Build.0 = Release|x64 {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Release|x86.ActiveCfg = Release|Win32 {AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}.Release|x86.Build.0 = Release|Win32 - {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Debug|arm.ActiveCfg = Debug|ARM - {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Debug|arm.Build.0 = Debug|ARM {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Debug|arm64.ActiveCfg = Debug|ARM64 {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Debug|arm64.Build.0 = Debug|ARM64 {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Debug|x64.ActiveCfg = Debug|x64 {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Debug|x64.Build.0 = Debug|x64 {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Debug|x86.ActiveCfg = Debug|Win32 {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Debug|x86.Build.0 = Debug|Win32 - {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Release|arm.ActiveCfg = Release|ARM - {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Release|arm.Build.0 = Release|ARM {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Release|arm64.ActiveCfg = Release|ARM64 {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Release|arm64.Build.0 = Release|ARM64 {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Release|x64.ActiveCfg = Release|x64 {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Release|x64.Build.0 = Release|x64 {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Release|x86.ActiveCfg = Release|Win32 {FB6D52D4-A2F8-C358-DB85-BBCAECFDDD7D}.Release|x86.Build.0 = Release|Win32 - {B01F5886-2B39-4B66-B65C-6427135B6A02}.Debug|arm.ActiveCfg = Debug|ARM - {B01F5886-2B39-4B66-B65C-6427135B6A02}.Debug|arm.Build.0 = Debug|ARM {B01F5886-2B39-4B66-B65C-6427135B6A02}.Debug|arm64.ActiveCfg = Debug|ARM64 {B01F5886-2B39-4B66-B65C-6427135B6A02}.Debug|arm64.Build.0 = Debug|ARM64 {B01F5886-2B39-4B66-B65C-6427135B6A02}.Debug|x64.ActiveCfg = Debug|x64 {B01F5886-2B39-4B66-B65C-6427135B6A02}.Debug|x64.Build.0 = Debug|x64 {B01F5886-2B39-4B66-B65C-6427135B6A02}.Debug|x86.ActiveCfg = Debug|Win32 {B01F5886-2B39-4B66-B65C-6427135B6A02}.Debug|x86.Build.0 = Debug|Win32 - {B01F5886-2B39-4B66-B65C-6427135B6A02}.Release|arm.ActiveCfg = Release|ARM - {B01F5886-2B39-4B66-B65C-6427135B6A02}.Release|arm.Build.0 = Release|ARM {B01F5886-2B39-4B66-B65C-6427135B6A02}.Release|arm64.ActiveCfg = Release|ARM64 {B01F5886-2B39-4B66-B65C-6427135B6A02}.Release|arm64.Build.0 = Release|ARM64 {B01F5886-2B39-4B66-B65C-6427135B6A02}.Release|x64.ActiveCfg = Release|x64 {B01F5886-2B39-4B66-B65C-6427135B6A02}.Release|x64.Build.0 = Release|x64 {B01F5886-2B39-4B66-B65C-6427135B6A02}.Release|x86.ActiveCfg = Release|Win32 {B01F5886-2B39-4B66-B65C-6427135B6A02}.Release|x86.Build.0 = Release|Win32 - {633CFC82-E01B-4777-BDE4-DC0739804332}.Debug|arm.ActiveCfg = Debug|ARM - {633CFC82-E01B-4777-BDE4-DC0739804332}.Debug|arm.Build.0 = Debug|ARM {633CFC82-E01B-4777-BDE4-DC0739804332}.Debug|arm64.ActiveCfg = Debug|ARM64 {633CFC82-E01B-4777-BDE4-DC0739804332}.Debug|arm64.Build.0 = Debug|ARM64 {633CFC82-E01B-4777-BDE4-DC0739804332}.Debug|x64.ActiveCfg = Debug|x64 {633CFC82-E01B-4777-BDE4-DC0739804332}.Debug|x64.Build.0 = Debug|x64 {633CFC82-E01B-4777-BDE4-DC0739804332}.Debug|x86.ActiveCfg = Debug|Win32 {633CFC82-E01B-4777-BDE4-DC0739804332}.Debug|x86.Build.0 = Debug|Win32 - {633CFC82-E01B-4777-BDE4-DC0739804332}.Release|arm.ActiveCfg = Release|ARM - {633CFC82-E01B-4777-BDE4-DC0739804332}.Release|arm.Build.0 = Release|ARM {633CFC82-E01B-4777-BDE4-DC0739804332}.Release|arm64.ActiveCfg = Release|ARM64 {633CFC82-E01B-4777-BDE4-DC0739804332}.Release|arm64.Build.0 = Release|ARM64 {633CFC82-E01B-4777-BDE4-DC0739804332}.Release|x64.ActiveCfg = Release|x64 diff --git a/src/Makefile.am b/src/Makefile.am index c62aa5ce..e88ea327 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,7 +3,7 @@ SUBDIRS = ../.mingw bled ext2fs ms-sys syslinux/libfat syslinux/libinstaller sys NONVULNERABLE_LIBS = -lole32 -lgdi32 -lshlwapi -lcomctl32 -luuid -lntdll # The following libraries are vulnerable (or have an unknown vulnerability status), so we link using our delay-loaded replacement: # See https://github.com/pbatard/rufus/issues/2272 -VULNERABLE_LIBS = -lcrypt32-delaylib -ldwmapi-delaylib -lsetupapi-delaylib -lversion-delaylib -lvirtdisk-delaylib -lwininet-delaylib -lwintrust-delaylib +VULNERABLE_LIBS = -lcrypt32-delaylib -ldwmapi-delaylib -lsetupapi-delaylib -luxtheme-delaylib -lversion-delaylib -lvirtdisk-delaylib -lwininet-delaylib -lwintrust-delaylib noinst_PROGRAMS = rufus @@ -15,8 +15,8 @@ AM_V_WINDRES = $(AM_V_WINDRES_$(V)) %_rc.o: %.rc ../res/loc/embedded.loc $(AM_V_WINDRES) $(AM_RCFLAGS) -i $< -o $@ -rufus_SOURCES = badblocks.c dev.c dos.c dos_locale.c drive.c format.c format_ext.c format_fat32.c hash.c icon.c iso.c \ - localization.c net.c parser.c pki.c process.c re.c rufus.c smart.c stdfn.c stdio.c stdlg.c syslinux.c ui.c vhd.c wue.c xml.c +rufus_SOURCES = badblocks.c darkmode.c dev.c dos.c dos_locale.c drive.c format.c format_ext.c format_fat32.c hash.c icon.c iso.c localization.c \ + net.c parser.c pki.c process.c cregex_compile.c cregex_parse.c cregex_vm.c rufus.c smart.c stdfn.c stdio.c stdlg.c syslinux.c ui.c vhd.c wue.c xml.c rufus_CFLAGS = -I$(srcdir)/ms-sys/inc -I$(srcdir)/syslinux/libfat -I$(srcdir)/syslinux/libinstaller -I$(srcdir)/syslinux/win -I$(srcdir)/libcdio -I$(srcdir)/wimlib -I$(srcdir)/../res $(AM_CFLAGS) \ -DEXT2_FLAT_INCLUDES=0 -D_RUFUS -DSOLUTION=rufus rufus_LDFLAGS = $(AM_LDFLAGS) -mwindows -L../.mingw diff --git a/src/Makefile.in b/src/Makefile.in index 1e5f0285..317b9d3a 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -87,14 +87,16 @@ mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) -am_rufus_OBJECTS = rufus-badblocks.$(OBJEXT) rufus-dev.$(OBJEXT) \ - rufus-dos.$(OBJEXT) rufus-dos_locale.$(OBJEXT) \ - rufus-drive.$(OBJEXT) rufus-format.$(OBJEXT) \ - rufus-format_ext.$(OBJEXT) rufus-format_fat32.$(OBJEXT) \ - rufus-hash.$(OBJEXT) rufus-icon.$(OBJEXT) rufus-iso.$(OBJEXT) \ +am_rufus_OBJECTS = rufus-badblocks.$(OBJEXT) rufus-darkmode.$(OBJEXT) \ + rufus-dev.$(OBJEXT) rufus-dos.$(OBJEXT) \ + rufus-dos_locale.$(OBJEXT) rufus-drive.$(OBJEXT) \ + rufus-format.$(OBJEXT) rufus-format_ext.$(OBJEXT) \ + rufus-format_fat32.$(OBJEXT) rufus-hash.$(OBJEXT) \ + rufus-icon.$(OBJEXT) rufus-iso.$(OBJEXT) \ rufus-localization.$(OBJEXT) rufus-net.$(OBJEXT) \ rufus-parser.$(OBJEXT) rufus-pki.$(OBJEXT) \ - rufus-process.$(OBJEXT) rufus-re.$(OBJEXT) \ + rufus-process.$(OBJEXT) rufus-cregex_compile.$(OBJEXT) \ + rufus-cregex_parse.$(OBJEXT) rufus-cregex_vm.$(OBJEXT) \ rufus-rufus.$(OBJEXT) rufus-smart.$(OBJEXT) \ rufus-stdfn.$(OBJEXT) rufus-stdio.$(OBJEXT) \ rufus-stdlg.$(OBJEXT) rufus-syslinux.$(OBJEXT) \ @@ -278,13 +280,13 @@ SUBDIRS = ../.mingw bled ext2fs ms-sys syslinux/libfat syslinux/libinstaller sys NONVULNERABLE_LIBS = -lole32 -lgdi32 -lshlwapi -lcomctl32 -luuid -lntdll # The following libraries are vulnerable (or have an unknown vulnerability status), so we link using our delay-loaded replacement: # See https://github.com/pbatard/rufus/issues/2272 -VULNERABLE_LIBS = -lcrypt32-delaylib -ldwmapi-delaylib -lsetupapi-delaylib -lversion-delaylib -lvirtdisk-delaylib -lwininet-delaylib -lwintrust-delaylib +VULNERABLE_LIBS = -lcrypt32-delaylib -ldwmapi-delaylib -lsetupapi-delaylib -luxtheme-delaylib -lversion-delaylib -lvirtdisk-delaylib -lwininet-delaylib -lwintrust-delaylib AM_V_WINDRES_0 = @echo " RC $@";$(WINDRES) AM_V_WINDRES_1 = $(WINDRES) AM_V_WINDRES_ = $(AM_V_WINDRES_$(AM_DEFAULT_VERBOSITY)) AM_V_WINDRES = $(AM_V_WINDRES_$(V)) -rufus_SOURCES = badblocks.c dev.c dos.c dos_locale.c drive.c format.c format_ext.c format_fat32.c hash.c icon.c iso.c \ - localization.c net.c parser.c pki.c process.c re.c rufus.c smart.c stdfn.c stdio.c stdlg.c syslinux.c ui.c vhd.c wue.c xml.c +rufus_SOURCES = badblocks.c darkmode.c dev.c dos.c dos_locale.c drive.c format.c format_ext.c format_fat32.c hash.c icon.c iso.c localization.c \ + net.c parser.c pki.c process.c cregex_compile.c cregex_parse.c cregex_vm.c rufus.c smart.c stdfn.c stdio.c stdlg.c syslinux.c ui.c vhd.c wue.c xml.c rufus_CFLAGS = -I$(srcdir)/ms-sys/inc -I$(srcdir)/syslinux/libfat -I$(srcdir)/syslinux/libinstaller -I$(srcdir)/syslinux/win -I$(srcdir)/libcdio -I$(srcdir)/wimlib -I$(srcdir)/../res $(AM_CFLAGS) \ -DEXT2_FLAT_INCLUDES=0 -D_RUFUS -DSOLUTION=rufus @@ -353,6 +355,12 @@ rufus-badblocks.o: badblocks.c rufus-badblocks.obj: badblocks.c $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-badblocks.obj `if test -f 'badblocks.c'; then $(CYGPATH_W) 'badblocks.c'; else $(CYGPATH_W) '$(srcdir)/badblocks.c'; fi` +rufus-darkmode.o: darkmode.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-darkmode.o `test -f 'darkmode.c' || echo '$(srcdir)/'`darkmode.c + +rufus-darkmode.obj: darkmode.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-darkmode.obj `if test -f 'darkmode.c'; then $(CYGPATH_W) 'darkmode.c'; else $(CYGPATH_W) '$(srcdir)/darkmode.c'; fi` + rufus-dev.o: dev.c $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-dev.o `test -f 'dev.c' || echo '$(srcdir)/'`dev.c @@ -443,11 +451,23 @@ rufus-process.o: process.c rufus-process.obj: process.c $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-process.obj `if test -f 'process.c'; then $(CYGPATH_W) 'process.c'; else $(CYGPATH_W) '$(srcdir)/process.c'; fi` -rufus-re.o: re.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-re.o `test -f 're.c' || echo '$(srcdir)/'`re.c +rufus-cregex_compile.o: cregex_compile.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-cregex_compile.o `test -f 'cregex_compile.c' || echo '$(srcdir)/'`cregex_compile.c -rufus-re.obj: re.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-re.obj `if test -f 're.c'; then $(CYGPATH_W) 're.c'; else $(CYGPATH_W) '$(srcdir)/re.c'; fi` +rufus-cregex_compile.obj: cregex_compile.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-cregex_compile.obj `if test -f 'cregex_compile.c'; then $(CYGPATH_W) 'cregex_compile.c'; else $(CYGPATH_W) '$(srcdir)/cregex_compile.c'; fi` + +rufus-cregex_parse.o: cregex_parse.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-cregex_parse.o `test -f 'cregex_parse.c' || echo '$(srcdir)/'`cregex_parse.c + +rufus-cregex_parse.obj: cregex_parse.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-cregex_parse.obj `if test -f 'cregex_parse.c'; then $(CYGPATH_W) 'cregex_parse.c'; else $(CYGPATH_W) '$(srcdir)/cregex_parse.c'; fi` + +rufus-cregex_vm.o: cregex_vm.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-cregex_vm.o `test -f 'cregex_vm.c' || echo '$(srcdir)/'`cregex_vm.c + +rufus-cregex_vm.obj: cregex_vm.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-cregex_vm.obj `if test -f 'cregex_vm.c'; then $(CYGPATH_W) 'cregex_vm.c'; else $(CYGPATH_W) '$(srcdir)/cregex_vm.c'; fi` rufus-rufus.o: rufus.c $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(rufus_CFLAGS) $(CFLAGS) -c -o rufus-rufus.o `test -f 'rufus.c' || echo '$(srcdir)/'`rufus.c diff --git a/src/badblocks.c b/src/badblocks.c index 7a2a3d18..b6847d0e 100644 --- a/src/badblocks.c +++ b/src/badblocks.c @@ -549,7 +549,7 @@ static unsigned int test_rw(HANDLE hDrive, blk64_t last_block, size_t block_size if (memcmp(read_buffer + i * block_size, buffer + i * block_size, block_size)) { - if_not_assert(currently_testing * block_size < 1 * PB) + if_assert_fails(currently_testing * block_size < 1 * PB) goto out; // coverity[overflow_const] bb_count += bb_output(currently_testing+i-got, CORRUPTION_ERROR); diff --git a/src/bled/Makefile.am b/src/bled/Makefile.am index 23b00401..3827cc51 100644 --- a/src/bled/Makefile.am +++ b/src/bled/Makefile.am @@ -1,10 +1,10 @@ noinst_LIBRARIES = libbled.a -libbled_a_SOURCES = bled.c crc32.c data_align.c data_extract_all.c data_skip.c decompress_bunzip2.c \ +libbled_a_SOURCES = bled.c bled_size.c crc32.c data_align.c data_extract_all.c data_skip.c decompress_bunzip2.c \ decompress_gunzip.c decompress_uncompress.c decompress_unlzma.c decompress_unxz.c decompress_unzip.c \ decompress_unzstd.c decompress_vtsi.c filter_accept_all.c filter_accept_list.c filter_accept_reject_list.c \ find_list_entry.c fse_decompress.c header_list.c header_skip.c header_verbose_list.c huf_decompress.c \ init_handle.c open_transformer.c seek_by_jump.c seek_by_read.c xz_dec_bcj.c xz_dec_lzma2.c xz_dec_stream.c \ xxhash.c zstd_common.c zstd_decompress.c zstd_decompress_block.c zstd_ddict.c zstd_entropy_common.c \ zstd_error_private.c -libbled_a_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/.. -Wno-undef -Wno-strict-aliasing +libbled_a_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/.. -DBLED_EXPECT_DISK_IMAGE -Wno-undef -Wno-strict-aliasing diff --git a/src/bled/Makefile.in b/src/bled/Makefile.in index 7619dc50..f0a4c484 100644 --- a/src/bled/Makefile.in +++ b/src/bled/Makefile.in @@ -94,7 +94,8 @@ am__v_AR_1 = libbled_a_AR = $(AR) $(ARFLAGS) libbled_a_LIBADD = am_libbled_a_OBJECTS = libbled_a-bled.$(OBJEXT) \ - libbled_a-crc32.$(OBJEXT) libbled_a-data_align.$(OBJEXT) \ + libbled_a-bled_size.$(OBJEXT) libbled_a-crc32.$(OBJEXT) \ + libbled_a-data_align.$(OBJEXT) \ libbled_a-data_extract_all.$(OBJEXT) \ libbled_a-data_skip.$(OBJEXT) \ libbled_a-decompress_bunzip2.$(OBJEXT) \ @@ -276,7 +277,7 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ noinst_LIBRARIES = libbled.a -libbled_a_SOURCES = bled.c crc32.c data_align.c data_extract_all.c data_skip.c decompress_bunzip2.c \ +libbled_a_SOURCES = bled.c bled_size.c crc32.c data_align.c data_extract_all.c data_skip.c decompress_bunzip2.c \ decompress_gunzip.c decompress_uncompress.c decompress_unlzma.c decompress_unxz.c decompress_unzip.c \ decompress_unzstd.c decompress_vtsi.c filter_accept_all.c filter_accept_list.c filter_accept_reject_list.c \ find_list_entry.c fse_decompress.c header_list.c header_skip.c header_verbose_list.c huf_decompress.c \ @@ -284,7 +285,7 @@ libbled_a_SOURCES = bled.c crc32.c data_align.c data_extract_all.c data_skip.c d xxhash.c zstd_common.c zstd_decompress.c zstd_decompress_block.c zstd_ddict.c zstd_entropy_common.c \ zstd_error_private.c -libbled_a_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/.. -Wno-undef -Wno-strict-aliasing +libbled_a_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/.. -DBLED_EXPECT_DISK_IMAGE -Wno-undef -Wno-strict-aliasing all: all-am .SUFFIXES: @@ -346,6 +347,12 @@ libbled_a-bled.o: bled.c libbled_a-bled.obj: bled.c $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libbled_a_CFLAGS) $(CFLAGS) -c -o libbled_a-bled.obj `if test -f 'bled.c'; then $(CYGPATH_W) 'bled.c'; else $(CYGPATH_W) '$(srcdir)/bled.c'; fi` +libbled_a-bled_size.o: bled_size.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libbled_a_CFLAGS) $(CFLAGS) -c -o libbled_a-bled_size.o `test -f 'bled_size.c' || echo '$(srcdir)/'`bled_size.c + +libbled_a-bled_size.obj: bled_size.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libbled_a_CFLAGS) $(CFLAGS) -c -o libbled_a-bled_size.obj `if test -f 'bled_size.c'; then $(CYGPATH_W) 'bled_size.c'; else $(CYGPATH_W) '$(srcdir)/bled_size.c'; fi` + libbled_a-crc32.o: crc32.c $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libbled_a_CFLAGS) $(CFLAGS) -c -o libbled_a-crc32.o `test -f 'crc32.c' || echo '$(srcdir)/'`crc32.c diff --git a/src/bled/bb_archive.h b/src/bled/bb_archive.h index 36fca55c..2e8a6ff6 100644 --- a/src/bled/bb_archive.h +++ b/src/bled/bb_archive.h @@ -235,23 +235,28 @@ typedef struct transformer_state_t { int dst_fd; const char *dst_dir; /* if non-NULL, extract to dir */ char *dst_name; - uint64_t dst_size; + int64_t src_size; /* size of the source archive */ + int64_t dst_size; /* size of the uncompressed data, if available */ size_t mem_output_size_max; /* if non-zero, decompress to RAM instead of fd */ size_t mem_output_size; char *mem_output_buf; + uint64_t bytes_total; /* used in unzip code only, for directory extraction */ uint64_t bytes_out; - uint64_t bytes_in; /* used in unzip code only: needs to know packed size */ + uint64_t bytes_in; /* used in unzip code only: needs to know packed size */ uint32_t crc32; - time_t mtime; /* gunzip code may set this on exit */ + time_t mtime; /* gunzip code may set this on exit */ - union { /* if we read magic, it's saved here */ + union { /* if we read magic, it's saved here */ uint8_t b[8]; uint16_t b16[4]; uint32_t b32[2]; } magic; } transformer_state_t; +typedef int64_t(*unpacker_t)(transformer_state_t* xstate); +typedef int64_t(*get_uncompressed_size_t)(int fd); +int64_t get_uncompressed_size(int fd, int type); void init_transformer_state(transformer_state_t *xstate) FAST_FUNC; ssize_t transformer_write(transformer_state_t *xstate, const void *buf, size_t bufsize) FAST_FUNC; ssize_t xtransformer_write(transformer_state_t *xstate, const void *buf, size_t bufsize) FAST_FUNC; @@ -276,7 +281,7 @@ static inline int transformer_switch_file(transformer_state_t* xstate) last_slash = i; } if (bled_switch != NULL) - bled_switch(dst, xstate->dst_size); + bled_switch(dst, xstate->bytes_total); dst[last_slash] = 0; bb_make_directory(dst, 0, 0); dst[last_slash] = '/'; diff --git a/src/bled/bled.c b/src/bled/bled.c index f73508e1..c421cab5 100644 --- a/src/bled/bled.c +++ b/src/bled/bled.c @@ -1,7 +1,7 @@ /* * Bled (Base Library for Easy Decompression) * - * Copyright © 2014-2024 Pete Batard + * Copyright © 2014-2026 Pete Batard * * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ @@ -15,27 +15,26 @@ #include "bb_archive.h" #include "bled.h" -typedef long long int(*unpacker_t)(transformer_state_t *xstate); - /* Globals */ smallint bb_got_signal; -uint64_t bb_total_rb; +uint64_t bb_total_rb, bb_total_wb; printf_t bled_printf = NULL; read_t bled_read = NULL; write_t bled_write = NULL; progress_t bled_progress = NULL; switch_t bled_switch = NULL; unsigned long* bled_cancel_request; -static bool bled_initialized = 0; +bool bled_initialized = 0; jmp_buf bb_error_jmp; char* bb_virtual_buf = NULL; size_t bb_virtual_len = 0, bb_virtual_pos = 0; int bb_virtual_fd = -1; +bool bb_progress_on_write = 0; // ZSTD has a minimal buffer size of (1 << ZSTD_BLOCKSIZELOG_MAX) + ZSTD_blockHeaderSize = 128 KB + 3 // So we set our bufsize to 256 KB uint32_t BB_BUFSIZE = 0x40000; -static long long int unpack_none(transformer_state_t *xstate) +static int64_t unpack_none(transformer_state_t *xstate) { bb_error_msg("This compression type is not supported"); return -1; @@ -66,6 +65,7 @@ int64_t bled_uncompress(const char* src, const char* dst, int type) } bb_total_rb = 0; + bb_total_wb = 0; init_transformer_state(&xstate); xstate.src_fd = -1; xstate.dst_fd = -1; @@ -87,6 +87,14 @@ int64_t bled_uncompress(const char* src, const char* dst, int type) goto err; } + if (bled_progress != NULL) { + xstate.src_size = lseek(xstate.src_fd, 0, SEEK_END); + xstate.dst_size = get_uncompressed_size(xstate.src_fd, type); + + bb_progress_on_write = (xstate.dst_size > 0); + bled_progress(bb_progress_on_write ? -xstate.dst_size : -xstate.src_size); + } + if (setjmp(bb_error_jmp)) goto err; @@ -112,6 +120,7 @@ int64_t bled_uncompress_with_handles(HANDLE hSrc, HANDLE hDst, int type) } bb_total_rb = 0; + bb_total_wb = 0; init_transformer_state(&xstate); xstate.src_fd = -1; xstate.dst_fd = -1; @@ -133,6 +142,13 @@ int64_t bled_uncompress_with_handles(HANDLE hSrc, HANDLE hDst, int type) return -1; } + if (bled_progress != NULL) { + xstate.src_size = lseek(xstate.src_fd, 0, SEEK_END); + xstate.dst_size = get_uncompressed_size(xstate.src_fd, type); + bb_progress_on_write = (xstate.dst_size > 0); + bled_progress(bb_progress_on_write ? -xstate.dst_size : -xstate.src_size); + } + if (setjmp(bb_error_jmp)) return -1; @@ -156,6 +172,7 @@ int64_t bled_uncompress_to_buffer(const char* src, char* buf, size_t size, int t } bb_total_rb = 0; + bb_total_wb = 0; init_transformer_state(&xstate); xstate.src_fd = -1; xstate.dst_fd = -1; @@ -179,6 +196,13 @@ int64_t bled_uncompress_to_buffer(const char* src, char* buf, size_t size, int t goto err; } + if (bled_progress != NULL) { + xstate.src_size = lseek(xstate.src_fd, 0, SEEK_END); + xstate.dst_size = get_uncompressed_size(xstate.src_fd, type); + bb_progress_on_write = (xstate.dst_size > 0); + bled_progress(bb_progress_on_write ? -xstate.dst_size : -xstate.src_size); + } + if (setjmp(bb_error_jmp)) goto err; @@ -203,6 +227,7 @@ int64_t bled_uncompress_to_dir(const char* src, const char* dir, int type) } bb_total_rb = 0; + bb_total_wb = 0; init_transformer_state(&xstate); xstate.src_fd = -1; xstate.dst_fd = -1; @@ -221,6 +246,13 @@ int64_t bled_uncompress_to_dir(const char* src, const char* dir, int type) goto err; } + if (bled_progress != NULL) { + xstate.src_size = lseek(xstate.src_fd, 0, SEEK_END); + xstate.dst_size = 0; + bb_progress_on_write = 0; + bled_progress(-xstate.src_size); + } + if (setjmp(bb_error_jmp)) goto err; @@ -268,6 +300,34 @@ int64_t bled_uncompress_from_buffer_to_buffer(const char* src, const size_t src_ return ret; } +/* Get the decompressed size of file 'src', compressed using 'type' */ +int64_t bled_get_uncompressed_size(const char* src, int type) +{ + int fd = -1; + int64_t ret = -1; + + if (!bled_initialized) { + bb_error_msg("The library has not been initialized"); + return -1; + } + + if ((type < 0) || (type >= BLED_COMPRESSION_MAX)) { + bb_error_msg("Unsupported compression format"); + goto err; + } + + fd = _openU(src, _O_RDONLY | _O_BINARY, 0); + if (fd < 0) + return -1; + + ret = get_uncompressed_size(fd, type); + +err: + if (fd > 0) + _close(fd); + return ret; +} + /* Initialize the library. * When the parameters are not NULL or zero you can: * - specify the buffer size to use (must be larger than 256KB and a power of two) diff --git a/src/bled/bled.h b/src/bled/bled.h index 7a354cad..3524e916 100644 --- a/src/bled/bled.h +++ b/src/bled/bled.h @@ -1,7 +1,7 @@ /* * Bled (Base Library for Easy Decompression) * - * Copyright © 2014-2024 Pete Batard + * Copyright © 2014-2026 Pete Batard * * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ @@ -16,7 +16,7 @@ #endif typedef void (*printf_t) (const char* format, ...); -typedef void (*progress_t) (const uint64_t read_bytes); +typedef void (*progress_t) (const int64_t read_bytes); typedef int (*read_t)(int fd, void* buf, unsigned int count); typedef int (*write_t)(int fd, const void* buf, unsigned int count); typedef void (*switch_t)(const char* filename, const uint64_t size); @@ -35,6 +35,9 @@ typedef enum { BLED_COMPRESSION_MAX } bled_compression_type; +/* (Where possible) get the uncompressed size of file 'src', compressed using 'type' */ +int64_t bled_get_uncompressed_size(const char* src, int type); + /* Uncompress file 'src', compressed using 'type', to file 'dst' */ int64_t bled_uncompress(const char* src, const char* dst, int type); diff --git a/src/bled/bled_size.c b/src/bled/bled_size.c new file mode 100644 index 00000000..4c9dda1a --- /dev/null +++ b/src/bled/bled_size.c @@ -0,0 +1,782 @@ +/* + * Bled (Base Library for Easy Decompression) - Size related dependencies + * + * Mostly generated by AI - No copyright assigned. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ + +#ifdef _CRTDBG_MAP_ALLOC +#include +#include +#endif + +#include "libbb.h" +#include "bb_archive.h" +#include "bled.h" + +/* ------------------------------------------------------------------------- + * Internal helpers + * ---------------------------------------------------------------------- */ + +#define DECOMP_SIZE_ERROR ((int64_t)-1) +#define DECOMP_SIZE_UNKNOWN ((int64_t)-2) +#define DECOMP_IO_ERROR ((int64_t)-3) + + /** Read exactly n bytes from fd into buf; returns 0 on success, -1 on error. */ +static int read_exact(int fd, void* buf, size_t n) +{ + uint8_t* p = (uint8_t*)buf; + while (n > 0) { + int got = _read(fd, p, (unsigned)n); + if (got <= 0) + return -1; + p += got; + n -= (size_t)got; + } + return 0; +} + +int64_t get_uncompress_size_none(int fd) +{ + return DECOMP_SIZE_UNKNOWN; +} + +/* ------------------------------------------------------------------------- + * PKZIP + * + * Local File Header layout (all fields little-endian): + * + * Offset Size Field + * 0 4 Signature (0x04034b50) + * 4 2 Version needed + * 6 2 General purpose bit flag + * 8 2 Compression method + * 10 2 Last mod file time + * 12 2 Last mod file date + * 14 4 CRC-32 + * 18 4 Compressed size (0xFFFFFFFF → see ZIP64 Extra Field) + * 22 4 Uncompressed size (0xFFFFFFFF → see ZIP64 Extra Field) + * 26 2 File name length + * 28 2 Extra field length + * 30 ? File name + * 30+n ? Extra field + * + * ZIP64 Extra Field tag: 0x0001 + * Within the ZIP64 extra field block the fields appear only when the + * corresponding 32-bit field in the Local Header is 0xFFFFFFFF: + * - Original size (8 bytes LE) ← first, if uncompressed == 0xFFFFFFFF + * - Compressed size (8 bytes LE) ← second, if compressed == 0xFFFFFFFF + * ---------------------------------------------------------------------- */ + +#define ZIP_LFH_SIG UINT32_C(0x04034b50) +#define ZIP_LFH_HDR_SIZE 30 +#define ZIP64_EXTRA_TAG 0x0001 +#define ZIP32_NEEDS_ZIP64 UINT32_C(0xFFFFFFFF) + +static int64_t get_uncompress_size_zip(int fd) +{ + uint8_t hdr[ZIP_LFH_HDR_SIZE]; + + if (lseek(fd, 0, SEEK_SET) < 0) + return DECOMP_SIZE_ERROR; + if (read_exact(fd, hdr, ZIP_LFH_HDR_SIZE)) + return DECOMP_SIZE_ERROR; + + /* Verify Local File Header signature. */ + if (get_le32(hdr + 0) != ZIP_LFH_SIG) + return DECOMP_SIZE_ERROR; + + uint32_t uncomp32 = get_le32(hdr + 22); + uint32_t comp32 = get_le32(hdr + 18); + uint16_t fname_len = get_le16(hdr + 26); + uint16_t extra_len = get_le16(hdr + 28); + + /* Fast path: 32-bit field is valid. */ + if (uncomp32 != ZIP32_NEEDS_ZIP64) + return (int64_t)uncomp32; + + /* Need ZIP64 Extra Field – skip over the file name first. */ + if (lseek(fd, (int64_t)fname_len, SEEK_CUR) < 0) + return DECOMP_SIZE_ERROR; + + /* Walk the extra field TLV blocks looking for tag 0x0001. */ + uint16_t remaining = extra_len; + while (remaining >= 4) { + uint8_t tag_buf[4]; + if (read_exact(fd, tag_buf, 4)) + return DECOMP_SIZE_ERROR; + remaining = (uint16_t)(remaining - 4); + + uint16_t tag = get_le16(tag_buf + 0); + uint16_t dlen = get_le16(tag_buf + 2); + + if (tag == ZIP64_EXTRA_TAG) { + /* + * Fields are present only when the corresponding 32-bit value is + * 0xFFFFFFFF. Uncompressed size comes first; we need 8 bytes. + */ + if (uncomp32 == ZIP32_NEEDS_ZIP64) { + if (dlen < 8 || remaining < 8) + return DECOMP_SIZE_ERROR; + uint8_t sz[8]; + if (read_exact(fd, sz, 8)) + return DECOMP_SIZE_ERROR; + return (int64_t)get_le64(sz); + } + } + + /* Skip this block. */ + if (dlen > remaining) return DECOMP_SIZE_ERROR; + if (lseek(fd, (int64_t)dlen, SEEK_CUR) < 0) + return DECOMP_SIZE_ERROR; + remaining = (uint16_t)(remaining - dlen); + (void)comp32; /* suppress unused-variable warning */ + } + + return DECOMP_SIZE_ERROR; /* ZIP64 tag not found */ +} + +/* ------------------------------------------------------------------------- + * GZIP + * + * The ISIZE field is the last 4 bytes of the file (little-endian uint32). + * It holds the decompressed size modulo 2^32. + * + * Header magic: 0x1F 0x8B + * ---------------------------------------------------------------------- */ + +#define GZIP_MAGIC_0 0x1F +#define GZIP_MAGIC_1 0x8B + +static int64_t get_uncompress_size_gz(int fd) +{ + /* Verify magic bytes at offset 0. */ + uint8_t magic[2]; + if (lseek(fd, 0, SEEK_SET) < 0) + return DECOMP_SIZE_ERROR; + if (read_exact(fd, magic, 2)) + return DECOMP_SIZE_ERROR; + if (magic[0] != GZIP_MAGIC_0 || magic[1] != GZIP_MAGIC_1) + return DECOMP_SIZE_ERROR; + + /* Seek to ISIZE: last 4 bytes of the file. */ + if (lseek(fd, -4, SEEK_END) < 0) + return DECOMP_SIZE_ERROR; + + uint8_t isize[4]; + if (read_exact(fd, isize, 4)) + return DECOMP_SIZE_ERROR; + + /* + * ISIZE is uint32 mod 2^32. We return it as int64_t; callers that need + * to handle files >= 4 GiB must apply their own correction. + */ + return (int64_t)(uint64_t)get_le32(isize); +} + +/* ------------------------------------------------------------------------- + * LZMA (.lzma "alone" format) + * + * Header layout: + * Offset Size Field + * 0 1 Properties byte (lc, lp, pb encoded) + * 1 4 Dictionary size (uint32 LE) + * 5 8 Uncompressed size (uint64 LE; + * 0xFFFFFFFFFFFFFFFF → unknown, uses EOS marker) + * ---------------------------------------------------------------------- */ + +#define LZMA_HEADER_SIZE 13 /* 1 + 4 + 8 */ +#define LZMA_SIZE_UNKNOWN UINT64_C(0xFFFFFFFFFFFFFFFF) + +static int64_t get_uncompress_size_lzma(int fd) +{ + uint8_t hdr[LZMA_HEADER_SIZE]; + + if (lseek(fd, 0, SEEK_SET) < 0) + return DECOMP_SIZE_ERROR; + if (read_exact(fd, hdr, LZMA_HEADER_SIZE)) + return DECOMP_SIZE_ERROR; + + /* + * Basic sanity check on the properties byte: + * lc = props % 9, lp = (props / 9) % 5, pb = props / 45 + * pb must be <= 4, so the byte must be < 225 (9 * 5 * 5). + */ + if (hdr[0] >= 225) + return DECOMP_SIZE_ERROR; + + uint64_t size = get_le64(hdr + 5); + if (size == LZMA_SIZE_UNKNOWN) + return DECOMP_SIZE_UNKNOWN; + + return (int64_t)size; +} + +/* ------------------------------------------------------------------------- + * XZ (.xz) + * + * An XZ file is one or more Streams, each structured as: + * + * Stream Header (12 bytes) + * Block(s) (variable) + * Index (variable) + * Stream Footer (12 bytes) + * + * Stream Footer layout (little-endian unless noted): + * Offset Size Field + * 0 4 CRC32 of bytes 4..7 + * 4 4 Backward Size (uint32 LE; index_size = (value+1)*4) + * 8 2 Stream Flags (must match Stream Header flags) + * 10 2 Magic (0x59 0x5A) + * + * Index layout (immediately before Stream Footer): + * [0] 1 Indicator byte (must be 0x00) + * [1] VLI Number of Records + * per record: + * VLI Unpadded Size of the compressed Block + * VLI Uncompressed Size of the Block ← what we want + * padding to 4-byte boundary + * 4 CRC32 of the Index + * + * VLI encoding: up to 9 bytes; each byte contributes 7 bits (little-endian + * bit order); the MSB is a continuation flag (1 = more bytes follow). + * Maximum value: 2^63 - 1 (high bit of the 9th byte must be 0). + * ---------------------------------------------------------------------- */ + +#define XZ_STREAM_FOOTER_SIZE 12 +#define XZ_MAGIC_0 0xFDu +#define XZ_MAGIC_1 0x37u +#define XZ_MAGIC_2 0x7Au +#define XZ_MAGIC_3 0x58u +#define XZ_MAGIC_4 0x5Au +#define XZ_MAGIC_5 0x00u +#define XZ_FOOTER_MAGIC_0 0x59u +#define XZ_FOOTER_MAGIC_1 0x5Au + + /** + * Decode one XZ/LZMA2 VLI from buf[*pos], advancing *pos. + * Returns the value, or UINT64_MAX on error (overlong / overflow). + */ +static uint64_t xz_read_vli(const uint8_t* buf, size_t buf_len, size_t* pos) +{ + uint64_t val = 0; + int shift = 0; + + for (;;) { + if (*pos >= buf_len) return UINT64_MAX; /* truncated */ + if (shift >= 63) return UINT64_MAX; /* overlong */ + + uint8_t b = buf[(*pos)++]; + val |= (uint64_t)(b & 0x7Fu) << shift; + shift += 7; + + if (!(b & 0x80u)) + return val; + } +} + +static int64_t get_uncompress_size_xz(int fd) +{ + /* ---- Verify Stream Header magic (6 bytes at offset 0) ---- */ + uint8_t hdr_magic[6]; + if (lseek(fd, 0, SEEK_SET) < 0) + return DECOMP_SIZE_ERROR; + if (read_exact(fd, hdr_magic, 6)) + return DECOMP_SIZE_ERROR; + if (hdr_magic[0] != XZ_MAGIC_0 || hdr_magic[1] != XZ_MAGIC_1 || + hdr_magic[2] != XZ_MAGIC_2 || hdr_magic[3] != XZ_MAGIC_3 || + hdr_magic[4] != XZ_MAGIC_4 || hdr_magic[5] != XZ_MAGIC_5) + return DECOMP_SIZE_ERROR; + + /* ---- Read Stream Footer ---- */ + if (lseek(fd, -(int64_t)XZ_STREAM_FOOTER_SIZE, SEEK_END) < 0) + return DECOMP_SIZE_ERROR; + + uint8_t footer[XZ_STREAM_FOOTER_SIZE]; + if (read_exact(fd, footer, XZ_STREAM_FOOTER_SIZE)) + return DECOMP_SIZE_ERROR; + + /* Check footer magic bytes at offset 10-11 */ + if (footer[10] != XZ_FOOTER_MAGIC_0 || footer[11] != XZ_FOOTER_MAGIC_1) + return DECOMP_SIZE_ERROR; + + /* Backward Size: real Index size = (backward_size + 1) * 4 */ + uint32_t backward_size = get_le32(footer + 4); + size_t index_size = ((size_t)backward_size + 1u) * 4u; + + /* ---- Read Index block ---- */ + int64_t index_offset = + -(int64_t)XZ_STREAM_FOOTER_SIZE - (int64_t)index_size; + if (lseek(fd, index_offset, SEEK_END) < 0) + return DECOMP_SIZE_ERROR; + + uint8_t* index_buf = (uint8_t*) + _alloca(index_size); + if (read_exact(fd, index_buf, index_size)) + return DECOMP_SIZE_ERROR; + + /* ---- Parse Index ---- */ + size_t pos = 0; + + /* Indicator byte must be 0x00 */ + if (index_buf[pos++] != 0x00u) + return DECOMP_SIZE_ERROR; + + /* Number of Records */ + uint64_t num_records = xz_read_vli(index_buf, index_size, &pos); + if (num_records == UINT64_MAX || num_records == 0) + return DECOMP_SIZE_ERROR; + + /* Sum uncompressed sizes across all records */ + uint64_t total = 0; + for (uint64_t r = 0; r < num_records; r++) { + /* Unpadded Size (compressed) — skip it */ + uint64_t unpadded = xz_read_vli(index_buf, index_size, &pos); + if (unpadded == UINT64_MAX || unpadded == 0) + return DECOMP_SIZE_ERROR; + + /* Uncompressed Size — accumulate */ + uint64_t uncomp = xz_read_vli(index_buf, index_size, &pos); + if (uncomp == UINT64_MAX) + return DECOMP_SIZE_ERROR; + + total += uncomp; + } + + return (int64_t)total; +} + +/* ------------------------------------------------------------------------- + * 7-ZIP (.7z) + * + * Signature Header (32 bytes at offset 0): + * Offset Size Field + * 0 6 Signature (0x37 0x7A 0xBC 0xAF 0x27 0x1C) + * 6 1 Major version + * 7 1 Minor version + * 8 4 CRC32 of bytes 12..27 + * 12 8 NextHeader Offset (uint64 LE, relative to offset 32) + * 20 8 NextHeader Size (uint64 LE) + * 28 4 NextHeader CRC32 + * + * The End Header lives at file offset 32 + NextHeaderOffset. + * Its property-block stream (for a plain, non-encoded-header archive) is: + * + * kHeader (0x01) + * kMainStreamsInfo (0x04) + * kPackInfo (0x06) + * 7z-num: PackPos + * 7z-num: NumPackStreams + * kSize (0x09) + * NumPackStreams × 7z-num packed sizes + * kEnd (0x00) + * kUnPackInfo (0x07) + * kFolder (0x0b) + * 7z-num: NumFolders (must be 1 for single-file) + * byte: External (0 = inline folder data) + * [inline] 7z-num: NumCoders + * per coder: + * byte: flags (bits[3:0]=CodecIdSize, bit4=IsComplex, bit5=HasAttrs) + * CodecIdSize bytes: Codec ID + * if IsComplex: 7z-num NumInStreams, 7z-num NumOutStreams + * if HasAttrs: 7z-num AttrSize, AttrSize bytes Attributes + * [if NumCoders>1] BindPairs, PackedStreams (skipped here) + * kCodersUnPackSize (0x0c) + * 7z-num: uncompressed size ← what we want + * [optional kCRC (0x0a)] + * kEnd (0x00) + * [optional kSubStreamsInfo (0x08)] + * kEnd (0x00) + * [kFilesInfo (0x05) ...] + * kEnd (0x00) + * + * 7z variable-length number encoding: + * The first byte's leading 1-bits count how many extra bytes follow. + * extra=0 → value in bits[6:0] of first byte (7 bits) + * extra=1 → bits[5:0] of first byte + 8 bits of second (14 bits) + * ... + * extra=8 → 0xFF marker + full uint64 in next 8 bytes + * ---------------------------------------------------------------------- */ + +static const uint8_t SZ_SIG[6] = { 0x37,0x7A,0xBC,0xAF,0x27,0x1C }; + +#define SZ_kEnd 0x00u +#define SZ_kHeader 0x01u +#define SZ_kMainStreamsInfo 0x04u +#define SZ_kPackInfo 0x06u +#define SZ_kUnPackInfo 0x07u +#define SZ_kSize 0x09u +#define SZ_kFolder 0x0Bu +#define SZ_kCodersUnPackSize 0x0Cu +#define SZ_kEncodedHeader 0x17u + +/** + * Decode one 7z variable-length number from buf[*pos], advancing *pos. + * + * Algorithm from the 7-zip SDK (CPP/7zip/Archive/7z/7zIn.cpp ReadNumber): + * mask starts at 0x80 and shifts right each iteration. + * While (firstByte & mask) != 0: read one more byte into low bits of value. + * When the stop bit is found: add (firstByte & (mask-1)) into the + * appropriately shifted position. + * + * Returns UINT64_MAX on error (buffer overrun). + */ +static uint64_t sz_read_num(const uint8_t* buf, size_t buf_len, size_t* pos) +{ + if (*pos >= buf_len) return UINT64_MAX; + + uint8_t first = buf[(*pos)++]; + uint8_t mask = 0x80u; + uint64_t value = 0; + + for (int i = 0; i < 8; i++) { + if ((first & mask) == 0) { + /* Stop bit found: the remaining bits of first contribute here */ + uint64_t high_part = first & (uint64_t)(mask - 1u); + value += high_part << (i * 8); + return value; + } + /* Consume one more byte into bits [i*8 .. i*8+7] of value */ + if (*pos >= buf_len) return UINT64_MAX; + value |= (uint64_t)buf[(*pos)++] << (i * 8); + mask = (uint8_t)(mask >> 1); + } + /* first == 0xFF: all 8 extra bytes consumed, value is complete */ + return value; +} + +static int64_t get_uncompress_size_7zip(int fd) +{ + /* ---- Read & verify Signature Header (32 bytes) ---- */ + uint8_t sig_hdr[32]; + if (lseek(fd, 0, SEEK_SET) < 0) + return DECOMP_SIZE_ERROR; + if (read_exact(fd, sig_hdr, 32)) + return DECOMP_SIZE_ERROR; + if (memcmp(sig_hdr, SZ_SIG, 6) != 0) + return DECOMP_SIZE_ERROR; + + uint64_t nh_offset = get_le64(sig_hdr + 12); + uint64_t nh_size = get_le64(sig_hdr + 20); + + if (nh_size == 0 || nh_size > (uint64_t)64 * 1024 * 1024) + return DECOMP_SIZE_ERROR; /* sanity cap: 64 MiB */ + + /* ---- Read End Header ---- */ + int64_t eh_abs = (int64_t)(32u + nh_offset); + if (lseek(fd, eh_abs, SEEK_SET) < 0) return DECOMP_SIZE_ERROR; + + uint8_t* eh = (uint8_t*) + _alloca((size_t)nh_size); + if (read_exact(fd, eh, (size_t)nh_size)) return DECOMP_SIZE_ERROR; + + size_t pos = 0; + size_t len = (size_t)nh_size; + + /* + * Helpers that operate on (eh, len, pos) in the enclosing scope. + * We avoid macros that embed do-while inside comma-expressions (not + * valid in C99); instead use explicit checks before each read. + */ +#define SZ_NEED(n) \ + do { if (pos + (size_t)(n) > len) return DECOMP_SIZE_ERROR; } while (0) +#define SZ_BYTE(var) \ + do { SZ_NEED(1); (var) = eh[pos++]; } while (0) +#define SZ_NUM(var) \ + do { (var) = sz_read_num(eh, len, &pos); \ + if ((var) == UINT64_MAX) return DECOMP_SIZE_ERROR; } while (0) +#define SZ_SKIP(n) \ + do { SZ_NEED(n); pos += (size_t)(n); } while (0) +#define SZ_EXPECT(tag) \ + do { uint8_t _b; SZ_BYTE(_b); \ + if (_b != (tag)) return DECOMP_SIZE_ERROR; } while (0) + + uint8_t first_tag; + uint64_t num_pack, num_folders, num_coders, unpack_size; + + /* Expect kHeader */ + SZ_EXPECT(SZ_kHeader); + + /* kEncodedHeader (0x17) means the real header is itself compressed; + * that requires decompressing a sub-stream, which we do not support. */ + SZ_NEED(1); + if (eh[pos] == SZ_kEncodedHeader) + return DECOMP_SIZE_ERROR; + + SZ_EXPECT(SZ_kMainStreamsInfo); + SZ_EXPECT(SZ_kPackInfo); + + /* PackPos (discard) then NumPackStreams */ + { uint64_t dummy; SZ_NUM(dummy); (void)dummy; } + SZ_NUM(num_pack); + + /* kSize: skip NumPackStreams packed-size VLIs */ + SZ_EXPECT(SZ_kSize); + for (uint64_t i = 0; i < num_pack; i++) { + uint64_t dummy; SZ_NUM(dummy); (void)dummy; + } + SZ_EXPECT(SZ_kEnd); /* closes kPackInfo */ + + SZ_EXPECT(SZ_kUnPackInfo); + SZ_EXPECT(SZ_kFolder); + + SZ_NUM(num_folders); + if (num_folders != 1) + return DECOMP_SIZE_ERROR; /* only single-folder archives supported */ + + { + uint8_t external; SZ_BYTE(external); + if (external != 0) + return DECOMP_SIZE_ERROR; + } /* external not supported */ + +/* Parse the inline folder record to skip past coder descriptors */ + SZ_NUM(num_coders); + if (num_coders == 0) return DECOMP_SIZE_ERROR; + + for (uint64_t c = 0; c < num_coders; c++) { + uint8_t flags; + SZ_BYTE(flags); + uint8_t id_size = flags & 0x0Fu; + int is_complex = (flags >> 4) & 1; + int has_attrs = (flags >> 5) & 1; + + SZ_SKIP(id_size); /* Codec ID bytes */ + + if (is_complex) { + uint64_t dummy; + SZ_NUM(dummy); (void)dummy; /* NumInStreams */ + SZ_NUM(dummy); (void)dummy; /* NumOutStreams */ + } + if (has_attrs) { + uint64_t attr_size; SZ_NUM(attr_size); + SZ_SKIP(attr_size); + } + } + + /* Multi-coder folders have BindPairs and possibly PackedStreams indices */ + if (num_coders > 1) { + for (uint64_t i = 0; i < num_coders - 1; i++) { + uint64_t dummy; + SZ_NUM(dummy); (void)dummy; /* InIndex */ + SZ_NUM(dummy); (void)dummy; /* OutIndex */ + } + if (num_pack > num_coders - 1) { + uint64_t n = num_pack - (num_coders - 1); + for (uint64_t i = 0; i < n; i++) { + uint64_t dummy; SZ_NUM(dummy); (void)dummy; + } + } + } + + /* kCodersUnPackSize: one VLI per output stream (single folder → one value) */ + SZ_NEED(1); + first_tag = eh[pos++]; + if (first_tag != SZ_kCodersUnPackSize) return DECOMP_SIZE_ERROR; + + SZ_NUM(unpack_size); + return (int64_t)unpack_size; + +#undef SZ_NEED +#undef SZ_BYTE +#undef SZ_NUM +#undef SZ_SKIP +#undef SZ_EXPECT +} + +/* ------------------------------------------------------------------------- + * Ventoy Sparse Image (.vsti) + * ---------------------------------------------------------------------- */ + +static int64_t get_uncompress_size_vtsi(int fd) +{ + if (lseek(fd, -512 + 8 + 4, SEEK_END) < 0) + return DECOMP_SIZE_ERROR; + + uint8_t isize[8]; + if (read_exact(fd, isize, 8)) + return DECOMP_SIZE_ERROR; + + return (int64_t)get_le64(isize); +} + +/* ------------------------------------------------------------------------- + * Zstandard (.zst) + * + * Frame layout: + * Offset Size Field + * 0 4 Magic (0xFD2FB528, LE) + * 4 1 Frame Header Descriptor (FHD) + * 5 0/1 Window_Descriptor (absent when Single_Segment_Flag set) + * ? 0/1/2/4/8 Content_Size + * + * FHD bits: + * [7:6] Frame_Content_Size_Flag (FCS_Flag) + * [5] Single_Segment_Flag (SS_Flag) + * [4] reserved (must be 0) + * [3] Content_Checksum_Flag + * [2] reserved (must be 0) + * [1:0] Dictionary_ID_Flag + * + * Content_Size size from FCS_Flag: + * 0 → 0 bytes if SS_Flag==0 (unknown), or 1 byte if SS_Flag==1 + * 1 → 2 bytes (value + 256, to avoid overlap with 1-byte encoding) + * 2 → 4 bytes + * 3 → 8 bytes + * ---------------------------------------------------------------------- */ + +#define ZSTD_MAGIC UINT32_C(0xFD2FB528) +#define ZSTD_MAGIC_SIZE 4 + +static int64_t get_uncompress_size_zstd(int fd) +{ + uint8_t buf[4 + 1 + 1]; /* magic + FHD + optional Window_Descriptor */ + + if (lseek(fd, 0, SEEK_SET) < 0) + return DECOMP_SIZE_ERROR; + if (read_exact(fd, buf, 6)) + return DECOMP_SIZE_ERROR; + + if (get_le32(buf) != ZSTD_MAGIC) + return DECOMP_SIZE_ERROR; + + uint8_t fhd = buf[4]; + int fcs_flag = (fhd >> 6) & 0x03; + int ss_flag = (fhd >> 5) & 0x01; + + /* Window_Descriptor is present only when Single_Segment_Flag == 0. + * buf[5] already consumed it; if SS_Flag==1 that byte is Content_Size[0]. + * We'll re-seek to the correct offset to avoid confusion. */ + + /* Determine Content_Size field size. */ + int cs_bytes; + if (fcs_flag == 0) { + if (ss_flag == 0) + return DECOMP_SIZE_UNKNOWN; /* field absent */ + cs_bytes = 1; + } else if (fcs_flag == 1) { + cs_bytes = 2; + } else if (fcs_flag == 2) { + cs_bytes = 4; + } else { + cs_bytes = 8; + } + + /* + * Content_Size starts at: + * offset 5 if Single_Segment_Flag == 1 (no Window_Descriptor) + * offset 6 if Single_Segment_Flag == 0 (Window_Descriptor present) + */ + int64_t cs_offset = (ss_flag ? 5 : 6); + + if (lseek(fd, cs_offset, SEEK_SET) < 0) + return DECOMP_SIZE_ERROR; + + uint8_t cs_buf[8] = { 0 }; + if (read_exact(fd, cs_buf, (size_t)cs_bytes)) + return DECOMP_SIZE_ERROR; + + uint64_t size; + switch (cs_bytes) { + case 1: + size = cs_buf[0]; + break; + case 2: + /* + * 2-byte encoding: actual value = field_value + 256 + * (reserves 0-255 for the 1-byte SS_Flag path) + */ + size = (uint64_t)get_le16(cs_buf) + 256U; + break; + case 4: + size = get_le32(cs_buf); + break; + default: /* 8 */ + size = get_le64(cs_buf); + break; + } + + return (int64_t)size; +} + +#if defined(BLED_EXPECT_DISK_IMAGE) +extern progress_t bled_progress; +extern unpacker_t unpacker[BLED_COMPRESSION_MAX]; +int64_t get_uncompressed_size_from_disk_image(int fd, int type) +{ + progress_t old_bled_progress = bled_progress; + int64_t size = DECOMP_SIZE_UNKNOWN; + uint8_t buf[8192]; + transformer_state_t xstate; + + bled_progress = NULL; /* Can't have progress on this operation */ + init_transformer_state(&xstate); + xstate.src_fd = fd; + xstate.dst_fd = -1; + xstate.mem_output_buf = buf; + xstate.mem_output_size = 0; + xstate.mem_output_size_max = sizeof(buf); + + if (setjmp(bb_error_jmp)) + goto out; + + lseek(fd, 0, SEEK_SET); + size = unpacker[type](&xstate); + if (size != sizeof(buf) || buf[0x1fe] != 0x55 || buf[0x1ff] != 0xaa) { + size = DECOMP_SIZE_UNKNOWN; + goto out; + } + if (buf[0x1be] == 0x00 && buf[0x1c2] == 0xee) { + /* + * Protective EFI MBR => look for the primary GPT, which'll also give us the sector size + * The address of the backup GPT is assumed to be the last LBA for the disk + */ + if (memcmp("EFI PART", &buf[0x200], 8) == 0) + size = (get_le64(&buf[0x220]) + 1) * 512; + else if (memcmp("EFI PART", &buf[0x1000], 8) == 0) + size = (get_le64(&buf[0x1020]) + 1) * 4096; + else + bb_error_msg("Could not locate primary GPT"); + } else if (buf[0x1be] == 0x80) { + /* Regular bootable MBR => compute the max LBA (using primary partitions only) */ + uint32_t max_lba = 1; + for (int i = 0; i < 4; i++) + max_lba = MAX(max_lba, get_le32(&buf[0x1be + 0x10 * i + 8]) + get_le32(&buf[0x1be + 0x10 * i + 0xc])); + size = (max_lba + 1) * 512; /* assume 512-byte sectors for anything MBR based */ + if (size < 4096) + size = DECOMP_SIZE_UNKNOWN; + } + +out: + bled_progress = old_bled_progress; + return size; +} +#endif + +static get_uncompressed_size_t _get_uncompressed_size[BLED_COMPRESSION_MAX] = { + get_uncompress_size_none, + get_uncompress_size_zip, + get_uncompress_size_none, // .Z has no decompressed size info + get_uncompress_size_gz, + get_uncompress_size_lzma, + get_uncompress_size_none, // .bz2 has no decompressed size info + get_uncompress_size_xz, + get_uncompress_size_7zip, + get_uncompress_size_vtsi, + get_uncompress_size_zstd, +}; + +/* Get the decompressed size of file 'fd', compressed using 'type' */ +int64_t get_uncompressed_size(int fd, int type) +{ + int64_t size = _get_uncompressed_size[type](fd); +#if defined(BLED_EXPECT_DISK_IMAGE) + if (size < 0) + size = get_uncompressed_size_from_disk_image(fd, type); +#endif + + /* Make sure to reset our file pointer */ + lseek(fd, 0, SEEK_SET); + return size; +} diff --git a/src/bled/decompress_bunzip2.c b/src/bled/decompress_bunzip2.c index 7cb08f93..9a08eb5c 100644 --- a/src/bled/decompress_bunzip2.c +++ b/src/bled/decompress_bunzip2.c @@ -768,7 +768,7 @@ unpack_bz2_stream(transformer_state_t *xstate) if (check_signature16(xstate, BZIP2_MAGIC)) return -1; - outbuf = xmalloc(IOBUF_SIZE); + outbuf = aligned_xmalloc(IOBUF_SIZE); if (outbuf == NULL) return -1; len = 0; @@ -834,7 +834,7 @@ unpack_bz2_stream(transformer_state_t *xstate) release_mem: dealloc_bunzip(bd); - free(outbuf); + aligned_free(outbuf); return i ? i : IF_DESKTOP(total_written) + 0; } diff --git a/src/bled/decompress_gunzip.c b/src/bled/decompress_gunzip.c index beb7fb39..c99b0dc1 100644 --- a/src/bled/decompress_gunzip.c +++ b/src/bled/decompress_gunzip.c @@ -1012,7 +1012,7 @@ inflate_unzip_internal(STATE_PARAM transformer_state_t *xstate) ssize_t nwrote; /* Allocate all global buffers (for DYN_ALLOC option) */ - gunzip_window = xzalloc(GUNZIP_WSIZE); + gunzip_window = aligned_xzalloc(GUNZIP_WSIZE); gunzip_outbuf_count = 0; gunzip_bytes_out = 0; gunzip_src_fd = xstate->src_fd; @@ -1068,7 +1068,7 @@ inflate_unzip_internal(STATE_PARAM transformer_state_t *xstate) } ret: /* Cleanup */ - free(gunzip_window); + aligned_free(gunzip_window); free(gunzip_crc_table); return n; } diff --git a/src/bled/decompress_uncompress.c b/src/bled/decompress_uncompress.c index a995a0db..28178cf7 100644 --- a/src/bled/decompress_uncompress.c +++ b/src/bled/decompress_uncompress.c @@ -104,7 +104,7 @@ unpack_Z_stream(transformer_state_t *xstate) return -1; inbuf = xzalloc(IBUFSIZ + 64); - outbuf = xzalloc(OBUFSIZ + 2048); + outbuf = aligned_xzalloc(OBUFSIZ + 2048); htab = xzalloc(HSIZE); /* wasn't zeroed out before, maybe can xmalloc? */ codetab = xzalloc(HSIZE * sizeof(codetab[0])); @@ -311,7 +311,7 @@ unpack_Z_stream(transformer_state_t *xstate) retval = IF_DESKTOP(total_written) + 0; err: free(inbuf); - free(outbuf); + aligned_free(outbuf); free(htab); free(codetab); return retval; diff --git a/src/bled/decompress_unlzma.c b/src/bled/decompress_unlzma.c index 856193cb..d79cb463 100644 --- a/src/bled/decompress_unlzma.c +++ b/src/bled/decompress_unlzma.c @@ -263,8 +263,8 @@ unpack_lzma_stream(transformer_state_t *xstate) if (header.dict_size == 0) header.dict_size++; - buffer_size = (uint32_t)MIN(header.dst_size, header.dict_size); - buffer = xmalloc(buffer_size); + buffer_size = (uint32_t)MAX(SECTOR_ALIGNMENT, MIN(header.dst_size, header.dict_size)); + buffer = aligned_xmalloc(buffer_size); { int num_probs; @@ -528,7 +528,7 @@ unpack_lzma_stream(transformer_state_t *xstate) } rc_free(rc); free(p); - free(buffer); + aligned_free(buffer); return total_written; } } diff --git a/src/bled/decompress_unxz.c b/src/bled/decompress_unxz.c index 5178263d..45ff892c 100644 --- a/src/bled/decompress_unxz.c +++ b/src/bled/decompress_unxz.c @@ -11,9 +11,6 @@ #include "bb_archive.h" #define XZ_EXTERN static -// We get XZ_OPTIONS_ERROR in xz_dec_stream if this is not defined -#define XZ_DEC_ANY_CHECK - #define XZ_BUFSIZE BB_BUFSIZE #include "xz_dec_bcj.c" @@ -52,7 +49,7 @@ IF_DESKTOP(long long) int FAST_FUNC unpack_xz_stream(transformer_state_t *xstate bb_error_msg_and_err("memory allocation error"); in = xmalloc(XZ_BUFSIZE); - out = xmalloc(XZ_BUFSIZE); + out = aligned_xmalloc(XZ_BUFSIZE); b.in = in; b.in_pos = 0; @@ -89,7 +86,7 @@ IF_DESKTOP(long long) int FAST_FUNC unpack_xz_stream(transformer_state_t *xstate #ifdef XZ_DEC_ANY_CHECK if (ret == XZ_UNSUPPORTED_CHECK) { - bb_error_msg("unsupported check; not verifying file integrity"); +// bb_error_msg("unsupported check; not verifying file integrity"); continue; } #endif @@ -132,7 +129,7 @@ out: err: xz_dec_end(s); free(in); - free(out); + aligned_free(out); if (ret == XZ_OK) return n; else if (ret == XZ_BUF_FULL) diff --git a/src/bled/decompress_unzip.c b/src/bled/decompress_unzip.c index ef8745a2..e0818128 100644 --- a/src/bled/decompress_unzip.c +++ b/src/bled/decompress_unzip.c @@ -399,7 +399,7 @@ static void unzip_set_xstate(transformer_state_t* xstate, zip_header_t* zip) zip64_t* zip64; /* Set the default sizes for non ZIP64 content */ - xstate->dst_size = zip->fmt.ucmpsize; + xstate->bytes_total = zip->fmt.ucmpsize; xstate->bytes_in = zip->fmt.cmpsize; /* Set the filename */ @@ -440,7 +440,7 @@ static void unzip_set_xstate(transformer_state_t* xstate, zip_header_t* zip) zip64->fmt.cmpsize, zip64->fmt.ucmpsize ); - xstate->dst_size = zip64->fmt.ucmpsize; + xstate->bytes_total = zip64->fmt.ucmpsize; xstate->bytes_in = zip64->fmt.cmpsize; } } @@ -457,10 +457,10 @@ unzip_extract(zip_header_t* zip, transformer_state_t* xstate) if (zip->fmt.method == 0) { /* Method 0 - stored (not compressed) */ - if (xstate->dst_size) { - bb_copyfd_exact_size(xstate->src_fd, xstate->dst_fd, xstate->dst_size); + if (xstate->bytes_total) { + bb_copyfd_exact_size(xstate->src_fd, xstate->dst_fd, xstate->bytes_total); } - return xstate->dst_size; + return xstate->bytes_total; } if (zip->fmt.method == 8) { @@ -507,7 +507,7 @@ unzip_extract(zip_header_t* zip, transformer_state_t* xstate) } /* Validate decompression - size */ - if (n != -ENOSPC && xstate->dst_size != xstate->bytes_out) { + if (n != -ENOSPC && xstate->bytes_total != xstate->bytes_out) { /* Don't die. Who knows, maybe len calculation * was botched somewhere. After all, crc matched! */ bb_simple_error_msg("bad length"); diff --git a/src/bled/decompress_unzstd.c b/src/bled/decompress_unzstd.c index 894ad5cb..4c6cdee7 100644 --- a/src/bled/decompress_unzstd.c +++ b/src/bled/decompress_unzstd.c @@ -27,8 +27,8 @@ unpack_zstd_stream_inner(transformer_state_t *xstate, ZSTD_DStream *dctx, void *out_buff) { const U32 zstd_magic = ZSTD_MAGIC; - const size_t in_allocsize = roundupsize(ZSTD_DStreamInSize(), 1024), - out_allocsize = roundupsize(ZSTD_DStreamOutSize(), 1024); + const size_t in_allocsize = roundupsize(ZSTD_DStreamInSize(), SECTOR_ALIGNMENT), + out_allocsize = roundupsize(ZSTD_DStreamOutSize(), SECTOR_ALIGNMENT); IF_DESKTOP(long long int total = 0;) size_t last_result = ZSTD_error_maxCode + 1; @@ -119,8 +119,8 @@ unpack_zstd_stream_inner(transformer_state_t *xstate, IF_DESKTOP(long long) int FAST_FUNC unpack_zstd_stream(transformer_state_t *xstate) { - const size_t in_allocsize = roundupsize(ZSTD_DStreamInSize(), 1024), - out_allocsize = roundupsize(ZSTD_DStreamOutSize(), 1024); + const size_t in_allocsize = roundupsize(ZSTD_DStreamInSize(), SECTOR_ALIGNMENT), + out_allocsize = roundupsize(ZSTD_DStreamOutSize(), SECTOR_ALIGNMENT); IF_DESKTOP(long long) int result; void *out_buff; @@ -132,10 +132,10 @@ unpack_zstd_stream(transformer_state_t *xstate) bb_error_msg_and_die("memory exhausted"); } - out_buff = xmalloc(in_allocsize + out_allocsize); + out_buff = aligned_xmalloc(in_allocsize + out_allocsize); result = unpack_zstd_stream_inner(xstate, dctx, out_buff); - free(out_buff); + aligned_free(out_buff); ZSTD_freeDStream(dctx); return result; } diff --git a/src/bled/decompress_vtsi.c b/src/bled/decompress_vtsi.c index 70a2c269..612fca4a 100644 --- a/src/bled/decompress_vtsi.c +++ b/src/bled/decompress_vtsi.c @@ -62,7 +62,7 @@ typedef struct { extern int __static_assert__[sizeof(VTSI_FOOTER) == 512 ? 1 : -1]; -#define MAX_READ_BUF (8 * 1024 * 1024) +#define MAX_READ_BUF BB_BUFSIZE static int check_vtsi_footer(VTSI_FOOTER* footer) { @@ -140,13 +140,13 @@ IF_DESKTOP(long long) int FAST_FUNC unpack_vtsi_stream(transformer_state_t* xsta goto err; if (xstate->mem_output_size_max == 512) - max_buflen = 1024; + max_buflen = SECTOR_ALIGNMENT; - segment = xmalloc(footer.segment_num * sizeof(VTSI_SEGMENT) + max_buflen); - if (!segment) + buf = aligned_xmalloc(max_buflen + footer.segment_num * sizeof(VTSI_SEGMENT)); + if (!buf) bb_error_msg_and_err("Failed to alloc segment buffer %u", footer.segment_num); - buf = (uint8_t*)segment + footer.segment_num * sizeof(VTSI_SEGMENT); + segment = (VTSI_SEGMENT*)&buf[max_buflen]; lseek(src_fd, footer.segment_offset, SEEK_SET); safe_read(src_fd, segment, footer.segment_num * sizeof(VTSI_SEGMENT)); @@ -182,8 +182,7 @@ IF_DESKTOP(long long) int FAST_FUNC unpack_vtsi_stream(transformer_state_t* xsta n = tot; err: - if (segment) - free(segment); + aligned_free(buf); return n; } diff --git a/src/bled/libbb.h b/src/bled/libbb.h index eb799206..4bd4b6f7 100644 --- a/src/bled/libbb.h +++ b/src/bled/libbb.h @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include @@ -40,6 +41,7 @@ #include #define ONE_TB 1099511627776ULL +#define SECTOR_ALIGNMENT 4096 #define ENABLE_DESKTOP 1 #if ENABLE_DESKTOP @@ -124,6 +126,7 @@ extern jmp_buf bb_error_jmp; extern char* bb_virtual_buf; extern size_t bb_virtual_len, bb_virtual_pos; extern int bb_virtual_fd; +extern bool bb_progress_on_write; uint32_t* crc32_filltable(uint32_t *crc_table, int endian); uint32_t crc32_le(uint32_t crc, unsigned char const *p, size_t len, uint32_t *crc32table_le); @@ -152,7 +155,7 @@ struct timeval64 { }; extern void (*bled_printf) (const char* format, ...); -extern void (*bled_progress) (const uint64_t processed_bytes); +extern void (*bled_progress) (const int64_t processed_bytes); extern void (*bled_switch) (const char* filename, const uint64_t filesize); extern int (*bled_read)(int fd, void* buf, unsigned int count); extern int (*bled_write)(int fd, const void* buf, unsigned int count); @@ -191,8 +194,8 @@ static inline int fnmatch(const char *pattern, const char *string, int flags) { static inline pid_t wait(int* status) { *status = 4; return -1; } #define wait_any_nohang wait -/* This enables the display of a progress based on the number of bytes read */ -extern uint64_t bb_total_rb; +/* This enables the display of a progress based on the number of bytes read/written */ +extern uint64_t bb_total_rb, bb_total_wb; static inline int full_read(int fd, void *buf, unsigned int count) { int rb; @@ -223,23 +226,28 @@ static inline int full_read(int fd, void *buf, unsigned int count) { } else { rb = (bled_read != NULL) ? bled_read(fd, buf, count) : _read(fd, buf, count); } - if (rb > 0) { + if (bled_progress != NULL && !bb_progress_on_write && rb > 0) { bb_total_rb += rb; - if (bled_progress != NULL) - bled_progress(bb_total_rb); + bled_progress(bb_total_rb); } return rb; } static inline int full_write(int fd, const void* buffer, unsigned int count) { + int wb; /* None of our r/w buffers should be larger than BB_BUFSIZE */ if (count > BB_BUFSIZE) { errno = E2BIG; return -1; } - return (bled_write != NULL) ? bled_write(fd, buffer, count) : _write(fd, buffer, count); + wb = (bled_write != NULL) ? bled_write(fd, buffer, count) : _write(fd, buffer, count); + if (bled_progress != NULL && bb_progress_on_write && wb > 0) { + bb_total_wb += wb; + bled_progress(bb_total_wb); + } + return wb; } static inline void bb_copyfd_exact_size(int fd1, int fd2, off_t size) @@ -254,7 +262,7 @@ static inline void bb_copyfd_exact_size(int fd1, int fd2, off_t size) if (size > ONE_TB) bb_error_msg_and_die("too large"); - buf = malloc(BB_BUFSIZE); + buf = _mm_malloc(BB_BUFSIZE, SECTOR_ALIGNMENT); if (buf == NULL) bb_error_msg_and_die("out of memory"); @@ -262,7 +270,7 @@ static inline void bb_copyfd_exact_size(int fd1, int fd2, off_t size) int r, w; r = full_read(fd1, buf, (unsigned int)MIN(size - rb, BB_BUFSIZE)); if (r < 0) { - free(buf); + _mm_free(buf); bb_error_msg_and_die("read error"); } if (r == 0) { @@ -271,7 +279,7 @@ static inline void bb_copyfd_exact_size(int fd1, int fd2, off_t size) } w = full_write(fd2, buf, r); if (w < 0) { - free(buf); + _mm_free(buf); bb_error_msg_and_die("write error"); } if (w != r) { @@ -280,7 +288,7 @@ static inline void bb_copyfd_exact_size(int fd1, int fd2, off_t size) } rb += r; } - free(buf); + _mm_free(buf); } static inline struct tm *localtime_r(const time_t *timep, struct tm *result) { @@ -294,6 +302,9 @@ static inline struct tm *localtime_r(const time_t *timep, struct tm *result) { #define xmalloc malloc #define xzalloc(x) calloc(x, 1) #define malloc_or_warn malloc +#define aligned_xmalloc(x) _mm_malloc(x, SECTOR_ALIGNMENT); +static inline void* aligned_xzalloc(size_t x) { void* r = aligned_xmalloc(x); if (r) memset(r, 0, x); return r; } +#define aligned_free _mm_free #define mkdir(x, y) _mkdirU(x) struct fd_pair { int rd; int wr; }; void xpipe(int filedes[2]) FAST_FUNC; diff --git a/src/bled/xz_config.h b/src/bled/xz_config.h index 05d90af9..a79fa679 100644 --- a/src/bled/xz_config.h +++ b/src/bled/xz_config.h @@ -10,11 +10,18 @@ #ifndef XZ_CONFIG_H #define XZ_CONFIG_H +// We get XZ_OPTIONS_ERROR in xz_dec_stream if this is not defined +#define XZ_DEC_ANY_CHECK + /* Uncomment as needed to enable BCJ filter decoders. */ +#if defined(_M_AMD64) || defined(__x86_64__) || defined(_M_IX86) || defined(__i386__) #define XZ_DEC_X86 +#endif /* #define XZ_DEC_POWERPC */ /* #define XZ_DEC_IA64 */ -/* #define XZ_DEC_ARM */ +#if defined (_M_ARM) || defined(__arm__) || defined (_M_ARM64) || defined(__aarch64__) +#define XZ_DEC_ARM +#endif /* #define XZ_DEC_ARMTHUMB */ /* #define XZ_DEC_SPARC */ diff --git a/src/bled/xz_dec_stream.c b/src/bled/xz_dec_stream.c index b0184228..15c1a7be 100644 --- a/src/bled/xz_dec_stream.c +++ b/src/bled/xz_dec_stream.c @@ -368,7 +368,7 @@ static enum xz_ret XZ_FUNC crc32_validate(struct xz_dec *s, struct xz_buf *b) */ static bool XZ_FUNC check_skip(struct xz_dec *s, struct xz_buf *b) { - while (s->check_type < 16 && s->pos < check_sizes[s->check_type]) { + while (s->check_type >= 0 && s->check_type < 16 && s->pos < check_sizes[s->check_type]) { if (b->in_pos == b->in_size) return false; diff --git a/src/cregex.h b/src/cregex.h new file mode 100644 index 00000000..e6367812 --- /dev/null +++ b/src/cregex.h @@ -0,0 +1,140 @@ +#ifndef CREGEX_H +#define CREGEX_H + +#define REGEX_VM_MAX_MATCHES 64 + +typedef enum { + REGEX_NODE_TYPE_EPSILON = 0, + /* Characters */ + REGEX_NODE_TYPE_CHARACTER, + REGEX_NODE_TYPE_ANY_CHARACTER, + REGEX_NODE_TYPE_CHARACTER_CLASS, + REGEX_NODE_TYPE_CHARACTER_CLASS_NEGATED, + /* Composites */ + REGEX_NODE_TYPE_CONCATENATION, + REGEX_NODE_TYPE_ALTERNATION, + /* Quantifiers */ + REGEX_NODE_TYPE_QUANTIFIER, + /* Anchors */ + REGEX_NODE_TYPE_ANCHOR_BEGIN, + REGEX_NODE_TYPE_ANCHOR_END, + /* Captures */ + REGEX_NODE_TYPE_CAPTURE +} cregex_node_type; + +typedef struct cregex_node { + cregex_node_type type; + union { + /* REGEX_NODE_TYPE_CHARACTER */ + struct { + int ch; + }; + /* REGEX_NODE_TYPE_CHARACTER_CLASS, + * REGEX_NODE_TYPE_CHARACTER_CLASS_NEGATED + */ + struct { + const char *from, *to; + }; + /* REGEX_NODE_TYPE_QUANTIFIER */ + struct { + int nmin, nmax, greedy; + struct cregex_node *quantified; + }; + /* REGEX_NODE_TYPE_CONCATENATION, + * REGEX_NODE_TYPE_ALTERNATION + */ + struct { + struct cregex_node *left, *right; + }; + /* REGEX_NODE_TYPE_CAPTURE */ + struct { + struct cregex_node *captured; + }; + }; +} cregex_node_t; + +typedef enum { + REGEX_PROGRAM_OPCODE_MATCH = 0, + /* Characters */ + REGEX_PROGRAM_OPCODE_CHARACTER, + REGEX_PROGRAM_OPCODE_ANY_CHARACTER, + REGEX_PROGRAM_OPCODE_CHARACTER_CLASS, + REGEX_PROGRAM_OPCODE_CHARACTER_CLASS_NEGATED, + /* Control-flow */ + REGEX_PROGRAM_OPCODE_SPLIT, + REGEX_PROGRAM_OPCODE_JUMP, + /* Assertions */ + REGEX_PROGRAM_OPCODE_ASSERT_BEGIN, + REGEX_PROGRAM_OPCODE_ASSERT_END, + /* Saving */ + REGEX_PROGRAM_OPCODE_SAVE +} cregex_program_opcode_t; + +#include + +typedef char cregex_char_class[(UCHAR_MAX + CHAR_BIT - 1) / CHAR_BIT]; + +static inline int cregex_char_class_contains(const cregex_char_class klass, + int ch) +{ + return klass[ch / CHAR_BIT] & (1 << ch % CHAR_BIT); +} + +static inline int cregex_char_class_add(cregex_char_class klass, int ch) +{ + klass[ch / CHAR_BIT] |= 1 << (ch % CHAR_BIT); + return ch; +} + +typedef struct cregex_program_instr { + cregex_program_opcode_t opcode; + union { + /* REGEX_PROGRAM_OPCODE_CHARACTER */ + struct { + int ch; + }; + /* REGEX_PROGRAM_OPCODE_CHARACTER_CLASS, + * REGEX_PROGRAM_OPCODE_CHARACTER_CLASS_NEGATED + */ + struct { + cregex_char_class klass; + }; + /* REGEX_PROGRAM_OPCODE_SPLIT */ + struct { + struct cregex_program_instr *first, *second; + }; + /* REGEX_PROGRAM_OPCODE_JUMP */ + struct { + struct cregex_program_instr *target; + }; + /* REGEX_PROGRAM_OPCODE_SAVE */ + struct { + int save; + }; + }; +} cregex_program_instr_t; + +typedef struct { + int ninstructions; + cregex_program_instr_t instructions[]; +} cregex_program_t; + +/* Run program on string */ +int cregex_program_run(const cregex_program_t *program, + const char *string, + const char **matches, + int nmatches); + +/* Compile a parsed pattern */ +cregex_program_t *cregex_compile_node(const cregex_node_t *root); + +/* Free a compiled program */ +void cregex_compile_free(cregex_program_t *program); + +/* Parse a pattern */ +cregex_node_t *cregex_parse(const char *pattern); + +/* Free a parsed pattern */ +void cregex_parse_free(cregex_node_t *root); + +#endif diff --git a/src/cregex_compile.c b/src/cregex_compile.c new file mode 100644 index 00000000..df93278b --- /dev/null +++ b/src/cregex_compile.c @@ -0,0 +1,329 @@ +#include +#include + +#include "cregex.h" + +typedef struct { + cregex_program_instr_t *pc; + int ncaptures; +} regex_compile_context; + +static int count_instructions(const cregex_node_t *node) +{ + switch (node->type) { + case REGEX_NODE_TYPE_EPSILON: + return 0; + + /* Characters */ + case REGEX_NODE_TYPE_CHARACTER: + case REGEX_NODE_TYPE_ANY_CHARACTER: + case REGEX_NODE_TYPE_CHARACTER_CLASS: + case REGEX_NODE_TYPE_CHARACTER_CLASS_NEGATED: + return 1; + + /* Composites */ + case REGEX_NODE_TYPE_CONCATENATION: + return count_instructions(node->left) + count_instructions(node->right); + case REGEX_NODE_TYPE_ALTERNATION: + return 2 + count_instructions(node->left) + + count_instructions(node->right); + + /* Quantifiers */ + case REGEX_NODE_TYPE_QUANTIFIER: { + int num = count_instructions(node->quantified); + if (node->nmax >= node->nmin) + return node->nmin * num + (node->nmax - node->nmin) * (num + 1); + return 1 + (node->nmin ? node->nmin * num : num + 1); + } + + /* Anchors */ + case REGEX_NODE_TYPE_ANCHOR_BEGIN: + case REGEX_NODE_TYPE_ANCHOR_END: + return 1; + + /* Captures */ + case REGEX_NODE_TYPE_CAPTURE: + return 2 + count_instructions(node->captured); + } + + /* should not reach here */ + return 0; +} + +static bool node_is_anchored(const cregex_node_t *node) +{ + switch (node->type) { + case REGEX_NODE_TYPE_EPSILON: + return false; + + /* Characters */ + case REGEX_NODE_TYPE_CHARACTER: + case REGEX_NODE_TYPE_ANY_CHARACTER: + case REGEX_NODE_TYPE_CHARACTER_CLASS: + case REGEX_NODE_TYPE_CHARACTER_CLASS_NEGATED: + return false; + + /* Composites */ + case REGEX_NODE_TYPE_CONCATENATION: + return node_is_anchored(node->left); + case REGEX_NODE_TYPE_ALTERNATION: + return node_is_anchored(node->left) && node_is_anchored(node->right); + + /* Quantifiers */ + case REGEX_NODE_TYPE_QUANTIFIER: + return node_is_anchored(node->quantified); + + /* Anchors */ + case REGEX_NODE_TYPE_ANCHOR_BEGIN: + return true; + case REGEX_NODE_TYPE_ANCHOR_END: + return false; + + /* Captures */ + case REGEX_NODE_TYPE_CAPTURE: + return node_is_anchored(node->captured); + } + + /* should not reach here */ + return false; +} + +static inline cregex_program_instr_t *emit( + regex_compile_context *context, + const cregex_program_instr_t *instruction) +{ + *context->pc = *instruction; + return context->pc++; +} + +static cregex_program_instr_t *compile_char_class( + const cregex_node_t *node, + cregex_program_instr_t *instruction) +{ + const char *sp = node->from; + + for (;;) { + int ch = *sp++; + switch (ch) { + case ']': + if (sp - 1 == node->from) + goto CHARACTER; + return instruction; + case '\\': + ch = *sp++; + /* fall-through */ + default: + CHARACTER: + if (*sp == '-' && sp[1] != ']') { + for (; ch <= sp[1]; ++ch) + cregex_char_class_add(instruction->klass, ch); + sp += 2; + } else { + cregex_char_class_add(instruction->klass, ch); + } + break; + } + } +} + +static cregex_program_instr_t *compile_context(regex_compile_context *context, + const cregex_node_t *node) +{ + cregex_program_instr_t *bottom = context->pc, *split, *jump; + int ncaptures = context->ncaptures, capture; + + switch (node->type) { + case REGEX_NODE_TYPE_EPSILON: + break; + + /* Characters */ + case REGEX_NODE_TYPE_CHARACTER: + emit(context, + &(cregex_program_instr_t){.opcode = REGEX_PROGRAM_OPCODE_CHARACTER, + .ch = node->ch}); + break; + case REGEX_NODE_TYPE_ANY_CHARACTER: + emit(context, &(cregex_program_instr_t){ + .opcode = REGEX_PROGRAM_OPCODE_ANY_CHARACTER}); + break; + case REGEX_NODE_TYPE_CHARACTER_CLASS: + compile_char_class( + node, + emit(context, &(cregex_program_instr_t){ + .opcode = REGEX_PROGRAM_OPCODE_CHARACTER_CLASS})); + break; + case REGEX_NODE_TYPE_CHARACTER_CLASS_NEGATED: + compile_char_class( + node, + emit(context, + &(cregex_program_instr_t){ + .opcode = REGEX_PROGRAM_OPCODE_CHARACTER_CLASS_NEGATED})); + break; + + /* Composites */ + case REGEX_NODE_TYPE_CONCATENATION: + compile_context(context, node->left); + compile_context(context, node->right); + break; + case REGEX_NODE_TYPE_ALTERNATION: + split = emit(context, &(cregex_program_instr_t){ + .opcode = REGEX_PROGRAM_OPCODE_SPLIT}); + split->first = compile_context(context, node->left); + jump = emit(context, &(cregex_program_instr_t){ + .opcode = REGEX_PROGRAM_OPCODE_JUMP}); + split->second = compile_context(context, node->right); + jump->target = context->pc; + break; + + /* Quantifiers */ + case REGEX_NODE_TYPE_QUANTIFIER: { + cregex_program_instr_t *last = NULL; + for (int i = 0; i < node->nmin; ++i) { + context->ncaptures = ncaptures; + last = compile_context(context, node->quantified); + } + if (node->nmax > node->nmin) { + for (int i = 0; i < node->nmax - node->nmin; ++i) { + context->ncaptures = ncaptures; + split = + emit(context, &(cregex_program_instr_t){ + .opcode = REGEX_PROGRAM_OPCODE_SPLIT}); + split->first = compile_context(context, node->quantified); + split->second = context->pc; + if (!node->greedy) { + cregex_program_instr_t *swap = split->first; + split->first = split->second; + split->second = swap; + } + } + } else if (node->nmax == -1) { + split = emit(context, &(cregex_program_instr_t){ + .opcode = REGEX_PROGRAM_OPCODE_SPLIT}); + if (node->nmin == 0) { + split->first = compile_context(context, node->quantified); + jump = emit(context, &(cregex_program_instr_t){ + .opcode = REGEX_PROGRAM_OPCODE_JUMP}); + split->second = context->pc; + jump->target = split; + } else { + split->first = last; + split->second = context->pc; + } + if (!node->greedy) { + cregex_program_instr_t *swap = split->first; + split->first = split->second; + split->second = swap; + } + } + break; + } + + /* Anchors */ + case REGEX_NODE_TYPE_ANCHOR_BEGIN: + emit(context, &(cregex_program_instr_t){ + .opcode = REGEX_PROGRAM_OPCODE_ASSERT_BEGIN}); + break; + case REGEX_NODE_TYPE_ANCHOR_END: + emit(context, &(cregex_program_instr_t){ + .opcode = REGEX_PROGRAM_OPCODE_ASSERT_END}); + break; + + /* Captures */ + case REGEX_NODE_TYPE_CAPTURE: + capture = context->ncaptures++ * 2; + emit(context, + &(cregex_program_instr_t){.opcode = REGEX_PROGRAM_OPCODE_SAVE, + .save = capture}); + compile_context(context, node->captured); + emit(context, + &(cregex_program_instr_t){.opcode = REGEX_PROGRAM_OPCODE_SAVE, + .save = capture + 1}); + break; + } + + return bottom; +} + +/* Compile a parsed pattern (using a previously allocated program with at least + * estimate_instructions(root) instructions). + */ +#if defined __GNUC__ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wdangling-pointer" +#endif +static cregex_program_t *compile_node_with_program(const cregex_node_t *root, + cregex_program_t *program) +{ + /* Silence a MinGW warning about dangling pointers */ + static cregex_node_t* _root; + /* add capture node for entire match */ + root = &(cregex_node_t){.type = REGEX_NODE_TYPE_CAPTURE, + .captured = (cregex_node_t *) root}; + + /* add .*? unless pattern starts with ^ */ + if (!node_is_anchored(root)) { + _root = &(cregex_node_t){ + .type = REGEX_NODE_TYPE_CONCATENATION, + .left = + &(cregex_node_t){ + .type = REGEX_NODE_TYPE_QUANTIFIER, + .nmin = 0, + .nmax = -1, + .greedy = 0, + .quantified = &( + cregex_node_t){.type = REGEX_NODE_TYPE_ANY_CHARACTER}}, + .right = (cregex_node_t *) root}; + root = _root; + } + + /* compile */ + regex_compile_context *context = + &(regex_compile_context){.pc = program->instructions, .ncaptures = 0}; + compile_context(context, root); + + /* emit final match instruction */ + emit(context, + &(cregex_program_instr_t){.opcode = REGEX_PROGRAM_OPCODE_MATCH}); + + /* set total number of instructions */ + program->ninstructions = (int)(context->pc - program->instructions); + + return program; +} +#if defined __GNUC__ +#pragma GCC diagnostic pop +#endif + +/* Upper bound of number of instructions required to compile parsed pattern. */ +static int estimate_instructions(const cregex_node_t *root) +{ + return count_instructions(root) + /* .*? is added unless pattern starts with ^, + * save instructions are added for beginning and end of match, + * a final match instruction is added to the end of the program + */ + + !node_is_anchored(root) * 3 + 2 + 1; +} + +cregex_program_t *cregex_compile_node(const cregex_node_t *root) +{ + size_t size = sizeof(cregex_program_t) + + sizeof(cregex_program_instr_t) * estimate_instructions(root); + cregex_program_t *program; + + if (!(program = malloc(size))) + return NULL; + + if (!compile_node_with_program(root, program)) { + free(program); + return NULL; + } + + return program; +} + +/* Free a compiled program */ +void cregex_compile_free(cregex_program_t *program) +{ + free(program); +} diff --git a/src/cregex_parse.c b/src/cregex_parse.c new file mode 100644 index 00000000..b2a5b7ae --- /dev/null +++ b/src/cregex_parse.c @@ -0,0 +1,286 @@ +#include +#include +#include + +#include "cregex.h" + +typedef struct { + const char *sp; + cregex_node_t *stack, *output; +} regex_parse_context; + +/* Shunting-yard algorithm + * See https://en.wikipedia.org/wiki/Shunting-yard_algorithm + */ + +static inline cregex_node_t *push(regex_parse_context *context, + const cregex_node_t *node) +{ + assert(context->stack <= context->output); + *context->stack = *node; + return context->stack++; +} + +static inline cregex_node_t *drop(regex_parse_context *context) +{ + return --context->stack; +} + +static inline cregex_node_t *consume(regex_parse_context *context) +{ + *--context->output = *--context->stack; + return context->output; +} + +static inline cregex_node_t *concatenate(regex_parse_context *context, + const cregex_node_t *bottom) +{ + if (context->stack == bottom) + push(context, &(cregex_node_t){.type = REGEX_NODE_TYPE_EPSILON}); + else { + while (context->stack - 1 > bottom) { + cregex_node_t *right = consume(context); + cregex_node_t *left = consume(context); + push(context, + &(cregex_node_t){.type = REGEX_NODE_TYPE_CONCATENATION, + .left = left, + .right = right}); + } + } + return context->stack - 1; +} + +static cregex_node_t *parse_char_class(regex_parse_context *context) +{ + cregex_node_type type = + (*context->sp == '^') + ? (++context->sp, REGEX_NODE_TYPE_CHARACTER_CLASS_NEGATED) + : REGEX_NODE_TYPE_CHARACTER_CLASS; + const char *from = context->sp; + + for (;;) { + int ch = *context->sp++; + switch (ch) { + case '\0': + /* premature end of character class */ + return NULL; + case ']': + if (context->sp - 1 == from) + goto CHARACTER; + return push(context, + &(cregex_node_t){ + .type = type, .from = from, .to = context->sp - 1}); + case '\\': + ch = *context->sp++; + /* fall-through */ + default: + CHARACTER: + if (*context->sp == '-' && context->sp[1] != ']') { + if (context->sp[1] < ch) + /* empty range in character class */ + return NULL; + context->sp += 2; + } + break; + } + } +} + +static cregex_node_t *parse_interval(regex_parse_context *context) +{ + const char *from = context->sp; + int nmin, nmax; + + for (nmin = 0; *context->sp >= '0' && *context->sp <= '9'; ++context->sp) + nmin = (nmin * 10) + (*context->sp - '0'); + + if (*context->sp == ',') { + ++context->sp; + if (*from != ',' && *context->sp == '}') + nmax = -1; + else { + for (nmax = 0; *context->sp >= '0' && *context->sp <= '9'; + ++context->sp) + nmax = (nmax * 10) + (*context->sp - '0'); + if (*(context->sp - 1) == ',' || *context->sp != '}' || + nmax < nmin) { + context->sp = from; + return NULL; + } + } + } else if (*from != '}' && *context->sp == '}') { + nmax = nmin; + } else { + context->sp = from; + return NULL; + } + + ++context->sp; + return push(context, + &(cregex_node_t){ + .type = REGEX_NODE_TYPE_QUANTIFIER, + .nmin = nmin, + .nmax = nmax, + .greedy = (*context->sp == '?') ? (++context->sp, 0) : 1, + .quantified = consume(context)}); +} + +static cregex_node_t *parse_context(regex_parse_context *context, int depth) +{ + cregex_node_t *bottom = context->stack; + + for (;;) { + int ch = *context->sp++; + switch (ch) { + /* Characters */ + case '\\': + ch = *context->sp++; + /* fall-through */ + default: + CHARACTER: + push(context, + &(cregex_node_t){.type = REGEX_NODE_TYPE_CHARACTER, .ch = ch}); + break; + case '.': + push(context, + &(cregex_node_t){.type = REGEX_NODE_TYPE_ANY_CHARACTER}); + break; + case '[': + if (!parse_char_class(context)) + return NULL; + break; + + /* Composites */ + case '|': { + cregex_node_t *left = concatenate(context, bottom), *right; + if (!(right = parse_context(context, depth))) + return NULL; + if (left->type == REGEX_NODE_TYPE_EPSILON && + right->type == left->type) { + drop(context); + } else if (left->type == REGEX_NODE_TYPE_EPSILON) { + right = consume(context); + drop(context); + push(context, + &(cregex_node_t){.type = REGEX_NODE_TYPE_QUANTIFIER, + .nmin = 0, + .nmax = 1, + .greedy = 1, + .quantified = right}); + } else if (right->type == REGEX_NODE_TYPE_EPSILON) { + drop(context); + left = consume(context); + push(context, + &(cregex_node_t){.type = REGEX_NODE_TYPE_QUANTIFIER, + .nmin = 0, + .nmax = 1, + .greedy = 1, + .quantified = left}); + } else { + right = consume(context); + left = consume(context); + push(context, + &(cregex_node_t){.type = REGEX_NODE_TYPE_ALTERNATION, + .left = left, + .right = right}); + } + return bottom; + } + +#define QUANTIFIER(ch, min, max) \ + case ch: \ + if (context->stack == bottom) \ + goto CHARACTER; \ + push(context, \ + &(cregex_node_t){ \ + .type = REGEX_NODE_TYPE_QUANTIFIER, \ + .nmin = min, \ + .nmax = max, \ + .greedy = (*context->sp == '?') ? (++context->sp, 0) : 1, \ + .quantified = consume(context)}); \ + break + + /* clang-format off */ + /* Quantifiers */ + QUANTIFIER('?', 0, 1); + QUANTIFIER('*', 0, -1); + QUANTIFIER('+', 1, -1); + /* clang-format on */ +#undef QUANTIFIER + + case '{': + if ((context->stack == bottom) || !parse_interval(context)) + goto CHARACTER; + break; + + /* Anchors */ + case '^': + push(context, + &(cregex_node_t){.type = REGEX_NODE_TYPE_ANCHOR_BEGIN}); + break; + case '$': + push(context, &(cregex_node_t){.type = REGEX_NODE_TYPE_ANCHOR_END}); + break; + + /* Captures */ + case '(': + if (!parse_context(context, depth + 1)) + return NULL; + push(context, &(cregex_node_t){.type = REGEX_NODE_TYPE_CAPTURE, + .captured = consume(context)}); + break; + case ')': + if (depth > 0) + return concatenate(context, bottom); + /* unmatched close parenthesis */ + return NULL; + + /* End of string */ + case '\0': + if (depth == 0) + return concatenate(context, bottom); + /* unmatched open parenthesis */ + return NULL; + } + } +} + +static inline int estimate_nodes(const char *pattern) +{ + return (int)strlen(pattern) * 2; +} + +/* Parse a pattern (using a previously allocated buffer of at least + * estimate_nodes(pattern) nodes). + */ +static cregex_node_t *parse_with_nodes(const char *pattern, + cregex_node_t *nodes) +{ + regex_parse_context *context = + &(regex_parse_context){.sp = pattern, + .stack = nodes, + .output = nodes + estimate_nodes(pattern)}; + return parse_context(context, 0); +} + +cregex_node_t *cregex_parse(const char *pattern) +{ + size_t size = sizeof(cregex_node_t) * estimate_nodes(pattern); + cregex_node_t* nodes; + + nodes = malloc(size); + if (!nodes) + return NULL; + + if (!parse_with_nodes(pattern, nodes)) { + free(nodes); + return NULL; + } + + return nodes; +} + +void cregex_parse_free(cregex_node_t *root) +{ + free(root); +} diff --git a/src/cregex_vm.c b/src/cregex_vm.c new file mode 100644 index 00000000..79220172 --- /dev/null +++ b/src/cregex_vm.c @@ -0,0 +1,211 @@ +#include +#include + +#include "cregex.h" + +/* The VM executes one or more threads, each running a regular expression + * program, which is just a list of regular expression instructions. Each + * thread maintains two registers while it runs: a program counter (PC) and + * a string pointer (SP). + */ +typedef struct { + int visited; + const cregex_program_instr_t *pc; + const char *matches[REGEX_VM_MAX_MATCHES]; +} vm_thread; + +/* Run program on string */ +static int vm_run(const cregex_program_t *program, + const char *string, + const char **matches, + int nmatches); + +/* Run program on string (using a previously allocated buffer of at least + * vm_estimate_threads(program) threads) + */ +static int vm_run_with_threads(const cregex_program_t *program, + const char *string, + const char **matches, + int nmatches, + vm_thread *threads); + +typedef struct { + int nthreads; + vm_thread *threads; +} vm_thread_list; + +static void vm_add_thread(vm_thread_list *list, + const cregex_program_t *program, + const cregex_program_instr_t *pc, + const char *string, + const char *sp, + const char **matches, + int nmatches) +{ + if (list->threads[pc - program->instructions].visited == sp - string + 1) + return; + list->threads[pc - program->instructions].visited = (int)(sp - string + 1); + + switch (pc->opcode) { + case REGEX_PROGRAM_OPCODE_MATCH: + /* fall-through */ + + /* Characters */ + case REGEX_PROGRAM_OPCODE_CHARACTER: + case REGEX_PROGRAM_OPCODE_ANY_CHARACTER: + case REGEX_PROGRAM_OPCODE_CHARACTER_CLASS: + case REGEX_PROGRAM_OPCODE_CHARACTER_CLASS_NEGATED: + list->threads[list->nthreads].pc = pc; + memcpy((void*)list->threads[list->nthreads].matches, matches, + sizeof(matches[0]) * ((nmatches <= REGEX_VM_MAX_MATCHES) + ? nmatches + : REGEX_VM_MAX_MATCHES)); + ++list->nthreads; + break; + + /* Control-flow */ + case REGEX_PROGRAM_OPCODE_SPLIT: + vm_add_thread(list, program, pc->first, string, sp, matches, nmatches); + vm_add_thread(list, program, pc->second, string, sp, matches, nmatches); + break; + case REGEX_PROGRAM_OPCODE_JUMP: + vm_add_thread(list, program, pc->target, string, sp, matches, nmatches); + break; + + /* Assertions */ + case REGEX_PROGRAM_OPCODE_ASSERT_BEGIN: + if (sp == string) + vm_add_thread(list, program, pc + 1, string, sp, matches, nmatches); + break; + case REGEX_PROGRAM_OPCODE_ASSERT_END: + if (!*sp) + vm_add_thread(list, program, pc + 1, string, sp, matches, nmatches); + break; + + /* Saving */ + case REGEX_PROGRAM_OPCODE_SAVE: + if (pc->save < nmatches && pc->save < REGEX_VM_MAX_MATCHES) { + const char *saved = matches[pc->save]; + matches[pc->save] = sp; + vm_add_thread(list, program, pc + 1, string, sp, matches, nmatches); + matches[pc->save] = saved; + } else { + vm_add_thread(list, program, pc + 1, string, sp, matches, nmatches); + } + break; + } +} + +/* Upper bound of number of threads required to run program */ +static int vm_estimate_threads(const cregex_program_t *program) +{ + return program->ninstructions * 2; +} + +static int vm_run(const cregex_program_t *program, + const char *string, + const char **matches, + int nmatches) +{ + size_t size = sizeof(vm_thread) * vm_estimate_threads(program); + vm_thread *threads; + int matched; + + if (!(threads = malloc(size))) + return -1; + + matched = vm_run_with_threads(program, string, matches, nmatches, threads); + free(threads); + return matched; +} + +static int vm_run_with_threads(const cregex_program_t *program, + const char *string, + const char **matches, + int nmatches, + vm_thread *threads) +{ + vm_thread_list *current = + &(vm_thread_list){.nthreads = 0, .threads = threads}; + vm_thread_list *next = &(vm_thread_list){ + .nthreads = 0, .threads = threads + program->ninstructions}; + int matched = 0; + + memset(matches, 0, sizeof(char*) * nmatches); + memset(threads, 0, sizeof(vm_thread) * program->ninstructions * 2); + + vm_add_thread(current, program, program->instructions, string, string, + matches, nmatches); + + for (const char *sp = string;; ++sp) { + for (int i = 0; i < current->nthreads; ++i) { + vm_thread *thread = current->threads + i; + switch (thread->pc->opcode) { + case REGEX_PROGRAM_OPCODE_MATCH: + matched = 1; + current->nthreads = 0; + memcpy(matches, thread->matches, + sizeof(matches[0]) * ((nmatches <= REGEX_VM_MAX_MATCHES) + ? nmatches + : REGEX_VM_MAX_MATCHES)); + continue; + + /* Characters */ + case REGEX_PROGRAM_OPCODE_CHARACTER: + if (*sp == thread->pc->ch) + break; + continue; + case REGEX_PROGRAM_OPCODE_ANY_CHARACTER: + if (*sp) + break; + continue; + case REGEX_PROGRAM_OPCODE_CHARACTER_CLASS: + if (cregex_char_class_contains(thread->pc->klass, *sp)) + break; + continue; + case REGEX_PROGRAM_OPCODE_CHARACTER_CLASS_NEGATED: + if (!cregex_char_class_contains(thread->pc->klass, *sp)) + break; + continue; + + /* Control-flow */ + case REGEX_PROGRAM_OPCODE_SPLIT: + case REGEX_PROGRAM_OPCODE_JUMP: + /* fall-through */ + + /* Assertions */ + case REGEX_PROGRAM_OPCODE_ASSERT_BEGIN: + case REGEX_PROGRAM_OPCODE_ASSERT_END: + /* fall-through */ + + /* Saving */ + case REGEX_PROGRAM_OPCODE_SAVE: + /* handled in vm_add_thread() */ + abort(); + } + + vm_add_thread(next, program, thread->pc + 1, string, sp + 1, + thread->matches, nmatches); + } + + /* swap current and next thread list */ + vm_thread_list *swap = current; + current = next; + next = swap; + next->nthreads = 0; + + /* done if no more threads are running or end of string reached */ + if (current->nthreads == 0 || !*sp) + break; + } + + return matched; +} + +int cregex_program_run(const cregex_program_t *program, + const char *string, + const char **matches, + int nmatches) +{ + return vm_run(program, string, matches, nmatches); +} diff --git a/src/darkmode.c b/src/darkmode.c new file mode 100644 index 00000000..060e4ea6 --- /dev/null +++ b/src/darkmode.c @@ -0,0 +1,1205 @@ +/* + * Rufus: The Reliable USB Formatting Utility + * Dark mode UI implementation + * Copyright © 2025 ozone10 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* Memory leaks detection - define _CRTDBG_MAP_ALLOC as preprocessor macro */ +#ifdef _CRTDBG_MAP_ALLOC +#include +#include +#endif + +#include +#include +#include +#include +#include +#include + +#include "rufus.h" +#include "ui.h" +#include "settings.h" +#include "darkmode.h" + +PF_TYPE_DECL(WINAPI, BOOL, AllowDarkModeForWindow, (HWND, BOOL)); +PF_TYPE_DECL(WINAPI, PreferredAppMode, SetPreferredAppMode, (PreferredAppMode)); +PF_TYPE_DECL(WINAPI, VOID, FlushMenuThemes, (VOID)); +PF_TYPE_DECL(WINAPI, BOOL, SetWindowCompositionAttribute, (HWND, WINDOWCOMPOSITIONATTRIBDATA*)); + +BOOL is_darkmode_enabled = FALSE; + +static COLORREF color_accent = TOOLBAR_ICON_COLOR; + +static inline BOOL IsAtLeastWin10Build(DWORD buildNumber) +{ + OSVERSIONINFOEXW osvi = { 0 }; + + if (!IsWindows10OrGreater()) + return FALSE; + + osvi.dwOSVersionInfoSize = sizeof(osvi); + osvi.dwBuildNumber = buildNumber; + + return VerifyVersionInfoW(&osvi, VER_BUILDNUMBER, VerSetConditionMask(0, VER_BUILDNUMBER, VER_GREATER_EQUAL)); +} + +static inline BOOL IsAtLeastWin10(void) +{ + return IsAtLeastWin10Build(WIN10_1809); +} + +static inline BOOL IsAtLeastWin11(void) +{ + return IsAtLeastWin10Build(WIN11_21H2); +} + +static inline BOOL IsHighContrast(void) +{ + HIGHCONTRASTW highContrast = { 0 }; + + highContrast.cbSize = sizeof(HIGHCONTRASTW); + if (SystemParametersInfoW(SPI_GETHIGHCONTRAST, sizeof(HIGHCONTRASTW), &highContrast, FALSE)) + return (highContrast.dwFlags & HCF_HIGHCONTRASTON) == HCF_HIGHCONTRASTON; + return FALSE; +} + +BOOL GetDarkModeFromRegistry(void) +{ + DWORD data = 0, size = sizeof(data); + + if (!IsAtLeastWin10() || IsHighContrast()) + return FALSE; + + // 0 = follow system, 1 = dark mode always, anything else = light mode always + switch (ReadSetting32(SETTING_DARK_MODE)) { + case 0: + if (RegGetValueA(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize", + "AppsUseLightTheme", RRF_RT_REG_DWORD, NULL, &data, &size) == ERROR_SUCCESS) + // Dark mode is 0, light mode is 1 + return (data == 0); + return FALSE; + case 1: + return TRUE; + default: + return FALSE; + } +} + +void InitDarkMode(HWND hWnd) +{ + if (!IsAtLeastWin10() || IsHighContrast()) + goto out; + + PF_INIT_ID_OR_OUT(AllowDarkModeForWindow, UxTheme, 133); + PF_INIT_ID_OR_OUT(SetPreferredAppMode, UxTheme, 135); + PF_INIT_ID_OR_OUT(FlushMenuThemes, UxTheme, 136); + + pfAllowDarkModeForWindow(hWnd, is_darkmode_enabled); + pfSetPreferredAppMode(is_darkmode_enabled ? AppModeForceDark : AppModeForceLight); + pfFlushMenuThemes(); + return; + +out: + is_darkmode_enabled = FALSE; +} + +void SetDarkTitleBar(HWND hWnd) +{ + if (IsAtLeastWin11()) { + DwmSetWindowAttribute(hWnd, DWMWA_USE_IMMERSIVE_DARK_MODE, &is_darkmode_enabled, sizeof(is_darkmode_enabled)); + return; + } + if (IsAtLeastWin10Build(WIN10_1903)) { + PF_INIT_OR_OUT(SetWindowCompositionAttribute, user32); + WINDOWCOMPOSITIONATTRIBDATA data = { WCA_USEDARKMODECOLORS, &is_darkmode_enabled, sizeof(is_darkmode_enabled) }; + pfSetWindowCompositionAttribute(hWnd, &data); + return; + } + // only for Windows 10 1809 build 17763 + if (IsAtLeastWin10()) { + SetPropW(hWnd, L"UseImmersiveDarkModeColors", (HANDLE)(intptr_t)is_darkmode_enabled); + return; + } + +out: + is_darkmode_enabled = FALSE; +} + +void SetDarkTheme(HWND hWnd) +{ + SetWindowTheme(hWnd, is_darkmode_enabled ? L"DarkMode_Explorer" : NULL, NULL); +} + +/* + * Accent color functions + */ +// Adapted from https://stackoverflow.com/a/56678483 +static double LinearValue(double color_channel) +{ + color_channel /= 255.0; + if (color_channel <= 0.04045) + return color_channel / 12.92; + return pow((color_channel + 0.055) / 1.055, 2.4); +} + +static double CalculatePerceivedLightness(COLORREF clr) +{ + double r, g, b, luminance, lightness; + + r = LinearValue((double)GetRValue(clr)); + g = LinearValue((double)GetGValue(clr)); + b = LinearValue((double)GetBValue(clr)); + luminance = (0.2126 * r) + (0.7152 * g) + (0.0722 * b); + lightness = (luminance <= 216.0 / 24389.0) ? + (luminance * 24389.0 / 27.0) : + ((pow(luminance, 1.0 / 3.0) * 116.0) - 16.0); + return lightness; +} + +BOOL InitAccentColor(void) +{ + const double lightnessTreshold = 50.0 - 4.0; + BOOL opaque = TRUE; + + if (SUCCEEDED(DwmGetColorizationColor(&color_accent, &opaque))) { + color_accent = RGB(GetBValue(color_accent), GetGValue(color_accent), GetRValue(color_accent)); + // Check if accent color is too dark + if (CalculatePerceivedLightness(color_accent) < lightnessTreshold) { + color_accent = DARKMODE_TOOLBAR_ICON_COLOR; + return FALSE; + } + return TRUE; + } + color_accent = TOOLBAR_ICON_COLOR; + return FALSE; +} + +// Rufus uses monocolour icons, so changing colour is easy +BOOL ChangeIconColor(HICON* hIcon, COLORREF new_color) +{ + HDC hdcScreen = NULL, hdcBitmap = NULL; + HBITMAP hbm = NULL; + BITMAP bmp = { 0 }; + ICONINFO ii; + HICON hIconNew = NULL; + RGBQUAD* pixels = NULL; + + if (!*hIcon || !is_darkmode_enabled) + return FALSE; + + if (new_color == 0) + new_color = color_accent; + + hdcBitmap = CreateCompatibleDC(NULL); + hdcScreen = GetDC(NULL); + if (hdcScreen) { + if (hdcBitmap) { + if (GetIconInfo(*hIcon, &ii) && GetObject(ii.hbmColor, sizeof(BITMAP), &bmp)) { + BITMAPINFO bmi = { 0 }; + bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); + bmi.bmiHeader.biWidth = bmp.bmWidth; + bmi.bmiHeader.biHeight = -bmp.bmHeight; + bmi.bmiHeader.biPlanes = 1; + bmi.bmiHeader.biBitCount = 32; + bmi.bmiHeader.biCompression = BI_RGB; + + pixels = (RGBQUAD*)malloc((size_t)bmp.bmWidth * bmp.bmHeight * sizeof(RGBQUAD)); + if (pixels && GetDIBits(hdcBitmap, ii.hbmColor, 0, bmp.bmHeight, pixels, &bmi, DIB_RGB_COLORS)) { + for (int i = 0; i < bmp.bmWidth * bmp.bmHeight; i++) { + if (pixels[i].rgbReserved != 0) { + pixels[i].rgbRed = GetRValue(new_color); + pixels[i].rgbGreen = GetGValue(new_color); + pixels[i].rgbBlue = GetBValue(new_color); + } + } + + hbm = CreateCompatibleBitmap(hdcScreen, bmp.bmWidth, bmp.bmHeight); + if (hbm != NULL) { + SetDIBits(hdcBitmap, hbm, 0, bmp.bmHeight, pixels, &bmi, DIB_RGB_COLORS); + if (ii.hbmColor != NULL) + DeleteObject(ii.hbmColor); + ii.hbmColor = hbm; + hIconNew = CreateIconIndirect(&ii); + } else { + safe_free(pixels); + DeleteObject(ii.hbmColor); + DeleteObject(ii.hbmMask); + DeleteDC(hdcBitmap); + ReleaseDC(NULL, hdcScreen); + return FALSE; + } + } + + safe_free(pixels); + safe_delete_object(hbm); + DeleteObject(ii.hbmColor); + DeleteObject(ii.hbmMask); + } + } + ReleaseDC(NULL, hdcScreen); + } + + if (hdcBitmap != NULL) + DeleteDC(hdcBitmap); + + if (hIconNew == NULL) + return FALSE; + DestroyIcon(*hIcon); + *hIcon = hIconNew; + + return TRUE; +} + +/* + * Dark mode custom colors + */ +static ThemeResources theme_resources = { + NULL, NULL, NULL, NULL, NULL, NULL +}; + +static HBRUSH GetDlgBackgroundBrush(void) +{ + if (theme_resources.hbrBackground == NULL) + theme_resources.hbrBackground = CreateSolidBrush(DARKMODE_NORMAL_DIALOG_BACKGROUND_COLOR); + return theme_resources.hbrBackground; +} + +static HBRUSH GetCtrlBackgroundBrush(void) +{ + if (theme_resources.hbrBackgroundControl == NULL) + theme_resources.hbrBackgroundControl = CreateSolidBrush(DARKMODE_NORMAL_CONTROL_BACKGROUND_COLOR); + return theme_resources.hbrBackgroundControl; +} + +static HBRUSH GetHotBackgroundBrush(void) +{ + if (theme_resources.hbrBackgroundHot == NULL) + theme_resources.hbrBackgroundHot = CreateSolidBrush(DARKMODE_HOT_CONTROL_BACKGROUND_COLOR); + return theme_resources.hbrBackgroundHot; +} + +static HBRUSH GetEdgeBrush(void) +{ + if (theme_resources.hbrEdge == NULL) + theme_resources.hbrEdge = CreateSolidBrush(DARKMODE_NORMAL_CONTROL_EDGE_COLOR); + return theme_resources.hbrEdge; +} + +static HPEN GetEdgePen(void) +{ + if (theme_resources.hpnEdge == NULL) + theme_resources.hpnEdge = CreatePen(PS_SOLID, 1, DARKMODE_NORMAL_CONTROL_EDGE_COLOR); + return theme_resources.hpnEdge; +} +static HPEN GetHotEdgePen(void) +{ + if (theme_resources.hpnEdgeHot == NULL) + theme_resources.hpnEdgeHot = CreatePen(PS_SOLID, 1, DARKMODE_HOT_CONTROL_EDGE_COLOR); + return theme_resources.hpnEdgeHot; +} + +void DestroyDarkModeGDIObjects(void) +{ + safe_delete_object(theme_resources.hbrBackground); + safe_delete_object(theme_resources.hbrBackgroundControl); + safe_delete_object(theme_resources.hbrBackgroundHot); + safe_delete_object(theme_resources.hbrEdge); + safe_delete_object(theme_resources.hpnEdge); + safe_delete_object(theme_resources.hpnEdgeHot); +} + +/* + * Paint round rect helpers + */ +static void PaintRoundRect(HDC hdc, const RECT rect, HPEN hpen, HBRUSH hBrush, int width, int height) +{ + HBRUSH holdBrush = (HBRUSH)SelectObject(hdc, hBrush); + HPEN holdPen = (HPEN)SelectObject(hdc, hpen); + + RoundRect(hdc, rect.left, rect.top, rect.right, rect.bottom, width, height); + SelectObject(hdc, holdBrush); + SelectObject(hdc, holdPen); +} + +static void PaintRoundFrameRect(HDC hdc, const RECT rect, HPEN hpen, int width, int height) +{ + PaintRoundRect(hdc, rect, hpen, GetStockObject(NULL_BRUSH), width, height); +} + +/* + * Button section, checkbox, radio, and groupbox style buttons + */ +static void RenderButton(HWND hWnd, HDC hdc, HTHEME hTheme, int iPartID, int iStateID) +{ + HFONT hFont = NULL, hOldFont; + BOOL created_font = FALSE; + LOGFONT lf; + RECT rcClient = { 0 }, rcText = { 0 }, rcBackground, rcFocus; + WCHAR buffer[MAX_PATH] = { '\0' }; + SIZE szBox = { 0 }; + LONG_PTR nStyle = GetWindowLongPtr(hWnd, GWL_STYLE); + DWORD flags, ui_state; + DTTOPTS dtto = { 0 }; + + const BOOL isMultiline = (nStyle & BS_MULTILINE) == BS_MULTILINE; + const BOOL isTop = (nStyle & BS_TOP) == BS_TOP; + const BOOL isBottom = (nStyle & BS_BOTTOM) == BS_BOTTOM; + const BOOL isCenter = (nStyle & BS_CENTER) == BS_CENTER; + const BOOL isRight = (nStyle & BS_RIGHT) == BS_RIGHT; + const BOOL isVCenter = (nStyle & BS_VCENTER) == BS_VCENTER; + + if (SUCCEEDED(GetThemeFont(hTheme, hdc, iPartID, iStateID, TMT_FONT, &lf))) { + hFont = CreateFontIndirect(&lf); + created_font = TRUE; + } + if (!hFont) + hFont = (HFONT)SendMessage(hWnd, WM_GETFONT, 0, 0); + hOldFont = (HFONT)SelectObject(hdc, hFont); + + flags = DT_LEFT | (isMultiline ? DT_WORDBREAK : DT_SINGLELINE); + if (isCenter) + flags |= DT_CENTER; + else if (isRight) + flags |= DT_RIGHT; + if (isVCenter || (!isMultiline && !isBottom && !isTop)) + flags |= DT_VCENTER; + else if (isBottom) + flags |= DT_BOTTOM; + + ui_state = (DWORD)SendMessage(hWnd, WM_QUERYUISTATE, 0, 0); + if ((ui_state & UISF_HIDEACCEL) == UISF_HIDEACCEL) + flags |= DT_HIDEPREFIX; + + GetClientRect(hWnd, &rcClient); + GetWindowText(hWnd, buffer, _countof(buffer)); + GetThemePartSize(hTheme, hdc, iPartID, iStateID, NULL, TS_DRAW, &szBox); + GetThemeBackgroundContentRect(hTheme, hdc, iPartID, iStateID, &rcClient, &rcText); + rcBackground = rcClient; + if (!isMultiline) + rcBackground.top += (rcText.bottom - rcText.top - szBox.cy) / 2; + rcBackground.bottom = rcBackground.top + szBox.cy; + rcBackground.right = rcBackground.left + szBox.cx; + rcText.left = rcBackground.right + 3; + + DrawThemeParentBackground(hWnd, hdc, &rcClient); + DrawThemeBackground(hTheme, hdc, iPartID, iStateID, &rcBackground, NULL); + + dtto.dwSize = sizeof(DTTOPTS); + dtto.dwFlags = DTT_TEXTCOLOR; + dtto.crText = !IsWindowEnabled(hWnd) ? DARKMODE_DISABLED_TEXT_COLOR : DARKMODE_NORMAL_TEXT_COLOR; + + // coverity[negative_returns] + DrawThemeTextEx(hTheme, hdc, iPartID, iStateID, buffer, -1, flags, &rcText, &dtto); + + if (((SendMessage(hWnd, BM_GETSTATE, 0, 0) & BST_FOCUS) == BST_FOCUS) && ((ui_state & UISF_HIDEFOCUS) != UISF_HIDEFOCUS)) { + dtto.dwFlags |= DTT_CALCRECT; + // coverity[negative_returns] + DrawThemeTextEx(hTheme, hdc, iPartID, iStateID, buffer, -1, flags | DT_CALCRECT, &rcText, &dtto); + rcFocus = rcText; + rcFocus.bottom++; + rcFocus.left--; + rcFocus.right++; + DrawFocusRect(hdc, &rcFocus); + } + + SelectObject(hdc, hOldFont); + if (created_font) + DeleteObject(hFont); +} + +static void PaintButton(HWND hWnd, HDC hdc, ButtonData* pButtonData) +{ + const DWORD state = (DWORD)SendMessage(hWnd, BM_GETSTATE, 0, 0); + int part_id = BP_CHECKBOX, state_id = RBS_UNCHECKEDNORMAL; + BP_ANIMATIONPARAMS anim_params = { 0 }; + HANIMATIONBUFFER anim_buffer; + RECT rcClient = { 0 }; + HDC hdcFrom = NULL, hdcTo = NULL; + + switch (GetWindowLongPtr(hWnd, GWL_STYLE) & BS_TYPEMASK) { + case BS_CHECKBOX: + case BS_AUTOCHECKBOX: + case BS_3STATE: + case BS_AUTO3STATE: + part_id = BP_CHECKBOX; + break; + case BS_RADIOBUTTON: + case BS_AUTORADIOBUTTON: + part_id = BP_RADIOBUTTON; + break; + default: + break; + } + + // States of BP_CHECKBOX and BP_RADIOBUTTON are the same + if (!IsWindowEnabled(hWnd)) + state_id = RBS_UNCHECKEDDISABLED; + else if (state & BST_PUSHED) + state_id = RBS_UNCHECKEDPRESSED; + else if (state & BST_HOT) + state_id = RBS_UNCHECKEDHOT; + if (state & BST_CHECKED) + state_id += 4; + if (BufferedPaintRenderAnimation(hWnd, hdc)) + return; + + anim_params.cbSize = sizeof(BP_ANIMATIONPARAMS); + anim_params.style = BPAS_LINEAR; + if (state_id != pButtonData->iStateID) + GetThemeTransitionDuration(pButtonData->hTheme, part_id, pButtonData->iStateID, state_id, TMT_TRANSITIONDURATIONS, &anim_params.dwDuration); + + GetClientRect(hWnd, &rcClient); + anim_buffer = BeginBufferedAnimation(hWnd, hdc, &rcClient, BPBF_COMPATIBLEBITMAP, NULL, &anim_params, &hdcFrom, &hdcTo); + if (anim_buffer != NULL) { + if (hdcFrom != NULL) + RenderButton(hWnd, hdcFrom, pButtonData->hTheme, part_id, pButtonData->iStateID); + if (hdcTo != NULL) + RenderButton(hWnd, hdcTo, pButtonData->hTheme, part_id, state_id); + pButtonData->iStateID = state_id; + EndBufferedAnimation(anim_buffer, TRUE); + } else { + RenderButton(hWnd, hdc, pButtonData->hTheme, part_id, state_id); + pButtonData->iStateID = state_id; + } +} + +static LRESULT CALLBACK ButtonSubclass(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, + UINT_PTR uIdSubclass, DWORD_PTR dwRefData) +{ + ButtonData* data = (ButtonData*)dwRefData; + + switch (uMsg) { + case WM_NCDESTROY: + RemoveWindowSubclass(hWnd, ButtonSubclass, uIdSubclass); + if (data->hTheme != NULL) + CloseThemeData(data->hTheme); + free(data); + break; + + case WM_ERASEBKGND: + if (data->hTheme == NULL) + data->hTheme = OpenThemeData(hWnd, VSCLASS_BUTTON); + if (data->hTheme != NULL) + return TRUE; + break; + + case WM_PRINTCLIENT: + case WM_PAINT: + PAINTSTRUCT ps = { 0 }; + HDC hdc = (HDC)wParam; + if (data->hTheme == NULL) { + data->hTheme = OpenThemeData(hWnd, VSCLASS_BUTTON); + if (data->hTheme == NULL) + break; + } + if (hdc == NULL) + hdc = BeginPaint(hWnd, &ps); + PaintButton(hWnd, hdc, data); + if (ps.hdc != NULL) + EndPaint(hWnd, &ps); + return 0; + + case WM_THEMECHANGED: + if (data->hTheme != NULL) + CloseThemeData(data->hTheme); + break; + + case WM_SIZE: + case WM_DESTROY: + BufferedPaintStopAllAnimations(hWnd); + break; + + case WM_ENABLE: + // Skip the button's normal WindowProc so it won't redraw out of WM_PAINT + LRESULT lr = DefWindowProc(hWnd, uMsg, wParam, lParam); + InvalidateRect(hWnd, NULL, FALSE); + return lr; + + case WM_UPDATEUISTATE: + if (HIWORD(wParam) & (UISF_HIDEACCEL | UISF_HIDEFOCUS)) + InvalidateRect(hWnd, NULL, FALSE); + break; + } + return DefSubclassProc(hWnd, uMsg, wParam, lParam); +} + +static void SubclassButtonControl(HWND hWnd) +{ + void* data = NULL; + + if (GetWindowSubclass(hWnd, ButtonSubclass, (UINT_PTR)ButtonSubclassID, NULL)) + return; + + data = calloc(1, sizeof(ButtonData)); + SetWindowSubclass(hWnd, ButtonSubclass, (UINT_PTR)ButtonSubclassID, (DWORD_PTR)data); +} + +static void PaintGroupbox(HWND hWnd, HDC hdc, ButtonData buttonData) +{ + const int iStateID = IsWindowEnabled(hWnd) ? GBS_NORMAL : GBS_DISABLED; + const BOOL centered = (GetWindowLongPtr(hWnd, GWL_STYLE) & BS_CENTER) == BS_CENTER; + BOOL font_created = FALSE; + HFONT hFont = NULL, hOldFont; + LOGFONT lf; + WCHAR buffer[MAX_PATH] = { '\0' }; + SIZE szText = { 0 }; + RECT rcClient = { 0 }, rcText, rcBackground, rcContent; + + if (SUCCEEDED(GetThemeFont(buttonData.hTheme, hdc, BP_GROUPBOX, iStateID, TMT_FONT, &lf))) { + hFont = CreateFontIndirect(&lf); + font_created = TRUE; + } + if (hFont == NULL) { + hFont = (HFONT)SendMessage(hWnd, WM_GETFONT, 0, 0); + font_created = FALSE; + } + hOldFont = (HFONT)SelectObject(hdc, hFont); + GetWindowText(hWnd, buffer, _countof(buffer)); + GetClientRect(hWnd, &rcClient); + rcClient.bottom -= 1; + rcText = rcClient; rcBackground = rcClient; + + if (buffer[0]) { + GetTextExtentPoint32(hdc, buffer, (int)wcslen(buffer), &szText); + rcBackground.top += szText.cy / 2; + rcText.left += centered ? ((rcClient.right - rcClient.left - szText.cx) / 2) : 7; + rcText.bottom = rcText.top + szText.cy; + rcText.right = rcText.left + szText.cx + 4; + ExcludeClipRect(hdc, rcText.left, rcText.top, rcText.right, rcText.bottom); + } else { + GetTextExtentPoint32(hdc, L"M", 1, &szText); + rcBackground.top += szText.cy / 2; + } + rcContent = rcBackground; + + GetThemeBackgroundContentRect(buttonData.hTheme, hdc, BP_GROUPBOX, iStateID, &rcBackground, &rcContent); + ExcludeClipRect(hdc, rcContent.left, rcContent.top, rcContent.right, rcContent.bottom); + PaintRoundFrameRect(hdc, rcBackground, GetEdgePen(), 0, 0); + SelectClipRgn(hdc, NULL); + + if (buffer[0]) { + DTTOPTS dtto = { 0 }; + DWORD flags = centered ? DT_CENTER : DT_LEFT; + InflateRect(&rcText, -2, 0); + dtto.dwSize = sizeof(DTTOPTS); + dtto.dwFlags = DTT_TEXTCOLOR; + dtto.crText = IsWindowEnabled(hWnd) ? DARKMODE_NORMAL_TEXT_COLOR : DARKMODE_DISABLED_TEXT_COLOR; + if (SendMessage(hWnd, WM_QUERYUISTATE, 0, 0) != (LRESULT)NULL) + flags |= DT_HIDEPREFIX; + // coverity[negative_returns] + DrawThemeTextEx(buttonData.hTheme, hdc, BP_GROUPBOX, iStateID, buffer, -1, flags | DT_SINGLELINE, &rcText, &dtto); + } + + SelectObject(hdc, hOldFont); + if (font_created) + DeleteObject(hFont); +} + +static LRESULT CALLBACK GroupboxSubclass(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, + UINT_PTR uIdSubclass, DWORD_PTR dwRefData) +{ + ButtonData* data = (ButtonData*)dwRefData; + + switch (uMsg) { + case WM_NCDESTROY: + RemoveWindowSubclass(hWnd, ButtonSubclass, uIdSubclass); + if (data->hTheme != NULL) + CloseThemeData(data->hTheme); + free(data); + break; + + case WM_ERASEBKGND: + if (data->hTheme == NULL) + data->hTheme = OpenThemeData(hWnd, VSCLASS_BUTTON); + if (data->hTheme != NULL) + return TRUE; + break; + + case WM_PRINTCLIENT: + case WM_PAINT: + PAINTSTRUCT ps = { 0 }; + HDC hdc = (HDC)wParam; + if (data->hTheme == NULL) { + data->hTheme = OpenThemeData(hWnd, VSCLASS_BUTTON); + if (data->hTheme == NULL) + break; + } + if (hdc == NULL) + hdc = BeginPaint(hWnd, &ps); + PaintGroupbox(hWnd, hdc, *data); + if (ps.hdc != NULL) + EndPaint(hWnd, &ps); + return 0; + + case WM_THEMECHANGED: + if (data->hTheme != NULL) + CloseThemeData(data->hTheme); + break; + + case WM_ENABLE: + RedrawWindow(hWnd, NULL, NULL, RDW_INVALIDATE); + break; + } + return DefSubclassProc(hWnd, uMsg, wParam, lParam); +} + +static void SubclassGroupboxControl(HWND hWnd) +{ + void* data = NULL; + + if (GetWindowSubclass(hWnd, GroupboxSubclass, (UINT_PTR)GroupboxSubclassID, NULL)) + return; + + data = calloc(1, sizeof(ButtonData)); + SetWindowSubclass(hWnd, GroupboxSubclass, (UINT_PTR)GroupboxSubclassID, (DWORD_PTR)data); +} + +/* + * Toolbar section + */ +static LRESULT DarkToolBarNotifyCustomDraw(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) +{ + LPNMTBCUSTOMDRAW lpnmtbcd = (LPNMTBCUSTOMDRAW)lParam; + static int roundness = 0; + + switch (lpnmtbcd->nmcd.dwDrawStage) { + case CDDS_PREPAINT: + if (IsAtLeastWin11()) + roundness = 5; + FillRect(lpnmtbcd->nmcd.hdc, &lpnmtbcd->nmcd.rc, GetDlgBackgroundBrush()); + return CDRF_NOTIFYITEMDRAW; + + case CDDS_ITEMPREPAINT: + LRESULT lr = TBCDRF_USECDCOLORS; + lpnmtbcd->hbrMonoDither = GetDlgBackgroundBrush(); + lpnmtbcd->hbrLines = GetEdgeBrush(); + lpnmtbcd->hpenLines = GetEdgePen(); + lpnmtbcd->clrText = DARKMODE_NORMAL_TEXT_COLOR; + lpnmtbcd->clrTextHighlight = DARKMODE_NORMAL_TEXT_COLOR; + lpnmtbcd->clrBtnFace = DARKMODE_NORMAL_DIALOG_BACKGROUND_COLOR; + lpnmtbcd->clrBtnHighlight = DARKMODE_NORMAL_CONTROL_BACKGROUND_COLOR; + lpnmtbcd->clrHighlightHotTrack = DARKMODE_HOT_CONTROL_BACKGROUND_COLOR; + lpnmtbcd->nStringBkMode = TRANSPARENT; + lpnmtbcd->nHLStringBkMode = TRANSPARENT; + if ((lpnmtbcd->nmcd.uItemState & CDIS_HOT) == CDIS_HOT) { + PaintRoundRect(lpnmtbcd->nmcd.hdc, lpnmtbcd->nmcd.rc, GetHotEdgePen(), GetHotBackgroundBrush(), roundness, roundness); + lpnmtbcd->nmcd.uItemState &= ~(CDIS_CHECKED | CDIS_HOT); + } else if ((lpnmtbcd->nmcd.uItemState & CDIS_CHECKED) == CDIS_CHECKED) { + PaintRoundRect(lpnmtbcd->nmcd.hdc, lpnmtbcd->nmcd.rc, GetEdgePen(), GetCtrlBackgroundBrush(), roundness, roundness); + lpnmtbcd->nmcd.uItemState &= ~CDIS_CHECKED; + } + if ((lpnmtbcd->nmcd.uItemState & CDIS_SELECTED) == CDIS_SELECTED) + lr |= TBCDRF_NOBACKGROUND; + return lr; + + default: + break; + } + return DefSubclassProc(hWnd, uMsg, wParam, lParam); +} + +static LRESULT DarkTrackBarNotifyCustomDraw(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) +{ + LPNMCUSTOMDRAW lpnmcd = (LPNMCUSTOMDRAW)lParam; + + switch (lpnmcd->dwDrawStage) { + case CDDS_PREPAINT: + return CDRF_NOTIFYITEMDRAW; + + case CDDS_ITEMPREPAINT: + switch (lpnmcd->dwItemSpec) { + case TBCD_THUMB: + if ((lpnmcd->uItemState & CDIS_SELECTED) == CDIS_SELECTED) { + FillRect(lpnmcd->hdc, &lpnmcd->rc, GetCtrlBackgroundBrush()); + return CDRF_SKIPDEFAULT; + } + break; + + case TBCD_CHANNEL: + if (!IsWindowEnabled(lpnmcd->hdr.hwndFrom)) { + FillRect(lpnmcd->hdc, &lpnmcd->rc, GetDlgBackgroundBrush()); + PaintRoundFrameRect(lpnmcd->hdc, lpnmcd->rc, GetEdgePen(), 0, 0); + } else { + FillRect(lpnmcd->hdc, &lpnmcd->rc, GetCtrlBackgroundBrush()); + } + return CDRF_SKIPDEFAULT; + + default: + break; + } + break; + + default: + break; + } + return DefSubclassProc(hWnd, uMsg, wParam, lParam); +} + +static LRESULT CALLBACK WindowNotifySubclass(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, + UINT_PTR uIdSubclass, DWORD_PTR dwRefData) +{ + (void)dwRefData; + + switch (uMsg) { + case WM_NCDESTROY: + RemoveWindowSubclass(hWnd, WindowNotifySubclass, uIdSubclass); + break; + + case WM_NOTIFY: + LPNMHDR lpnmhdr = (LPNMHDR)lParam; + WCHAR str[32] = { 0 }; + GetClassName(lpnmhdr->hwndFrom, str, ARRAYSIZE(str)); + + switch (lpnmhdr->code) { + case NM_CUSTOMDRAW: + if (_wcsicmp(str, TOOLBARCLASSNAME) == 0) + return DarkToolBarNotifyCustomDraw(hWnd, uMsg, wParam, lParam); + if (_wcsicmp(str, TRACKBAR_CLASS) == 0) + return DarkTrackBarNotifyCustomDraw(hWnd, uMsg, wParam, lParam); + break; + } + break; + } + return DefSubclassProc(hWnd, uMsg, wParam, lParam); +} + +void SubclassNotifyCustomDraw(HWND hWnd) +{ + if (!GetWindowSubclass(hWnd, WindowNotifySubclass, (UINT_PTR)WindowNotifySubclassID, NULL)) + SetWindowSubclass(hWnd, WindowNotifySubclass, (UINT_PTR)WindowNotifySubclassID, 0); +} + +/* + * Status bar section + */ +static void PaintStatusBar(HWND hWnd, HDC hdc, StatusBarData statusBarData) +{ + const int last_div = (int)SendMessage(hWnd, SB_GETPARTS, 0, 0) - 1; + Borders borders = { 0 }; + RECT rcClient = { 0 }, rcPart = { 0 }, rcIntersect = { 0 }; + HPEN hOldPen = (HPEN)SelectObject(hdc, GetEdgePen()); + HFONT hOldFont = (HFONT)SelectObject(hdc, statusBarData.hFont); + LRESULT r1, r2; + LPWSTR buffer; + DWORD text_len; + UINT id; + + SendMessage(hWnd, SB_GETBORDERS, 0, (LPARAM)&borders); + SetBkMode(hdc, TRANSPARENT); + SetTextColor(hdc, DARKMODE_NORMAL_TEXT_COLOR); + GetClientRect(hWnd, &rcClient); + FillRect(hdc, &rcClient, GetDlgBackgroundBrush()); + + for (int i = 0; i <= last_div; i++) { + SendMessage(hWnd, SB_GETRECT, i, (LPARAM)&rcPart); + if (!IntersectRect(&rcIntersect, &rcPart, &rcClient)) + continue; + if (i < last_div) { + POINT edges[] = { + { rcPart.right - borders.between, rcPart.top + 1 }, + { rcPart.right - borders.between, rcPart.bottom - 3 } + }; + Polyline(hdc, edges, _countof(edges)); + } + + rcPart.left += borders.between; + rcPart.right -= borders.vertical; + + r1 = SendMessage(hWnd, SB_GETTEXTLENGTH, i, 0); + text_len = LOWORD(r1); + buffer = (LPWSTR)calloc((size_t)text_len + 1, sizeof(WCHAR)); + r2 = SendMessage(hWnd, SB_GETTEXT, i, (LPARAM)buffer); + if (text_len == 0 && (HIWORD(r1) & SBT_OWNERDRAW)) { + id = GetDlgCtrlID(hWnd); + DRAWITEMSTRUCT dis = { 0, 0, (UINT)i, ODA_DRAWENTIRE, id, hWnd, hdc, rcPart, (ULONG_PTR)r2 }; + SendMessage(GetParent(hWnd), WM_DRAWITEM, id, (LPARAM)&dis); + } else if (buffer != NULL) { + DrawText(hdc, buffer, (int)text_len, &rcPart, DT_SINGLELINE | DT_VCENTER | DT_LEFT); + } + free(buffer); + } + + POINT horizontal_edge[] = { { rcClient.left, rcClient.top }, { rcClient.right, rcClient.top } }; + Polyline(hdc, horizontal_edge, _countof(horizontal_edge)); + + SelectObject(hdc, hOldFont); + SelectObject(hdc, hOldPen); +} + +static LRESULT CALLBACK StatusBarSubclass(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, + UINT_PTR uIdSubclass, DWORD_PTR dwRefData) +{ + StatusBarData* data = (StatusBarData*)dwRefData; + + switch (uMsg) { + case WM_NCDESTROY: + RemoveWindowSubclass(hWnd, StatusBarSubclass, uIdSubclass); + if (data->hFont != NULL) { + DeleteObject(data->hFont); + data->hFont = NULL; + } + free(data); + break; + + case WM_ERASEBKGND: + return TRUE; + + case WM_PAINT: + PAINTSTRUCT ps; + HDC hdc = BeginPaint(hWnd, &ps); + PaintStatusBar(hWnd, hdc, *data); + EndPaint(hWnd, &ps); + return 0; + + case WM_THEMECHANGED: + NONCLIENTMETRICS ncm = { 0 }; + ncm.cbSize = sizeof(NONCLIENTMETRICS); + if (data->hFont != NULL) { + DeleteObject(data->hFont); + data->hFont = NULL; + } + if (SystemParametersInfo(SPI_GETNONCLIENTMETRICS, sizeof(NONCLIENTMETRICS), &ncm, 0)) + data->hFont = CreateFontIndirect(&ncm.lfStatusFont); + return 0; + } + return DefSubclassProc(hWnd, uMsg, wParam, lParam); +} + +void SubclassStatusBar(HWND hWnd) +{ + StatusBarData* data = NULL; + NONCLIENTMETRICS ncm = { 0 }; + ncm.cbSize = sizeof(NONCLIENTMETRICS); + + if (!is_darkmode_enabled || GetWindowSubclass(hWnd, StatusBarSubclass, (UINT_PTR)StatusBarSubclassID, NULL)) + return; + + data = (StatusBarData*)malloc(sizeof(StatusBarData)); + if (data == NULL) + return; + if (SystemParametersInfo(SPI_GETNONCLIENTMETRICS, sizeof(NONCLIENTMETRICS), &ncm, 0)) + data->hFont = CreateFontIndirect(&ncm.lfStatusFont); + SetWindowSubclass(hWnd, StatusBarSubclass, (UINT_PTR)StatusBarSubclassID, (DWORD_PTR)data); +} + +/* + * Progress bar section + */ +static void GetProgressBarRects(HWND hWnd, RECT* rcEmpty, RECT* rcFilled) +{ + const int pos = (int)SendMessage(hWnd, PBM_GETPOS, 0, 0); + PBRANGE range = { 0, 0 }; + SendMessage(hWnd, PBM_GETRANGE, TRUE, (LPARAM)&range); + const int min = range.iLow; + const int cur_pos = pos - min; + + if (cur_pos != 0) { + int totalWidth = rcEmpty->right - rcEmpty->left; + rcFilled->left = rcEmpty->left; + rcFilled->top = rcEmpty->top; + rcFilled->bottom = rcEmpty->bottom; + if (range.iHigh - min != 0) + rcFilled->right = rcEmpty->left + (int)((double)(cur_pos) / (range.iHigh - min) * totalWidth); + else + rcFilled->right = rcEmpty->right; + rcEmpty->left = rcFilled->right; // To avoid painting under filled part + } +} + +static void PaintProgressBar(HWND hWnd, HDC hdc, ProgressBarData progressBarData) +{ + RECT rcClient = { 0 }, rcFill = { 0 }; + + GetClientRect(hWnd, &rcClient); + PaintRoundFrameRect(hdc, rcClient, GetEdgePen(), 0, 0); + InflateRect(&rcClient, -1, -1); + rcClient.left = 1; + GetProgressBarRects(hWnd, &rcClient, &rcFill); + DrawThemeBackground(progressBarData.hTheme, hdc, PP_FILL, progressBarData.iStateID, &rcFill, NULL); + FillRect(hdc, &rcClient, GetCtrlBackgroundBrush()); +} + +static LRESULT CALLBACK ProgressBarSubclass(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, + UINT_PTR uIdSubclass, DWORD_PTR dwRefData) +{ + ProgressBarData* data = (ProgressBarData*)dwRefData; + + switch (uMsg) { + case WM_NCDESTROY: + RemoveWindowSubclass(hWnd, ProgressBarSubclass, uIdSubclass); + if (data->hTheme != NULL) + CloseThemeData(data->hTheme); + free(data); + break; + + case WM_ERASEBKGND: + if (data->hTheme == NULL) + data->hTheme = OpenThemeData(hWnd, VSCLASS_PROGRESS); + if (data->hTheme != NULL) + return TRUE; + break; + + case WM_PAINT: + PAINTSTRUCT ps; + HDC hdc; + if (data->hTheme == NULL) { + data->hTheme = OpenThemeData(hWnd, VSCLASS_PROGRESS); + if (data->hTheme == NULL) + break; + } + hdc = BeginPaint(hWnd, &ps); + PaintProgressBar(hWnd, hdc, *data); + EndPaint(hWnd, &ps); + return 0; + + case WM_THEMECHANGED: + if (data->hTheme != NULL) + CloseThemeData(data->hTheme); + break; + + case PBM_SETSTATE: + switch (wParam) { + case PBST_NORMAL: + data->iStateID = PBFS_NORMAL; // Green + break; + case PBST_ERROR: + data->iStateID = PBFS_ERROR; // Red + break; + case PBST_PAUSED: + data->iStateID = PBFS_PAUSED; // Yellow + break; + } + break; + } + return DefSubclassProc(hWnd, uMsg, wParam, lParam); +} + +void SubclassProgressBarControl(HWND hWnd) +{ + void* data = NULL; + + if (!is_darkmode_enabled || GetWindowSubclass(hWnd, ProgressBarSubclass, (UINT_PTR)ProgressBarSubclassID, NULL)) + return; + + data = calloc(1, sizeof(ProgressBarData)); + SetWindowSubclass(hWnd, ProgressBarSubclass, (UINT_PTR)ProgressBarSubclassID, (DWORD_PTR)data); +} + +/* + * Static text section + */ +static LRESULT CALLBACK StaticTextSubclass(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, + UINT_PTR uIdSubclass, DWORD_PTR dwRefData) +{ + StaticTextData* data = (StaticTextData*)dwRefData; + + switch (uMsg) { + case WM_NCDESTROY: + RemoveWindowSubclass(hWnd, StaticTextSubclass, uIdSubclass); + free(data); + break; + + case WM_ENABLE: + RECT rcClient = { 0 }; + const LONG_PTR style = GetWindowLongPtr(hWnd, GWL_STYLE); + data->disabled = (wParam == FALSE); + if (data->disabled) + SetWindowLongPtr(hWnd, GWL_STYLE, style & ~WS_DISABLED); + GetClientRect(hWnd, &rcClient); + MapWindowPoints(hWnd, GetParent(hWnd), (LPPOINT)&rcClient, 2); + RedrawWindow(GetParent(hWnd), &rcClient, NULL, RDW_INVALIDATE | RDW_UPDATENOW); + if (data->disabled) + SetWindowLongPtr(hWnd, GWL_STYLE, style | WS_DISABLED); + return 0; + } + return DefSubclassProc(hWnd, uMsg, wParam, lParam); +} + +static void SubclassStaticText(HWND hWnd) +{ + void* data = NULL; + + if (GetWindowSubclass(hWnd, StaticTextSubclass, (UINT_PTR)StaticTextSubclassID, NULL)) + return; + + data = calloc(1, sizeof(StaticTextData)); + SetWindowSubclass(hWnd, StaticTextSubclass, (UINT_PTR)StaticTextSubclassID, (DWORD_PTR)data); +} + +/* + * Ctl color messages section + */ +static LRESULT OnCtlColorDlg(HDC hdc) +{ + SetTextColor(hdc, DARKMODE_NORMAL_TEXT_COLOR); + SetBkColor(hdc, DARKMODE_NORMAL_DIALOG_BACKGROUND_COLOR); + return (LRESULT)GetDlgBackgroundBrush(); +} + +static LRESULT OnCtlColorStatic(WPARAM wParam, LPARAM lParam) +{ + HDC hdc = (HDC)wParam; + HWND hWnd = (HWND)lParam; + WCHAR str[32] = { 0 }; + + GetClassName(hWnd, str, ARRAYSIZE(str)); + if (_wcsicmp(str, WC_STATIC) == 0) { + if ((GetWindowLongPtr(hWnd, GWL_STYLE) & SS_NOTIFY) == SS_NOTIFY) { + DWORD_PTR dwRefData = 0; + COLORREF cText = color_accent; + if (GetWindowSubclass(hWnd, StaticTextSubclass, (UINT_PTR)StaticTextSubclassID, &dwRefData)) { + if (((StaticTextData*)dwRefData)->disabled) + cText = DARKMODE_DISABLED_TEXT_COLOR; + } + SetTextColor(hdc, cText); + SetBkColor(hdc, DARKMODE_NORMAL_DIALOG_BACKGROUND_COLOR); + return (LRESULT)GetDlgBackgroundBrush(); + } + } + // Read-only WC_EDIT + return OnCtlColorDlg(hdc); +} + +static LRESULT OnCtlColorCtrl(HDC hdc) +{ + SetTextColor(hdc, DARKMODE_NORMAL_TEXT_COLOR); + SetBkColor(hdc, DARKMODE_NORMAL_CONTROL_BACKGROUND_COLOR); + return (LRESULT)GetCtrlBackgroundBrush(); +} + +static INT_PTR OnCtlColorListbox(WPARAM wParam, LPARAM lParam) +{ + HDC hdc = (HDC)wParam; + HWND hWnd = (HWND)lParam; + const LONG_PTR nStyle = GetWindowLongPtr(hWnd, GWL_STYLE); + BOOL isComboBox = (nStyle & LBS_COMBOBOX) == LBS_COMBOBOX; + + if ((!isComboBox || !is_darkmode_enabled) && IsWindowEnabled(hWnd)) + return (INT_PTR)OnCtlColorCtrl(hdc); + + return (INT_PTR)OnCtlColorDlg(hdc); +} + +static LRESULT CALLBACK WindowCtlColorSubclass(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, + UINT_PTR uIdSubclass, DWORD_PTR dwRefData) +{ + (void)dwRefData; + + switch (uMsg) { + case WM_NCDESTROY: + RemoveWindowSubclass(hWnd, WindowCtlColorSubclass, uIdSubclass); + break; + case WM_CTLCOLOREDIT: + return OnCtlColorCtrl((HDC)wParam); + case WM_CTLCOLORLISTBOX: + return OnCtlColorListbox(wParam, lParam); + case WM_CTLCOLORDLG: + return OnCtlColorDlg((HDC)wParam); + case WM_CTLCOLORSTATIC: + return OnCtlColorStatic(wParam, lParam); + case WM_PRINTCLIENT: + return TRUE; + } + return DefSubclassProc(hWnd, uMsg, wParam, lParam); +} + +void SubclassCtlColor(HWND hWnd) +{ + if (!GetWindowSubclass(hWnd, WindowCtlColorSubclass, (UINT_PTR)WindowCtlColorSubclassID, NULL)) + SetWindowSubclass(hWnd, WindowCtlColorSubclass, (UINT_PTR)WindowCtlColorSubclassID, 0); +} + +/* + * Dark mode for child controls + */ +static BOOL CALLBACK DarkModeForChildCallback(HWND hWnd, LPARAM lParam) +{ + (void)lParam; + WCHAR str[32] = { 0 }; + GetClassName(hWnd, str, ARRAYSIZE(str)); + + if (_wcsicmp(str, WC_STATIC) == 0) { + if ((GetWindowLongPtr(hWnd, GWL_STYLE) & SS_NOTIFY) == SS_NOTIFY) + SubclassStaticText(hWnd); + } else if (_wcsicmp(str, WC_BUTTON) == 0) { + switch (GetWindowLongPtr(hWnd, GWL_STYLE) & BS_TYPEMASK) { + case BS_CHECKBOX: + case BS_AUTOCHECKBOX: + case BS_3STATE: + case BS_AUTO3STATE: + case BS_RADIOBUTTON: + case BS_AUTORADIOBUTTON: + if (IsAtLeastWin11()) + SetDarkTheme(hWnd); + SubclassButtonControl(hWnd); + break; + + case BS_GROUPBOX: + SubclassGroupboxControl(hWnd); + break; + + case BS_PUSHBUTTON: + case BS_DEFPUSHBUTTON: + case BS_SPLITBUTTON: + case BS_DEFSPLITBUTTON: + SetDarkTheme(hWnd); + break; + + default: + break; + } + } else if (_wcsicmp(str, WC_COMBOBOX) == 0) { + SetWindowTheme(hWnd, L"DarkMode_CFD", NULL); + } else if (_wcsicmp(str, TOOLBARCLASSNAME) == 0) { + HWND hTips = (HWND)SendMessage(hWnd, TB_GETTOOLTIPS, 0, 0); + if (hTips != NULL) { + SetDarkTheme(hTips); + } + } else if (_wcsicmp(str, WC_EDIT) == 0) { + const LONG_PTR style = GetWindowLongPtr(hWnd, GWL_STYLE); + const LONG_PTR ex_style = GetWindowLongPtr(hWnd, GWL_EXSTYLE); + if (((style & WS_VSCROLL) == WS_VSCROLL) || ((style & WS_HSCROLL) == WS_HSCROLL)) { + SetWindowLongPtr(hWnd, GWL_STYLE, style | WS_BORDER); + SetWindowLongPtr(hWnd, GWL_EXSTYLE, ex_style & ~WS_EX_CLIENTEDGE); + SetDarkTheme(hWnd); + } else { + SetWindowTheme(hWnd, L"DarkMode_CFD", NULL); + } + } else if (_wcsicmp(str, RICHEDIT_CLASS) == 0) { + const LONG_PTR style = GetWindowLongPtr(hWnd, GWL_STYLE); + const LONG_PTR ex_style = GetWindowLongPtr(hWnd, GWL_EXSTYLE); + const BOOL has_static_edge = (ex_style & WS_EX_STATICEDGE) == WS_EX_STATICEDGE; + CHARFORMATW cf = { 0 }; + cf.cbSize = sizeof(CHARFORMATW); + cf.dwMask = CFM_COLOR; + cf.crTextColor = DARKMODE_NORMAL_TEXT_COLOR; + SendMessage(hWnd, EM_SETBKGNDCOLOR, 0, (LPARAM)(has_static_edge ? + DARKMODE_NORMAL_CONTROL_BACKGROUND_COLOR : DARKMODE_NORMAL_DIALOG_BACKGROUND_COLOR)); + SendMessage(hWnd, EM_SETCHARFORMAT, SCF_DEFAULT, (LPARAM)&cf); + SetWindowLongPtr(hWnd, GWL_STYLE, style | WS_BORDER); + SetWindowLongPtr(hWnd, GWL_EXSTYLE, ex_style & ~WS_EX_STATICEDGE); + SetWindowTheme(hWnd, NULL, L"DarkMode_Explorer::ScrollBar"); + } + + return TRUE; +} + +void SetDarkModeForChild(HWND hParent) +{ + if (is_darkmode_enabled) + EnumChildWindows(hParent, DarkModeForChildCallback, (LPARAM)NULL); +} diff --git a/src/darkmode.h b/src/darkmode.h new file mode 100644 index 00000000..9b63d317 --- /dev/null +++ b/src/darkmode.h @@ -0,0 +1,151 @@ +/* + * Rufus: The Reliable USB Formatting Utility + * Dark mode UI implementation + * Copyright © 2025 ozone10 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once + +#include +#include + +extern BOOL is_darkmode_enabled; + +typedef enum _WindowsBuild { + WIN10_1809 = 17763, // first build to support dark mode + WIN10_1903 = 18362, + WIN10_22H2 = 19045, + WIN11_21H2 = 22000, +} WindowsBuild; + +typedef enum _SubclassID { + ButtonSubclassID = 42, + GroupboxSubclassID, + WindowNotifySubclassID, + StatusBarSubclassID, + ProgressBarSubclassID, + StaticTextSubclassID, + WindowCtlColorSubclassID +} SubclassID; + +typedef enum _PreferredAppMode { + AppModeDefault, + AppModeAllowDark, + AppModeForceDark, + AppModeForceLight, +} PreferredAppMode; + +typedef enum _WINDOWCOMPOSITIONATTRIB { + WCA_UNDEFINED = 0, + WCA_NCRENDERING_ENABLED = 1, + WCA_NCRENDERING_POLICY = 2, + WCA_TRANSITIONS_FORCEDISABLED = 3, + WCA_ALLOW_NCPAINT = 4, + WCA_CAPTION_BUTTON_BOUNDS = 5, + WCA_NONCLIENT_RTL_LAYOUT = 6, + WCA_FORCE_ICONIC_REPRESENTATION = 7, + WCA_EXTENDED_FRAME_BOUNDS = 8, + WCA_HAS_ICONIC_BITMAP = 9, + WCA_THEME_ATTRIBUTES = 10, + WCA_NCRENDERING_EXILED = 11, + WCA_NCADORNMENTINFO = 12, + WCA_EXCLUDED_FROM_LIVEPREVIEW = 13, + WCA_VIDEO_OVERLAY_ACTIVE = 14, + WCA_FORCE_ACTIVEWINDOW_APPEARANCE = 15, + WCA_DISALLOW_PEEK = 16, + WCA_CLOAK = 17, + WCA_CLOAKED = 18, + WCA_ACCENT_POLICY = 19, + WCA_FREEZE_REPRESENTATION = 20, + WCA_EVER_UNCLOAKED = 21, + WCA_VISUAL_OWNER = 22, + WCA_HOLOGRAPHIC = 23, + WCA_EXCLUDED_FROM_DDA = 24, + WCA_PASSIVEUPDATEMODE = 25, + WCA_USEDARKMODECOLORS = 26, + WCA_LAST = 27 +} WINDOWCOMPOSITIONATTRIB; + +typedef struct _WINDOWCOMPOSITIONATTRIBDATA { + WINDOWCOMPOSITIONATTRIB Attrib; + PVOID pvData; + SIZE_T cbData; +} WINDOWCOMPOSITIONATTRIBDATA; + +typedef struct { + HBRUSH hbrBackground; + HBRUSH hbrBackgroundControl; + HBRUSH hbrBackgroundHot; + HBRUSH hbrEdge; + HPEN hpnEdge; + HPEN hpnEdgeHot; +} ThemeResources; + +typedef struct { + HTHEME hTheme; + int iStateID; +} ButtonData; + +typedef struct { + HFONT hFont; +} StatusBarData; + +typedef struct { + HTHEME hTheme; + int iStateID; +} ProgressBarData; + +typedef struct { + BOOL disabled; +} StaticTextData; + +typedef struct { + int horizontal; + int vertical; + int between; +} Borders; + +BOOL GetDarkModeFromRegistry(void); +void InitDarkMode(HWND hWnd); +void SetDarkTitleBar(HWND hWnd); +void SetDarkTheme(HWND hWnd); +BOOL InitAccentColor(void); +BOOL ChangeIconColor(HICON* hIcon, COLORREF newColor); +void DestroyDarkModeGDIObjects(void); +void SubclassCtlColor(HWND hWnd); +void SubclassNotifyCustomDraw(HWND hWnd); +void SubclassStatusBar(HWND hWnd); +void SubclassProgressBarControl(HWND hWnd); +void SetDarkModeForChild(HWND hParent); + +static __inline void SetDarkModeForDlg(HWND hWnd) +{ + if (is_darkmode_enabled) { + SetDarkTitleBar(hWnd); + SubclassCtlColor(hWnd); + } +} + +static __inline void InitAndSetDarkModeForMainDlg(HWND hWnd) +{ + is_darkmode_enabled = GetDarkModeFromRegistry(); + if (is_darkmode_enabled) { + InitDarkMode(hWnd); + InitAccentColor(); + SetDarkModeForDlg(hWnd); + SubclassNotifyCustomDraw(hWnd); + } +} diff --git a/src/db.h b/src/db.h index 1b5a872b..c4982b45 100644 --- a/src/db.h +++ b/src/db.h @@ -1,8 +1,8 @@ /* * Rufus: The Reliable USB Formatting Utility * DB of the known SHA256 hash values for Rufus downloadable content (GRUB, Syslinux, etc.) - * as well PE256 hash values for UEFI revoked content (DBX, SkuSiPolicy.p7b) - * Copyright © 2016-2025 Pete Batard + * as well other data for UEFI revoked content (SBAT, certs). + * Copyright © 2016-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -31,6 +31,8 @@ static uint8_t sha256db[] = { 0x11, 0x0c, 0x50, 0x1b, 0xfa, 0x9e, 0x72, 0xa8, 0x8c, 0xdb, 0xb8, 0xba, 0x11, 0xe1, 0xf0, 0x76, 0x1a, 0xec, 0x28, 0xbf, 0x04, 0x44, 0x67, 0xff, 0x38, 0x2c, 0x06, 0x95, 0xd5, 0x1f, 0x8a, 0x83, // grub-2.04-nonstandard/core.img 0x12, 0xbd, 0x22, 0xd2, 0xb3, 0x69, 0x56, 0x0f, 0x89, 0xb8, 0x50, 0x7e, 0x7e, 0x74, 0xeb, 0xc5, 0xea, 0x44, 0x91, 0x48, 0x75, 0xf0, 0xa4, 0xcb, 0x1e, 0xa6, 0xfb, 0x4e, 0xc9, 0x89, 0x58, 0x17, // syslinux-6.03/pre6/ldlinux.sys 0x15, 0x5f, 0x36, 0x7b, 0xb1, 0x30, 0xfe, 0x05, 0x5c, 0x79, 0x9f, 0x88, 0xb3, 0xc0, 0xc1, 0xa0, 0x0a, 0x18, 0x05, 0x78, 0x22, 0x69, 0xcf, 0x7e, 0x54, 0xaa, 0x61, 0xbd, 0xe3, 0x8e, 0x05, 0x92, // syslinux-6.03/pre3/ldlinux.bss + 0x15, 0x90, 0x28, 0x95, 0x48, 0x7c, 0x08, 0x4c, 0x8f, 0x57, 0x46, 0x66, 0xc3, 0x1e, 0x7f, 0xa3, 0x99, 0xd0, 0x5b, 0x83, 0x1f, 0xd6, 0x1c, 0x1e, 0x3c, 0x3e, 0xee, 0x69, 0xd6, 0x57, 0x69, 0x24, // grub-2.12/core.img + 0x19, 0xba, 0x57, 0x32, 0x9b, 0xe7, 0x45, 0xce, 0xae, 0x46, 0x35, 0x4c, 0x5d, 0x41, 0x1b, 0x7d, 0x8e, 0xfe, 0xc6, 0x80, 0x2c, 0xfd, 0x7f, 0x6f, 0xee, 0x98, 0x6d, 0xf4, 0xb7, 0x63, 0xf6, 0xfe, // grub4dos-0.4.6a/grldr 0x1c, 0xb7, 0x8b, 0x98, 0xbc, 0xd6, 0x76, 0x7b, 0x01, 0x44, 0xf5, 0x00, 0xaf, 0x81, 0xef, 0x4f, 0x3c, 0x54, 0xea, 0xaf, 0xe3, 0xc9, 0x4e, 0x1f, 0xd6, 0x24, 0x68, 0x41, 0x4e, 0x98, 0x92, 0x25, // syslinux-6.03/pre20/ldlinux.bss 0x1c, 0xc6, 0x32, 0x21, 0xfd, 0xf4, 0x46, 0xfc, 0xda, 0xc6, 0xc0, 0x56, 0x35, 0x79, 0x54, 0xc1, 0x5b, 0x61, 0x75, 0xca, 0x1b, 0xc2, 0xa4, 0x9f, 0x85, 0x52, 0xec, 0xca, 0x28, 0xac, 0x3e, 0x51, // syslinux-6.02/ldlinux.bss 0x22, 0x96, 0x82, 0xac, 0x61, 0xb8, 0x8b, 0x11, 0x25, 0xfc, 0xd7, 0xe6, 0x9f, 0x4e, 0x7f, 0x46, 0x7f, 0x68, 0xc5, 0x14, 0x9e, 0xb9, 0x37, 0x1a, 0x98, 0xd8, 0xf2, 0x78, 0x41, 0x40, 0xad, 0x88, // syslinux-5.00/ldlinux.sys @@ -82,13 +84,16 @@ static uint8_t sha256db[] = { 0x82, 0x11, 0xfa, 0xe8, 0xaf, 0xf0, 0x23, 0x3f, 0x05, 0xa8, 0xb7, 0x8c, 0x58, 0x15, 0x25, 0xe2, 0x81, 0xac, 0x98, 0x23, 0x54, 0xa8, 0xc4, 0x3b, 0xb4, 0x96, 0x5e, 0x61, 0xdc, 0x98, 0xb4, 0x62, // syslinux-6.03/pre8/ldlinux.bss 0x83, 0x57, 0xaa, 0xd3, 0x6a, 0xec, 0x68, 0x21, 0xcb, 0xf2, 0x17, 0x4d, 0xb5, 0xd2, 0x09, 0xef, 0x2c, 0xd2, 0x62, 0x88, 0x12, 0x39, 0xeb, 0xc3, 0xf4, 0xc1, 0xcf, 0x55, 0xab, 0x10, 0xee, 0x55, // grub-2.12~rc1/core.img 0x83, 0x9b, 0xd0, 0x8a, 0xcb, 0x68, 0x47, 0xd6, 0x55, 0x07, 0xf1, 0x4e, 0x7a, 0x55, 0x6e, 0x91, 0xe6, 0x12, 0x9c, 0x47, 0x86, 0x3f, 0x7d, 0x61, 0xe2, 0xce, 0x6d, 0xb7, 0x8d, 0xf3, 0xd2, 0x3f, // syslinux-6.03/pre9/ldlinux.bss + 0x84, 0x73, 0x50, 0x4a, 0x84, 0x9c, 0x89, 0x83, 0x29, 0xcb, 0x90, 0x92, 0xf2, 0x5e, 0x26, 0x9d, 0x4e, 0x19, 0x3b, 0xc7, 0x72, 0xf8, 0x48, 0x9f, 0xa2, 0xc5, 0xd5, 0xa5, 0xd2, 0xd8, 0x87, 0x74, // grub-2.12-nonstandard-gdie/core.img 0x87, 0xaa, 0x91, 0xf8, 0x7f, 0xba, 0x5f, 0x31, 0x79, 0x43, 0x08, 0xda, 0xa4, 0xa4, 0x8d, 0xad, 0x6c, 0xf6, 0xfa, 0x34, 0x26, 0x4d, 0x66, 0xb8, 0x84, 0xb8, 0xb9, 0xdc, 0x96, 0x42, 0xed, 0x86, // syslinux-5.02/ldlinux.sys 0x88, 0x14, 0xe5, 0x76, 0xab, 0xc1, 0xaa, 0x44, 0xdd, 0xe9, 0x43, 0xb0, 0xca, 0xae, 0xe8, 0x33, 0xa5, 0x81, 0x01, 0x42, 0x61, 0x4a, 0xde, 0xeb, 0x4c, 0xc7, 0x25, 0xe7, 0x8a, 0x50, 0x45, 0xb7, // syslinux-6.03/ldlinux.bss 0x8b, 0x93, 0x7e, 0x5e, 0x8b, 0xae, 0x5a, 0xf8, 0xc8, 0x95, 0x63, 0xc0, 0x0e, 0x9c, 0xaf, 0xc6, 0xcd, 0x7c, 0x2c, 0x80, 0x8a, 0xda, 0x7b, 0xf4, 0xad, 0x51, 0x08, 0xda, 0x3e, 0x51, 0xcd, 0x70, // grub-2.00-22/core.img 0x8e, 0xc8, 0x42, 0x06, 0x94, 0x4c, 0xd4, 0x3d, 0xf6, 0xba, 0x83, 0x63, 0xc0, 0x81, 0xe4, 0xa0, 0x82, 0x9e, 0x71, 0x9a, 0xbf, 0x5a, 0x46, 0x6d, 0x7c, 0x81, 0x0c, 0x2f, 0x5b, 0x6d, 0x13, 0x75, // syslinux-6.03/pre5/ldlinux.sys 0x95, 0x8d, 0x10, 0xbb, 0x87, 0x28, 0xcc, 0x1f, 0xf1, 0x6a, 0x12, 0xee, 0x6a, 0x60, 0x62, 0x40, 0xa6, 0xb7, 0x4d, 0xab, 0xa0, 0x2b, 0x8c, 0xb8, 0xed, 0x2a, 0xe8, 0x1c, 0x2f, 0xb2, 0x5b, 0x97, // syslinux-6.00/ldlinux.bss 0x9a, 0x0b, 0xc4, 0x1b, 0xd7, 0x95, 0xed, 0xb0, 0x83, 0x0f, 0x1c, 0xc4, 0x82, 0x4b, 0xfa, 0x9d, 0xe0, 0x9d, 0x68, 0x63, 0x92, 0x09, 0x4f, 0x5a, 0xe7, 0xfb, 0xac, 0xfb, 0xb0, 0x17, 0x9d, 0xa6, // syslinux-6.03/pre1/ldlinux.bss + 0x9a, 0x2c, 0x94, 0x67, 0x04, 0x01, 0x7f, 0xa8, 0xdc, 0x4e, 0x03, 0xa8, 0xa5, 0x8d, 0x75, 0x4d, 0x2d, 0x16, 0x07, 0xc2, 0xd2, 0xcd, 0x74, 0xf0, 0xe2, 0x92, 0x01, 0x33, 0xf1, 0x19, 0x28, 0x09, // grub-2.14/core.img 0x9b, 0xcc, 0x65, 0x92, 0xa7, 0xba, 0x7e, 0x73, 0x38, 0xf4, 0xbb, 0xba, 0x27, 0xc6, 0x30, 0x16, 0xb9, 0x5e, 0xcb, 0x1e, 0xc6, 0x8c, 0x0b, 0xe9, 0xb6, 0x99, 0xb2, 0xea, 0x69, 0xcb, 0xab, 0xb2, // syslinux-5.00/ldlinux.c32 + 0xa2, 0xa8, 0x76, 0x93, 0x71, 0xeb, 0x57, 0xc5, 0xe7, 0x9b, 0x3c, 0xea, 0x4a, 0x91, 0x12, 0x75, 0xaf, 0x47, 0x43, 0xf1, 0x0f, 0x42, 0x0e, 0xd6, 0xd2, 0x6e, 0x4e, 0xec, 0x5c, 0x86, 0x50, 0x59, // grub4dos-0.4.6a/grldr.mbr 0xa6, 0x82, 0x43, 0xa0, 0xf2, 0xe5, 0x90, 0xb8, 0x14, 0x02, 0xd6, 0xfa, 0x62, 0xd4, 0xfd, 0x30, 0x94, 0x8c, 0x00, 0x3d, 0xa1, 0x2b, 0xfe, 0xeb, 0x69, 0xba, 0x20, 0x34, 0x17, 0x27, 0x09, 0x4c, // syslinux-6.03/pre14/ldlinux.sys 0xa9, 0x4a, 0x99, 0xe6, 0xde, 0x68, 0x81, 0x44, 0x49, 0x2b, 0x38, 0xdb, 0xee, 0x09, 0xde, 0x07, 0x30, 0xe3, 0x2e, 0x1c, 0xfd, 0x0a, 0xb2, 0x54, 0x99, 0x22, 0xff, 0xa8, 0x04, 0x01, 0xad, 0x49, // syslinux-6.03/pre2/ldlinux.bss 0xa9, 0x95, 0x68, 0x57, 0x9c, 0xd2, 0x51, 0xaf, 0xf1, 0x34, 0xfc, 0xaa, 0xa8, 0x09, 0x91, 0x60, 0x5e, 0x8f, 0xb1, 0x19, 0x74, 0x51, 0xf7, 0x51, 0xaa, 0x4d, 0x6c, 0x84, 0xbf, 0x65, 0xf4, 0xe3, // syslinux-6.03/pre15/ldlinux.sys @@ -100,6 +105,7 @@ static uint8_t sha256db[] = { 0xb3, 0xdc, 0x31, 0x79, 0xf6, 0x2b, 0x20, 0x51, 0xc9, 0x43, 0xe5, 0x2e, 0xeb, 0xf2, 0x29, 0x8a, 0xa4, 0x7e, 0x7c, 0x0a, 0x97, 0x78, 0xe8, 0x62, 0x77, 0xa7, 0x48, 0x2a, 0x27, 0x0a, 0x7a, 0x8e, // syslinux-6.01/ldlinux.bss 0xb4, 0x6a, 0xf2, 0x09, 0x19, 0xe9, 0xf2, 0x1f, 0xa1, 0x52, 0x37, 0x5d, 0xda, 0xc4, 0x58, 0x87, 0x08, 0xc1, 0x22, 0xb3, 0x65, 0x7f, 0x09, 0x01, 0x31, 0x4e, 0x83, 0x45, 0x49, 0xa9, 0x6c, 0xe7, // syslinux-4.07/menu.c32 0xbc, 0x3f, 0xb7, 0x6d, 0xbc, 0xd6, 0x32, 0x37, 0xc3, 0x68, 0x8d, 0x3b, 0x55, 0x3c, 0x99, 0x41, 0x0e, 0x8f, 0xb3, 0x9e, 0x52, 0x00, 0x9d, 0xdc, 0xeb, 0xb8, 0x8e, 0xe7, 0xd2, 0x5a, 0xec, 0xa8, // grub-2.03.5/core.img + 0xbf, 0x05, 0x9b, 0x7f, 0x9d, 0xc5, 0x1d, 0x08, 0xb7, 0xa9, 0x36, 0x81, 0xcc, 0xc7, 0x82, 0xdc, 0x46, 0x4e, 0x43, 0xe6, 0x0d, 0xa4, 0xfb, 0xb6, 0xa1, 0xf5, 0x62, 0xea, 0x0e, 0x2d, 0xd3, 0x1a, // grub-2.14~rc1/core.img 0xbf, 0xf9, 0xc5, 0x89, 0x59, 0x70, 0x4d, 0x1e, 0xbe, 0x25, 0xb4, 0x43, 0xc8, 0x92, 0x3a, 0x42, 0xed, 0x89, 0xaf, 0x8b, 0xd2, 0x92, 0xe7, 0xd7, 0xcb, 0xeb, 0xca, 0xcc, 0xc0, 0x7c, 0xc7, 0x19, // syslinux-5.11/ldlinux.sys 0xc3, 0x3b, 0x31, 0x5f, 0xec, 0xe4, 0xad, 0xc4, 0xc3, 0xb2, 0x75, 0x13, 0x22, 0x84, 0x66, 0xe4, 0x44, 0x99, 0xcd, 0xa7, 0xfd, 0x63, 0x97, 0xc5, 0xab, 0xe0, 0xf8, 0xce, 0x4f, 0xe3, 0x45, 0x39, // syslinux-5.10/ldlinux.c32 0xcc, 0x40, 0xba, 0x03, 0x49, 0x78, 0x2c, 0xb4, 0xc9, 0x02, 0x1e, 0x54, 0xdc, 0xc0, 0xa4, 0x54, 0x0c, 0x3a, 0x8b, 0x96, 0x08, 0x8b, 0x3a, 0x56, 0x48, 0x67, 0x19, 0x26, 0xef, 0x44, 0xd2, 0xf0, // syslinux-6.04/ldlinux.bss @@ -108,7 +114,6 @@ static uint8_t sha256db[] = { 0xd2, 0xc6, 0x93, 0x8d, 0xae, 0x5a, 0xd7, 0x16, 0x0e, 0x9e, 0x6c, 0x61, 0xef, 0x46, 0xb7, 0xfd, 0x14, 0x6e, 0x30, 0xc0, 0x3f, 0xdc, 0x8f, 0x5c, 0x6d, 0xbd, 0xeb, 0x86, 0x22, 0xc8, 0xa7, 0xbd, // syslinux-5.00/ldlinux.bss 0xd3, 0x47, 0x2c, 0x02, 0x26, 0x3a, 0xcf, 0x9c, 0xd1, 0xda, 0x5d, 0xb5, 0x1e, 0x26, 0x3c, 0x54, 0x84, 0xba, 0xd1, 0x3e, 0xa6, 0x86, 0x18, 0xc4, 0x03, 0xd9, 0xcb, 0x01, 0xca, 0x07, 0x0a, 0xee, // syslinux-6.04/ldlinux.c32 0xd5, 0x50, 0x39, 0xef, 0xb6, 0x8d, 0x6e, 0xec, 0xde, 0x68, 0x61, 0xc9, 0x0b, 0xa9, 0xb7, 0x99, 0x44, 0xd1, 0xaa, 0x8b, 0xc3, 0xd6, 0x01, 0xfb, 0x80, 0xfd, 0x08, 0x7b, 0xc6, 0x13, 0x63, 0xf8, // syslinux-6.02/ldlinux.sys - 0xd6, 0xa7, 0x0c, 0xe1, 0x90, 0x2b, 0x22, 0x1a, 0xcb, 0xc1, 0xd5, 0xf5, 0x94, 0x24, 0xa8, 0x22, 0x7b, 0x62, 0xfe, 0x6d, 0x85, 0x34, 0x86, 0x0e, 0x2b, 0x6e, 0x75, 0x7e, 0x01, 0x02, 0xc5, 0x6f, // grub4dos-0.4.6a/grldr 0xd9, 0x1c, 0xbd, 0xf9, 0x01, 0x79, 0x5e, 0x98, 0x19, 0x84, 0x9c, 0x75, 0x3e, 0xa5, 0x3a, 0xd8, 0x59, 0xc6, 0xf2, 0x5d, 0x59, 0x17, 0xa6, 0x75, 0x92, 0x58, 0x3f, 0xd6, 0x5e, 0x6d, 0x00, 0xf0, // syslinux-6.03/pre18/ldlinux.bss 0xda, 0xa3, 0x06, 0xa9, 0x97, 0x0e, 0x37, 0x7d, 0xb4, 0x4c, 0xe7, 0xfa, 0xd8, 0xdd, 0x01, 0xe9, 0xe8, 0x53, 0xc6, 0x8b, 0x1e, 0x3d, 0x84, 0xf3, 0x2a, 0xaf, 0x42, 0x24, 0x6f, 0x77, 0xae, 0x3d, // grub-2.02/core.img 0xe7, 0x87, 0x08, 0xc7, 0x2c, 0x49, 0x8e, 0xcc, 0x14, 0x9e, 0x30, 0xf0, 0xa9, 0x85, 0xd3, 0x73, 0xa3, 0x00, 0xad, 0x5c, 0xf7, 0xd2, 0x88, 0xc7, 0x7d, 0xe8, 0x05, 0x5e, 0x25, 0x66, 0x28, 0x1f, // syslinux-6.03/pre18/ldlinux.sys @@ -118,7 +123,6 @@ static uint8_t sha256db[] = { 0xec, 0xfd, 0xbc, 0x3f, 0x4f, 0x2e, 0x4d, 0x99, 0x16, 0x9c, 0xdd, 0xfb, 0x15, 0x2d, 0x92, 0x4d, 0x7d, 0xe6, 0x8a, 0xb6, 0x7f, 0x4d, 0x12, 0x54, 0x40, 0xfa, 0xbc, 0x9f, 0x00, 0x46, 0xd5, 0xbc, // syslinux-6.03/pre5/ldlinux.bss 0xee, 0xed, 0xc0, 0x4c, 0x13, 0x73, 0xb5, 0xc4, 0x04, 0x4d, 0x1f, 0xde, 0x0d, 0x2f, 0xb8, 0xe2, 0x8c, 0x74, 0xb1, 0x02, 0x9c, 0x99, 0xed, 0x67, 0x0a, 0x15, 0x98, 0x3f, 0x18, 0xa0, 0x4d, 0x36, // syslinux-6.02/ldlinux.c32 0xf5, 0x40, 0x26, 0x1c, 0x09, 0x7d, 0xbd, 0x8a, 0x8a, 0x12, 0x9b, 0x68, 0x99, 0x5f, 0x33, 0xab, 0xe7, 0x1c, 0x29, 0x40, 0xf8, 0x87, 0xc6, 0x68, 0x9b, 0xf8, 0xdc, 0x3f, 0x1a, 0xcf, 0x0b, 0x44, // syslinux-6.03/pre17/ldlinux.bss - 0xf5, 0xc6, 0xe8, 0xe2, 0xc1, 0xeb, 0x73, 0x80, 0x28, 0x5f, 0xa9, 0xcb, 0x1c, 0x91, 0x68, 0xe9, 0x2d, 0x5b, 0x3b, 0x55, 0xcd, 0xe0, 0x52, 0xc0, 0x43, 0xba, 0x81, 0xed, 0x17, 0xb9, 0xac, 0xef, // grub4dos-0.4.6a/grldr.mbr 0xfb, 0x0a, 0x23, 0xca, 0x4d, 0x22, 0xfd, 0xd2, 0xad, 0x4e, 0xfa, 0x1b, 0x21, 0x08, 0xb6, 0x60, 0xd2, 0xff, 0xa3, 0xf2, 0xfb, 0xdd, 0x25, 0x32, 0xdc, 0xf1, 0x3f, 0x49, 0x33, 0x28, 0x46, 0x7b, // syslinux-6.03/pre11/ldlinux.bss 0xfb, 0x49, 0xfd, 0x45, 0x8c, 0xaf, 0x47, 0x5a, 0x16, 0x05, 0x5e, 0x4a, 0x75, 0x5a, 0xc3, 0xe3, 0x95, 0x52, 0xf4, 0xe9, 0x6c, 0xa2, 0x0d, 0xea, 0x53, 0xf5, 0xc4, 0x09, 0x2b, 0x68, 0xfd, 0x4f, // syslinux-6.00/ldlinux.sys }; @@ -150,8 +154,8 @@ static const char db_sb_revoked_txt[] = * Use as fallback when https://rufus.ie/sbat_level.txt cannot be accessed. */ static const char db_sbat_level_txt[] = - "sbat,1,2024010900\n" + "sbat,1,2025051000\n" "shim,4\n" - "grub,3\n" - "grub.debian,4\n" - "BOOTMGRSECURITYVERSIONNUMBER,0x30000"; + "grub,5\n" + "grub.proxmox,2\n" + "BOOTMGRSECURITYVERSIONNUMBER,0x70000"; diff --git a/src/dev.c b/src/dev.c index 7734f1b6..49a64570 100644 --- a/src/dev.c +++ b/src/dev.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Device detection and enumeration - * Copyright © 2014-2025 Pete Batard + * Copyright © 2014-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -137,7 +137,7 @@ BOOL CyclePort(int index) DWORD size; USB_CYCLE_PORT_PARAMS cycle_port; - if_not_assert(index < MAX_DRIVES) + if_assert_fails(index < MAX_DRIVES) return -1; // Wait at least 10 secs between resets if (GetTickCount64() < LastReset + 10000ULL) { @@ -191,7 +191,7 @@ int CycleDevice(int index) SP_DEVINFO_DATA dev_info_data; SP_PROPCHANGE_PARAMS propchange_params; - if_not_assert(index < MAX_DRIVES) + if_assert_fails(index < MAX_DRIVES) return ERROR_INVALID_DRIVE; if ((index < 0) || (safe_strlen(rufus_drive[index].id) < 8)) return ERROR_INVALID_PARAMETER; @@ -293,7 +293,9 @@ static __inline BOOL IsVHD(const char* buffer) "VMware__VMware_Virtual_S" // Enabled through a cheat mode, as this lists primary disks on VMWare instances }; - for (i = 0; i < (int)(ARRAYSIZE(vhd_name)-(enable_vmdk?0:1)); i++) + if (buffer == NULL || buffer[0] == '\0') + return FALSE; + for (i = 0; i < (int)(ARRAYSIZE(vhd_name) - (enable_vmdk ? 0 : 1)); i++) if (safe_strstr(buffer, vhd_name[i]) != NULL) return TRUE; return FALSE; @@ -418,9 +420,9 @@ BOOL GetOpticalMedia(IMG_SAVE* img_save) /* For debugging user reports of HDDs vs UFDs */ //#define FORCED_DEVICE #ifdef FORCED_DEVICE -#define FORCED_VID 0x04E8 -#define FORCED_PID 0x61ED -#define FORCED_NAME "Samsung uSD Card Reader USB Device" +#define FORCED_VID 0x0781 +#define FORCED_PID 0x55A9 +#define FORCED_NAME " USB SanDisk 3.2Gen1 UAS Device" #endif void ClearDrives(void) @@ -473,7 +475,7 @@ BOOL GetDevices(DWORD devnum) const char* windows_sandbox_vhd_label = "PortableBaseLayer"; // Hash table and String Array used to match a Device ID with the parent hub's Device Interface Path htab_table htab_devid = HTAB_EMPTY; - StrArray dev_if_path = STRARRAY_EMPTY; + StrArray dev_if_path = { 0 }; char letter_name[] = " (?:)"; char drive_name[] = "?:\\"; char setting_name[32]; @@ -492,7 +494,7 @@ BOOL GetDevices(DWORD devnum) LONG maxwidth = 0; int s, u, v, score, drive_number, remove_drive, num_drives = 0; char drive_letters[27], *device_id, *devid_list = NULL, display_msg[128]; - char *p, *label, *display_name, buffer[MAX_PATH], str[MAX_PATH], device_instance_id[MAX_PATH], *method_str, *hub_path; + char *p, *label, *display_name, buffer[4 * KB], str[MAX_PATH], device_instance_id[MAX_PATH], *method_str, *hub_path; uint32_t ignore_vid_pid[MAX_IGNORE_USB]; uint64_t drive_size = 0; usb_device_props props; @@ -560,7 +562,7 @@ BOOL GetDevices(DWORD devnum) // Build a single list of Device IDs from all the storage enumerators we know of full_list_size = 0; ulFlags = CM_GETIDLIST_FILTER_SERVICE | CM_GETIDLIST_FILTER_PRESENT; - for (s=0; s 0) && (uasp_start < ARRAYSIZE(usbstor_name))) + if_assert_fails((uasp_start > 0) && (uasp_start < ARRAYSIZE(usbstor_name))) goto out; - if_not_assert((card_start > 0) && (card_start < ARRAYSIZE(genstor_name))) + if_assert_fails((card_start > 0) && (card_start < ARRAYSIZE(genstor_name))) goto out; devid_list = NULL; @@ -627,6 +629,7 @@ BOOL GetDevices(DWORD devnum) for (i = 0; num_drives < MAX_DRIVES && SetupDiEnumDeviceInfo(dev_info, i, &dev_info_data); i++) { memset(buffer, 0, sizeof(buffer)); memset(&props, 0, sizeof(props)); + props.vid = -1; props.pid = -1; method_str = ""; hub_path = NULL; if (!SetupDiGetDeviceRegistryPropertyA(dev_info, &dev_info_data, SPDRP_ENUMERATOR_NAME, @@ -663,8 +666,13 @@ BOOL GetDevices(DWORD devnum) // We can't use the friendly name to find if a drive is a VHD, as friendly name string gets translated // according to your locale, so we poke the Hardware ID memset(buffer, 0, sizeof(buffer)); - props.is_VHD = SetupDiGetDeviceRegistryPropertyA(dev_info, &dev_info_data, SPDRP_HARDWAREID, - &data_type, (LPBYTE)buffer, sizeof(buffer), &size) && IsVHD(buffer); + r = SetupDiGetDeviceRegistryPropertyA(dev_info, &dev_info_data, SPDRP_HARDWAREID, + &data_type, (LPBYTE)buffer, sizeof(buffer), &size); + // We should always be able to get a Hardware ID for disk devices, so report an error in debug if we don't + if (!r && usb_debug) + uprintf(" Error: %s", WindowsErrorString()); + props.is_VHD = IsVHD(buffer); + if (!props.is_VHD) // Additional detection for SCSI card readers if ((!props.is_CARD) && (safe_strnicmp(buffer, scsi_disk_prefix, sizeof(scsi_disk_prefix)-1) == 0)) { for (j = 0; j < ARRAYSIZE(scsi_card_name); j++) { @@ -675,7 +683,7 @@ BOOL GetDevices(DWORD devnum) } // Also test for "_SD&" instead of "_SD_" and so on to allow for devices like // "SCSI\DiskRicoh_Storage_SD&REV_3.0" to be detected. - if_not_assert(strlen(scsi_card_name_copy) > 1) + if_assert_fails(strlen(scsi_card_name_copy) > 1) continue; scsi_card_name_copy[strlen(scsi_card_name_copy) - 1] = '&'; if (safe_strstr(buffer, scsi_card_name_copy) != NULL) { @@ -731,7 +739,7 @@ BOOL GetDevices(DWORD devnum) method_str = ""; // If we're not dealing with the USBSTOR part of our list, then this is an UASP device - props.is_UASP = ((((uintptr_t)device_id)+2) >= ((uintptr_t)devid_list)+list_start[uasp_start]); + props.is_UASP = ((((uintptr_t)device_id) + 2) >= ((uintptr_t)devid_list) + list_start[uasp_start]); // Now get the properties of the device, and its Device ID, which we need to populate the properties ToUpper(device_id); j = htab_hash(device_id, &htab_devid); @@ -739,19 +747,23 @@ BOOL GetDevices(DWORD devnum) // Try to parse the current device_id string for VID:PID // We'll use that if we can't get anything better - for (k = 0, l = 0; (k 0), @@ -768,7 +780,7 @@ BOOL GetDevices(DWORD devnum) uuprintf(" Matched with (GP) ID[%03d]: %s", j, device_id); } if ((uintptr_t)htab_devid.table[j].data > 0) { - uuprintf(" Matched with Hub[%d]: '%s'", (uintptr_t)htab_devid.table[j].data, + uuprintf(" Matched with Hub[%llu]: '%s'", (uintptr_t)htab_devid.table[j].data, dev_if_path.String[(uintptr_t)htab_devid.table[j].data]); if (GetUSBProperties(dev_if_path.String[(uintptr_t)htab_devid.table[j].data], device_id, &props)) { method_str = ""; @@ -805,7 +817,7 @@ BOOL GetDevices(DWORD devnum) } uprintf("Found non-USB removable device '%s'", buffer); } else { - if ((props.vid == 0) && (props.pid == 0)) { + if (props.vid == -1 || props.pid == -1) { if (!props.is_USB) { // If we have a non removable SCSI drive and couldn't get a VID:PID, // we are most likely dealing with a system drive => eliminate it! @@ -826,7 +838,8 @@ BOOL GetDevices(DWORD devnum) } // Also ignore USB devices that have been specifically flagged by the user for (s = 0; s < ARRAYSIZE(ignore_vid_pid); s++) { - if ((props.vid == (ignore_vid_pid[s] >> 16)) && (props.pid == (ignore_vid_pid[s] & 0xffff))) { + if (ignore_vid_pid[s] != 0 && (props.vid == (ignore_vid_pid[s] >> 16)) && + (props.pid == (ignore_vid_pid[s] & 0xffff))) { uprintf("Ignoring '%s' (%s), per user settings", buffer, str); break; } @@ -927,9 +940,9 @@ BOOL GetDevices(DWORD devnum) } if ((!enable_HDDs) && (!props.is_VHD) && (!props.is_CARD) && ((score = IsHDD(drive_index, (uint16_t)props.vid, (uint16_t)props.pid, buffer)) > 0)) { - uprintf("Device eliminated because it was detected as a Hard Drive (score %d > 0)", score); + uprintf("Device eliminated because it was detected as a Hard Drive or SSD (score %d > 0)", score); if (!list_non_usb_removable_drives) - uprintf("If this device is not a Hard Drive, please e-mail the author of this application"); + uprintf("If this device is not a Hard Drive or SSD, please e-mail the author of this application"); uprintf("NOTE: You can enable the listing of Hard Drives under 'advanced drive properties'"); safe_free(devint_detail_data); break; @@ -953,6 +966,12 @@ BOOL GetDevices(DWORD devnum) safe_free(devint_detail_data); break; } + // Bitdefender now uses a special 32 MB VHD + if (props.is_VHD && safe_strnicmp(label, "Bitdefender", 11) == 0 && GetDriveSize(drive_index) <= 32 * MB) { + uprintf("Device eliminated because it is a Bitdefender VHD"); + safe_free(devint_detail_data); + break; + } if (props.is_VHD && (!enable_VHDs)) { uprintf("Device eliminated because listing of VHDs is disabled (Alt-G)"); safe_free(devint_detail_data); @@ -1007,7 +1026,7 @@ BOOL GetDevices(DWORD devnum) rufus_drive[num_drives].display_name = safe_strdup(display_name); rufus_drive[num_drives].label = safe_strdup(label); rufus_drive[num_drives].size = drive_size; - if_not_assert(rufus_drive[num_drives].size != 0) + if_assert_fails(rufus_drive[num_drives].size != 0) break; if (hub_path != NULL) { rufus_drive[num_drives].hub = safe_strdup(hub_path); @@ -1015,7 +1034,7 @@ BOOL GetDevices(DWORD devnum) } num_drives++; if (num_drives >= MAX_DRIVES) - uprintf("Warning: Found more than %d drives - ignoring remaining ones...", MAX_DRIVES); + uprintf("WARNING: Found more than %d drives - ignoring remaining ones...", MAX_DRIVES); safe_free(devint_detail_data); break; } diff --git a/src/dev.h b/src/dev.h index ea610ad5..d0543d13 100644 --- a/src/dev.h +++ b/src/dev.h @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Device detection and enumeration - * Copyright © 2014-2025 Pete Batard + * Copyright © 2014-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,8 +30,8 @@ /* List of the properties we are interested in */ typedef struct usb_device_props { - uint32_t vid; - uint32_t pid; + int32_t vid; + int32_t pid; uint32_t speed; uint32_t lower_speed; uint32_t port; diff --git a/src/dos.c b/src/dos.c index f4b3f1cc..dcbae4fb 100644 --- a/src/dos.c +++ b/src/dos.c @@ -2,7 +2,7 @@ * Rufus: The Reliable USB Formatting Utility * DOS boot file extraction, from the FAT12 floppy image in diskcopy.dll * (MS WinME DOS) or from the embedded FreeDOS resource files - * Copyright © 2011-2024 Pete Batard + * Copyright © 2011-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -290,21 +290,25 @@ static BOOL ExtractMSDOS(const char* path) { int i, j; BOOL r = FALSE; - uint8_t* diskcopy_buffer = NULL; + DWORD size = DISKCOPY_SIZE; + HANDLE dll_handle = INVALID_HANDLE_VALUE; + uint8_t* diskcopy_buffer; char locale_path[MAX_PATH]; char diskcopy_dll_path[MAX_PATH]; char* extractlist[] = { "MSDOS SYS", "COMMAND COM", "IO SYS", "MODE COM", "KEYB COM", "KEYBOARDSYS", "KEYBRD2 SYS", "KEYBRD3 SYS", "KEYBRD4 SYS", "DISPLAY SYS", "EGA CPI", "EGA2 CPI", "EGA3 CPI" }; - if (path == NULL) + if (path == NULL || (diskcopy_buffer = malloc(DISKCOPY_SIZE)) == NULL) return FALSE; // There should be a diskcopy.dll in the user's AppData directory. - // Since we're working with a known copy of diskcopy.dll, just load it - // in memory and point to the known disk image resource buffer. + // Since we're working with a known copy of diskcopy.dll, just load it in memory + // (after locking and validating it) and point to the known disk image resource buffer. static_sprintf(diskcopy_dll_path, "%s\\%s\\diskcopy.dll", app_data_dir, FILES_DIR); - if (read_file(diskcopy_dll_path, &diskcopy_buffer) != DISKCOPY_SIZE) { + dll_handle = CreateFileU(diskcopy_dll_path, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); + if (dll_handle == INVALID_HANDLE_VALUE || !ReadFile(dll_handle, diskcopy_buffer, size, &size, NULL) || + size != DISKCOPY_SIZE || !BufferMatchesHash(diskcopy_buffer, size, DISKCOPY_HASH)) { uprintf("'diskcopy.dll' was either not found or is invalid"); goto out; } @@ -331,6 +335,7 @@ static BOOL ExtractMSDOS(const char* path) r = SetDOSLocale(path, FALSE); out: + safe_closehandle(dll_handle); safe_free(diskcopy_buffer); return r; } diff --git a/src/drive.c b/src/drive.c index 402aa53b..5c660348 100644 --- a/src/drive.c +++ b/src/drive.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Drive access function calls - * Copyright © 2011-2025 Pete Batard + * Copyright © 2011-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -67,6 +67,10 @@ const IID IID_IVdsVolume = { 0x88306BB2, 0xE71F, 0x478C, { 0x86, 0xA2, 0x79, 0xD const IID IID_IVdsVolumeMF3 = { 0x6788FAF9, 0x214E, 0x4B85, { 0xBA, 0x59, 0x26, 0x69, 0x53, 0x61, 0x6E, 0x09 } }; #endif +#ifndef PERSISTENT_VOLUME_STATE_DEV_VOLUME +#define PERSISTENT_VOLUME_STATE_DEV_VOLUME (0x00002000) +#endif + /* * Globals */ @@ -166,7 +170,7 @@ static HANDLE GetHandle(char* Path, BOOL bLockDrive, BOOL bWriteAccess, BOOL bWr uprintf("Waiting for access on %s...", Path); } else if (!bWriteShare && (i > DRIVE_ACCESS_RETRIES/3)) { // If we can't seem to get a hold of the drive for some time, try to enable FILE_SHARE_WRITE... - uprintf("Warning: Could not obtain exclusive rights. Retrying with write sharing enabled..."); + uprintf("WARNING: Could not obtain exclusive rights. Retrying with write sharing enabled..."); bWriteShare = TRUE; // Try to report the process that is locking the drive access_mask = GetProcessSearch(SEARCH_PROCESS_TIMEOUT, 0x07, FALSE); @@ -279,11 +283,11 @@ char* GetLogicalName(DWORD DriveIndex, uint64_t PartitionOffset, BOOL bKeepTrail // Sanity checks len = safe_strlen(volume_name); - if_not_assert(len > 4) + if_assert_fails(len > 4) continue; - if_not_assert(safe_strnicmp(volume_name, volume_start, 4) == 0) + if_assert_fails(safe_strnicmp(volume_name, volume_start, 4) == 0) continue; - if_not_assert(volume_name[len - 1] == '\\') + if_assert_fails(volume_name[len - 1] == '\\') continue; drive_type = GetDriveTypeA(volume_name); @@ -362,7 +366,7 @@ char* GetLogicalName(DWORD DriveIndex, uint64_t PartitionOffset, BOOL bKeepTrail // NB: We need to re-add DRIVE_INDEX_MIN for this call since CheckDriveIndex() subtracted it ret = AltGetLogicalName(DriveIndex + DRIVE_INDEX_MIN, PartitionOffset, bKeepTrailingBackslash, bSilent); if ((ret != NULL) && (strchr(ret, ' ') != NULL)) - uprintf("Warning: Using physical device to access partition data"); + uprintf("WARNING: Using physical device to access partition data"); } out: @@ -668,6 +672,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void* // List disks while (IEnumVdsObject_Next(pEnumDisk, 1, &pDiskUnk, &ulFetched) == S_OK) { + BOOL r; VDS_DISK_PROP prop; IVdsDisk* pDisk; @@ -686,13 +691,13 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void* suprintf("Could not query VDS Disk Properties: %s", VdsErrorString(hr)); break; } + hr = S_OK; - // Check if we are on the target disk - // uprintf("GetVdsDiskInterface: Seeking %S found %S", wPhysicalName, prop.pwszName); - hr = (HRESULT)_wcsicmp(wPhysicalName, prop.pwszName); - CoTaskMemFree(prop.pwszName); - if (hr != S_OK) { - hr = S_OK; + // Check if we are on the target disk. Note that prop.pwszName can be NULL on failed disks. + r = (prop.pwszName != NULL) && (_wcsicmp(wPhysicalName, prop.pwszName) == 0); + CoTaskMemFree(prop.pwszName); // NB: Per MS docs, CoTaskMemFree() accepts NULL. + if (!r) { + IVdsDisk_Release(pDisk); continue; } @@ -1148,7 +1153,7 @@ static BOOL _GetDriveLettersAndType(DWORD DriveIndex, char* drive_letters, UINT* NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL, 3000); if (hDrive == INVALID_HANDLE_VALUE) { if (GetLastError() == WAIT_TIMEOUT) - uprintf("Warning: Time-out while trying to query drive %c", toupper(drive[0])); + uprintf("WARNING: Time-out while trying to query drive %c", toupper(drive[0])); continue; } @@ -1206,6 +1211,21 @@ UINT GetDriveTypeFromIndex(DWORD DriveIndex) return drive_type; } +BOOL IsSourceImageLocatedOnTargetDrive(DWORD DriveIndex) +{ + size_t i; + char drive_letters[27] = { 0 }; + + if (boot_type != BT_IMAGE || !GetDriveLetters(DriveIndex, drive_letters) || drive_letters[0] == 0) + return FALSE; + + for (i = 0; i < strlen(drive_letters); i++) + if ((PathGetDriveNumberU(image_path) + 'A') == drive_letters[i]) + return TRUE; + + return FALSE; +} + // Removes all drive letters associated with the specific drive, and return // either the first or last letter that was removed, according to bReturnLast. char RemoveDriveLetters(DWORD DriveIndex, BOOL bReturnLast, BOOL bSilent) @@ -1412,6 +1432,7 @@ const struct {int (*fn)(FILE *fp); char* str;} known_mbr[] = { { is_win7_mbr, "Windows 7" }, { is_rufus_mbr, "Rufus" }, { is_syslinux_mbr, "Syslinux" }, + { is_isolinux_mbr, "Isolinux" }, { is_reactos_mbr, "ReactOS" }, { is_kolibrios_mbr, "KolibriOS" }, { is_grub4dos_mbr, "Grub4DOS" }, @@ -1541,7 +1562,7 @@ static BOOL StoreEspInfo(GUID* guid) return WriteSettingStr(key_name[1], GuidToString(guid, TRUE)); } -static GUID* GetEspGuid(uint8_t index) +static GUID GetEspGuid(uint8_t index) { char key_name[16]; @@ -1569,7 +1590,7 @@ BOOL ToggleEsp(DWORD DriveIndex, uint64_t PartitionOffset) HANDLE hPhysical; DWORD dl_size, size, offset; BYTE layout[4096] = { 0 }, buf[512]; - GUID *guid = NULL, *stored_guid = NULL, mbr_guid; + GUID *guid = NULL, stored_guid = { 0 }, mbr_guid; PDRIVE_LAYOUT_INFORMATION_EX DriveLayout = (PDRIVE_LAYOUT_INFORMATION_EX)(void*)layout; typedef struct { const uint8_t mbr_type; @@ -1645,7 +1666,7 @@ BOOL ToggleEsp(DWORD DriveIndex, uint64_t PartitionOffset) // Basic Data -> ESP for (i = 1; i <= MAX_ESP_TOGGLE && esp_index < 0; i++) { stored_guid = GetEspGuid((uint8_t)i); - if (stored_guid != NULL) { + if (!CompareGUID(&stored_guid, &GUID_NULL)) { for (j = 0; j < (int)DriveLayout->PartitionCount && esp_index < 0; j++) { if (DriveLayout->PartitionStyle == PARTITION_STYLE_GPT) { guid = &DriveLayout->PartitionEntry[j].Gpt.PartitionId; @@ -1655,7 +1676,7 @@ BOOL ToggleEsp(DWORD DriveIndex, uint64_t PartitionOffset) *((uint64_t*)&mbr_guid.Data4) = DriveLayout->PartitionEntry[j].StartingOffset.QuadPart; guid = &mbr_guid; } - if (CompareGUID(stored_guid, guid)) { + if (CompareGUID(&stored_guid, guid)) { esp_index = j; delete_data = TRUE; if (DriveLayout->PartitionStyle == PARTITION_STYLE_GPT) @@ -1744,11 +1765,15 @@ const char* GetFsName(HANDLE hPhysical, LARGE_INTEGER StartingOffset) if (buf == NULL) goto out; - // 1. Try to detect ISO9660/FAT/exFAT/NTFS/ReFS through the 512 bytes superblock at offset 0 + // 1. Try to detect ISO9660/FAT/exFAT/NTFS/ReFS/SquashFS through the 512 bytes superblock at offset 0 if (!SetFilePointerEx(hPhysical, StartingOffset, NULL, FILE_BEGIN)) goto out; if (!ReadFile(hPhysical, buf, sector_size, &size, NULL) || size != sector_size) goto out; + if (memcmp("hsqs", buf, 4) == 0) { + ret = "SquashFS"; + goto out; + } if (strncmp("CD001", &buf[0x01], 5) == 0) { ret = "ISO9660"; goto out; @@ -1883,7 +1908,7 @@ BOOL GetDrivePartitionData(DWORD DriveIndex, char* FileSystemName, DWORD FileSys SelectedDrive.SectorSize = DiskGeometry->Geometry.BytesPerSector; SelectedDrive.FirstDataSector = MAXDWORD; if (SelectedDrive.SectorSize < 512) { - suprintf("Warning: Drive 0x%02x reports a sector size of %d - Correcting to 512 bytes.", + suprintf("WARNING: Drive 0x%02x reports a sector size of %d - Correcting to 512 bytes.", DriveIndex, SelectedDrive.SectorSize); SelectedDrive.SectorSize = 512; } @@ -1892,9 +1917,9 @@ BOOL GetDrivePartitionData(DWORD DriveIndex, char* FileSystemName, DWORD FileSys suprintf("Disk type: %s, Disk size: %s, Sector size: %d bytes", (SelectedDrive.MediaType == FixedMedia) ? "FIXED" : "Removable", - SizeToHumanReadable(SelectedDrive.DiskSize, FALSE, TRUE), SelectedDrive.SectorSize); + SizeToHumanReadable(SelectedDrive.DiskSize, FALSE, FALSE), SelectedDrive.SectorSize); suprintf("Cylinders: %" PRIi64 ", Tracks per cylinder: %d, Sectors per track: %d", - DiskGeometry->Geometry.Cylinders, DiskGeometry->Geometry.TracksPerCylinder, DiskGeometry->Geometry.SectorsPerTrack); + DiskGeometry->Geometry.Cylinders.QuadPart, DiskGeometry->Geometry.TracksPerCylinder, DiskGeometry->Geometry.SectorsPerTrack); assert(SelectedDrive.SectorSize != 0); r = DeviceIoControl(hPhysical, IOCTL_DISK_GET_DRIVE_LAYOUT_EX, NULL, 0, layout, sizeof(layout), &size, NULL ); @@ -1939,7 +1964,7 @@ BOOL GetDrivePartitionData(DWORD DriveIndex, char* FileSystemName, DWORD FileSys if (buf != NULL) { if (SetFilePointerEx(hPhysical, DriveLayout->PartitionEntry[i].StartingOffset, NULL, FILE_BEGIN) && ReadFile(hPhysical, buf, SelectedDrive.SectorSize, &size, NULL)) { - isUefiNtfs = (strncmp(&buf[0x2B], "UEFI_NTFS", 9) == 0); + isUefiNtfs = (strncmp(&buf[0x2B], "UEFI_NTFS", 9) == 0) || (strncmp(&buf[0x2B], "RUFUS_BOOT", 10) == 0); } free(buf); } @@ -1997,7 +2022,7 @@ BOOL GetDrivePartitionData(DWORD DriveIndex, char* FileSystemName, DWORD FileSys suprintf(" ID: %s\r\n Size: %s (%" PRIi64 " bytes)\r\n Start Sector: %" PRIi64 ", Attributes: 0x%016" PRIX64, GuidToString(&DriveLayout->PartitionEntry[i].Gpt.PartitionId, TRUE), SizeToHumanReadable(DriveLayout->PartitionEntry[i].PartitionLength.QuadPart, TRUE, FALSE), - DriveLayout->PartitionEntry[i].PartitionLength, + DriveLayout->PartitionEntry[i].PartitionLength.QuadPart, DriveLayout->PartitionEntry[i].StartingOffset.QuadPart / SelectedDrive.SectorSize, DriveLayout->PartitionEntry[i].Gpt.Attributes); SelectedDrive.FirstDataSector = min(SelectedDrive.FirstDataSector, @@ -2126,7 +2151,7 @@ BOOL MountVolume(char* drive_name, char *volume_name) } uprintf("Retrying after dismount..."); if (!DeleteVolumeMountPointA(drive_name)) - uprintf("Warning: Could not delete volume mountpoint '%s': %s", drive_name, WindowsErrorString()); + uprintf("WARNING: Could not delete volume mountpoint '%s': %s", drive_name, WindowsErrorString()); if (SetVolumeMountPointA(drive_name, volume_name)) return TRUE; if ((GetLastError() == ERROR_DIR_NOT_EMPTY) && @@ -2457,10 +2482,8 @@ BOOL CreatePartition(HANDLE hDrive, int partition_style, int file_system, BOOL m DriveLayoutEx.PartitionEntry[i].Gpt.PartitionType = PARTITION_MICROSOFT_DATA; // Prevent a drive letter from being assigned to the UEFI:NTFS partition DriveLayoutEx.PartitionEntry[i].Gpt.Attributes = GPT_BASIC_DATA_ATTRIBUTE_NO_DRIVE_LETTER; -#if !defined(_DEBUG) - // Also make the partition read-only for release versions - DriveLayoutEx.PartitionEntry[i].Gpt.Attributes += GPT_BASIC_DATA_ATTRIBUTE_READ_ONLY; -#endif + // NB: We no longer make the partition read-only as we need to be able to edit + // its label for WUE's silent install no-disk/extra-disk detection. } else if (wcscmp(SelectedDrive.Partition[i].Name, L"EFI System Partition") == 0) DriveLayoutEx.PartitionEntry[i].Gpt.PartitionType = PARTITION_GENERIC_ESP; else if (wcscmp(SelectedDrive.Partition[i].Name, L"Linux Persistence") == 0) @@ -2477,7 +2500,7 @@ BOOL CreatePartition(HANDLE hDrive, int partition_style, int file_system, BOOL m // We need to write the UEFI:NTFS partition before we refresh the disk if (extra_partitions & XP_UEFI_NTFS) { LARGE_INTEGER li; - uprintf("Writing UEFI:NTFS data...", SelectedDrive.Partition[partition_index[PI_UEFI_NTFS]].Name); + uprintf("Writing UEFI:NTFS data..."); li.QuadPart = SelectedDrive.Partition[partition_index[PI_UEFI_NTFS]].Offset; if (!SetFilePointerEx(hDrive, li, NULL, FILE_BEGIN)) { uprintf(" Could not set position"); @@ -2601,46 +2624,35 @@ const char* GetMBRPartitionType(const uint8_t type) const char* GetGPTPartitionType(const GUID* guid) { - int i; - for (i = 0; (i < ARRAYSIZE(gpt_type)) && !CompareGUID(guid, gpt_type[i].guid); i++); - return (i < ARRAYSIZE(gpt_type)) ? gpt_type[i].name : GuidToString(guid, TRUE); + const char* desc = gpt_type_desc(guid); + return desc != NULL ? desc : GuidToString(guid, TRUE); } /* - * Detect Microsoft Dev Drives, which are VHDs consisting of a small MSR followed by a large - * (50 GB or more) ReFS partition. See https://learn.microsoft.com/en-us/windows/dev-drive/. - * NB: Despite the option being proposed, I have *NOT* been able to create MBR-based Dev Drives. + * Detect Microsoft Dev Drives. See https://learn.microsoft.com/en-us/windows/dev-drive/. */ BOOL IsMsDevDrive(DWORD DriveIndex) { - BOOL r, ret = FALSE; + BOOL ret = FALSE; DWORD size = 0; - HANDLE hPhysical = INVALID_HANDLE_VALUE; - BYTE layout[4096] = { 0 }; - PDRIVE_LAYOUT_INFORMATION_EX DriveLayout = (PDRIVE_LAYOUT_INFORMATION_EX)(void*)layout; + HANDLE hLogical = INVALID_HANDLE_VALUE; + FILE_FS_PERSISTENT_VOLUME_INFORMATION data = { 0 }; - hPhysical = GetPhysicalHandle(DriveIndex, FALSE, FALSE, TRUE); - if (hPhysical == INVALID_HANDLE_VALUE) + hLogical = GetLogicalHandle(DriveIndex, 0, FALSE, FALSE, FALSE); + if (hLogical == INVALID_HANDLE_VALUE) goto out; - r = DeviceIoControl(hPhysical, IOCTL_DISK_GET_DRIVE_LAYOUT_EX, NULL, 0, layout, sizeof(layout), &size, NULL); - if (!r || size <= 0) + data.FlagMask = PERSISTENT_VOLUME_STATE_DEV_VOLUME; + data.Version = 1; + + if (!DeviceIoControl(hLogical, FSCTL_QUERY_PERSISTENT_VOLUME_STATE, &data, sizeof(data), + &data, sizeof(data), &size, NULL)) goto out; - if (DriveLayout->PartitionStyle != PARTITION_STYLE_GPT) - goto out; - if (DriveLayout->PartitionCount != 2) - goto out; - if (!CompareGUID(&DriveLayout->PartitionEntry[0].Gpt.PartitionType, &PARTITION_MICROSOFT_RESERVED)) - goto out; - if (!CompareGUID(&DriveLayout->PartitionEntry[1].Gpt.PartitionType, &PARTITION_MICROSOFT_DATA)) - goto out; - if (DriveLayout->PartitionEntry[1].PartitionLength.QuadPart < 20 * GB) - goto out; - ret = (strcmp(GetFsName(hPhysical, DriveLayout->PartitionEntry[1].StartingOffset), "ReFS") == 0); + ret = data.VolumeFlags & PERSISTENT_VOLUME_STATE_DEV_VOLUME; out: - safe_closehandle(hPhysical); + safe_closehandle(hLogical); return ret; } @@ -2658,7 +2670,7 @@ BOOL IsFilteredDrive(DWORD DriveIndex) HANDLE hPhysical = INVALID_HANDLE_VALUE; BYTE layout[4096] = { 0 }; PDRIVE_LAYOUT_INFORMATION_EX DriveLayout = (PDRIVE_LAYOUT_INFORMATION_EX)(void*)layout; - GUID* DiskGuid; + GUID DiskGuid; hPhysical = GetPhysicalHandle(DriveIndex, FALSE, FALSE, TRUE); if (hPhysical == INVALID_HANDLE_VALUE) @@ -2674,8 +2686,8 @@ BOOL IsFilteredDrive(DWORD DriveIndex) for (i = 1; i <= MAX_IGNORE_USB; i++) { static_sprintf(setting_name, "IgnoreDisk%02d", i); DiskGuid = StringToGuid(ReadSettingStr(setting_name)); - if (CompareGUID(&DriveLayout->Gpt.DiskId, DiskGuid)) { - uprintf("Device eliminated because it matches Disk GUID %s", GuidToString(DiskGuid, TRUE)); + if (CompareGUID(&DriveLayout->Gpt.DiskId, &DiskGuid)) { + uprintf("Device eliminated because it matches Disk GUID %s", GuidToString(&DiskGuid, TRUE)); ret = TRUE; goto out; } diff --git a/src/drive.h b/src/drive.h index 177f070f..8dc0f7aa 100644 --- a/src/drive.h +++ b/src/drive.h @@ -383,6 +383,7 @@ BOOL GetDriveLetters(DWORD DriveIndex, char* drive_letters); UINT GetDriveTypeFromIndex(DWORD DriveIndex); char GetUnusedDriveLetter(void); BOOL IsDriveLetterInUse(const char drive_letter); +BOOL IsSourceImageLocatedOnTargetDrive(DWORD DriveIndex); char RemoveDriveLetters(DWORD DriveIndex, BOOL bUseLast, BOOL bSilent); BOOL GetDriveLabel(DWORD DriveIndex, char* letters, char** label, BOOL bSilent); uint64_t GetDriveSize(DWORD DriveIndex); diff --git a/src/format.c b/src/format.c index 4fac3f2f..c13f253c 100644 --- a/src/format.c +++ b/src/format.c @@ -74,7 +74,7 @@ extern const int nb_steps[FS_MAX]; extern const char* md5sum_name[2]; extern uint32_t dur_mins, dur_secs; extern BOOL force_large_fat32, enable_ntfs_compression, lock_drive, zero_drive, fast_zeroing, enable_file_indexing; -extern BOOL write_as_image, use_vds, write_as_esp, is_vds_available, has_ffu_support, use_rufus_mbr; +extern BOOL write_as_image, use_vds, write_as_esp, is_vds_available, has_ffu_support, use_rufus_mbr, append_silent; extern char* archive_path; uint8_t *grub2_buf = NULL, *sec_buf = NULL; long grub2_len; @@ -116,7 +116,7 @@ static BOOLEAN __stdcall FormatExCallback(FILE_SYSTEM_CALLBACK_COMMAND Command, if (IS_ERROR(ErrorStatus)) return FALSE; - if_not_assert((actual_fs_type >= 0) && (actual_fs_type < FS_MAX)) + if_assert_fails((actual_fs_type >= 0) && (actual_fs_type < FS_MAX)) return FALSE; switch(Command) { @@ -715,47 +715,38 @@ out: return r; } -static BOOL ClearMBRGPT(HANDLE hPhysicalDrive, LONGLONG DiskSize, DWORD SectorSize, BOOL add1MB) +static BOOL ClearMBRGPT(HANDLE hPhysicalDrive, LONGLONG DiskSize, DWORD SectorSize) { BOOL r = FALSE; LARGE_INTEGER liFilePointer; - uint64_t num_sectors_to_clear; - unsigned char* pZeroBuf = NULL; + uint8_t* pZeroBuf = calloc(SectorSize, MAX_SECTORS_TO_CLEAR); - PrintInfoDebug(0, MSG_224); - // http://en.wikipedia.org/wiki/GUID_Partition_Table tells us we should clear 34 sectors at the - // beginning and 33 at the end. We bump these values to MAX_SECTORS_TO_CLEAR each end to help - // with reluctant access to large drive. - - // We try to clear at least 1MB + the VBR when Large FAT32 is selected (add1MB), but - // don't do it otherwise, as it seems unnecessary and may take time for slow drives. - // Also, for various reasons (one of which being that Windows seems to have issues - // with GPT drives that contain a lot of small partitions) we try not not to clear - // sectors further than the lowest partition already residing on the disk. - num_sectors_to_clear = min(SelectedDrive.FirstDataSector, (DWORD)((add1MB ? 2048 : 0) + MAX_SECTORS_TO_CLEAR)); - // Special case for big floppy disks (FirstDataSector = 0) - if (num_sectors_to_clear < 4) - num_sectors_to_clear = (DWORD)((add1MB ? 2048 : 0) + MAX_SECTORS_TO_CLEAR); - - uprintf("Erasing %llu sectors", num_sectors_to_clear); - pZeroBuf = calloc(SectorSize, (size_t)num_sectors_to_clear); if (pZeroBuf == NULL) { ErrorStatus = RUFUS_ERROR(ERROR_NOT_ENOUGH_MEMORY); goto out; } + + // We now unconditionally zero MAX_SECTORS_TO_CLEAR and (MAX_SECTORS_TO_CLEAR / 8) + // at the beginning and end of the drive respectively. This should encompass the + // MBR, GPT, backup GPT and VBR for most devices and (hopefully) get Windows and + // other apps off our back with trying to access zombie partitions... + PrintInfoDebug(0, MSG_224); liFilePointer.QuadPart = 0ULL; if (!SetFilePointerEx(hPhysicalDrive, liFilePointer, &liFilePointer, FILE_BEGIN) || (liFilePointer.QuadPart != 0ULL)) - uprintf("Warning: Could not reset disk position"); - if (!WriteFileWithRetry(hPhysicalDrive, pZeroBuf, (DWORD)(SectorSize * num_sectors_to_clear), NULL, WRITE_RETRIES)) + uprintf("WARNING: Could not reset disk position: %s", WindowsErrorString()); + if (!WriteFileWithRetry(hPhysicalDrive, pZeroBuf, (DWORD)(SectorSize * MAX_SECTORS_TO_CLEAR), NULL, WRITE_RETRIES)) goto out; + uprintf("Zeroed %s at the top of the drive", SizeToHumanReadable(MAX_SECTORS_TO_CLEAR * SectorSize, FALSE, FALSE)); CHECK_FOR_USER_CANCEL; - liFilePointer.QuadPart = DiskSize - (LONGLONG)SectorSize * MAX_SECTORS_TO_CLEAR; + liFilePointer.QuadPart = DiskSize - (LONGLONG)SectorSize * (MAX_SECTORS_TO_CLEAR / 8); // Windows seems to be an ass about keeping a lock on a backup GPT, // so we try to be lenient about not being able to clear it. - if (SetFilePointerEx(hPhysicalDrive, liFilePointer, &liFilePointer, FILE_BEGIN)) { - IGNORE_RETVAL(WriteFileWithRetry(hPhysicalDrive, pZeroBuf, - SectorSize * MAX_SECTORS_TO_CLEAR, NULL, WRITE_RETRIES)); - } + if (SetFilePointerEx(hPhysicalDrive, liFilePointer, &liFilePointer, FILE_BEGIN) && + WriteFileWithRetry(hPhysicalDrive, pZeroBuf, SectorSize * (MAX_SECTORS_TO_CLEAR / 8), NULL, WRITE_RETRIES)) + uprintf("Zeroed %s at the end of the drive", SizeToHumanReadable((MAX_SECTORS_TO_CLEAR / 8) * SectorSize, FALSE, FALSE)); + else + uprintf("WARNING: Could not to clear the backup GPT area: %s", WindowsErrorString()); + r = TRUE; out: @@ -807,7 +798,7 @@ static BOOL WriteMBR(HANDLE hPhysicalDrive) if (buffer[0x1c2] == 0x0e) { uprintf("Partition is already FAT16 LBA..."); } else if ((buffer[0x1c2] != 0x04) && (buffer[0x1c2] != 0x06)) { - uprintf("Warning: converting a non FAT16 partition to FAT16 LBA: FS type=0x%02x", buffer[0x1c2]); + uprintf("WARNING: converting a non FAT16 partition to FAT16 LBA: FS type=0x%02x", buffer[0x1c2]); } buffer[0x1c2] = 0x0e; break; @@ -815,7 +806,7 @@ static BOOL WriteMBR(HANDLE hPhysicalDrive) if (buffer[0x1c2] == 0x0c) { uprintf("Partition is already FAT32 LBA..."); } else if (buffer[0x1c2] != 0x0b) { - uprintf("Warning: converting a non FAT32 partition to FAT32 LBA: FS type=0x%02x", buffer[0x1c2]); + uprintf("WARNING: converting a non FAT32 partition to FAT32 LBA: FS type=0x%02x", buffer[0x1c2]); } buffer[0x1c2] = 0x0c; break; @@ -1081,10 +1072,18 @@ BOOL WritePBR(HANDLE hLogicalVolume) return FALSE; } -static void update_progress(const uint64_t processed_bytes) +static void update_progress(const int64_t processed_bytes) { - UpdateProgressWithInfo(OP_FORMAT, MSG_261, processed_bytes, img_report.image_size); - uprint_progress(processed_bytes, img_report.image_size); + static uint64_t total_bytes; + + if (processed_bytes < 0) { + total_bytes = -processed_bytes; + UpdateProgressWithInfo(OP_FORMAT, MSG_261, 0, total_bytes); + uprint_progress(0, total_bytes); + } else { + UpdateProgressWithInfo(OP_FORMAT, MSG_261, processed_bytes, total_bytes); + uprint_progress(processed_bytes, total_bytes); + } } // Some compressed images use streams that aren't multiple of the sector @@ -1098,9 +1097,9 @@ static int sector_write(int fd, const void* _buf, unsigned int count) if (sec_size == 0) sec_size = 512; - if_not_assert(sec_size <= 64 * KB) + if_assert_fails(sec_size <= 64 * KB) return -1; - if_not_assert(count <= 1 * GB) + if_assert_fails(count <= 1 * GB) return -1; // If we are on a sector boundary and count is multiple of the @@ -1110,7 +1109,7 @@ static int sector_write(int fd, const void* _buf, unsigned int count) // If we have an existing partial sector, fill and write it if (sec_buf_pos > 0) { - if_not_assert(sec_size >= sec_buf_pos) + if_assert_fails(sec_size >= sec_buf_pos) return -1; fill_size = min(sec_size - sec_buf_pos, count); memcpy(&sec_buf[sec_buf_pos], buf, fill_size); @@ -1133,13 +1132,13 @@ static int sector_write(int fd, const void* _buf, unsigned int count) // Detect overflows // coverity[overflow] int v = fill_size + written; - if_not_assert(v >= fill_size) + if_assert_fails(v >= fill_size) return -1; else return v; } sec_buf_pos = count - fill_size - written; - if_not_assert(sec_buf_pos < sec_size) + if_assert_fails(sec_buf_pos < sec_size) return -1; // Keep leftover bytes, if any, in the sector buffer @@ -1170,7 +1169,7 @@ static BOOL WriteDrive(HANDLE hPhysicalDrive, BOOL bZeroDrive) // We poked the MBR and other stuff, so we need to rewind li.QuadPart = 0; if (!SetFilePointerEx(hPhysicalDrive, li, NULL, FILE_BEGIN)) - uprintf("Warning: Unable to rewind image position - wrong data might be copied!"); + uprintf("WARNING: Unable to rewind image position - wrong data might be copied!"); UpdateProgressWithInfoInit(NULL, FALSE); if (bZeroDrive) { @@ -1183,7 +1182,7 @@ static BOOL WriteDrive(HANDLE hPhysicalDrive, BOOL bZeroDrive) uprintf("Could not allocate disk zeroing buffer"); goto out; } - if_not_assert((uintptr_t)buffer % SelectedDrive.SectorSize == 0) + if_assert_fails((uintptr_t)buffer % SelectedDrive.SectorSize == 0) goto out; // Clear buffer @@ -1196,7 +1195,7 @@ static BOOL WriteDrive(HANDLE hPhysicalDrive, BOOL bZeroDrive) uprintf("Could not allocate disk comparison buffer"); goto out; } - if_not_assert((uintptr_t)cmp_buffer % SelectedDrive.SectorSize == 0) + if_assert_fails((uintptr_t)cmp_buffer % SelectedDrive.SectorSize == 0) goto out; } @@ -1294,10 +1293,9 @@ static BOOL WriteDrive(HANDLE hPhysicalDrive, BOOL bZeroDrive) uprintf("Could not allocate disk write buffer"); goto out; } - if_not_assert((uintptr_t)sec_buf% SelectedDrive.SectorSize == 0) + if_assert_fails((uintptr_t)sec_buf% SelectedDrive.SectorSize == 0) goto out; sec_buf_pos = 0; - update_progress(0); bled_init(256 * KB, uprintf, NULL, sector_write, update_progress, NULL, &ErrorStatus); bled_ret = bled_uncompress_with_handles(hSourceImage, hPhysicalDrive, img_report.compression_type); bled_exit(); @@ -1318,7 +1316,7 @@ static BOOL WriteDrive(HANDLE hPhysicalDrive, BOOL bZeroDrive) goto out; } } else { - if_not_assert(img_report.compression_type != IMG_COMPRESSION_FFU) + if_assert_fails(img_report.compression_type != IMG_COMPRESSION_FFU) goto out; // VHD/VHDX require mounting the image first if (img_report.compression_type == IMG_COMPRESSION_VHD || @@ -1345,7 +1343,7 @@ static BOOL WriteDrive(HANDLE hPhysicalDrive, BOOL bZeroDrive) uprintf("Could not allocate disk write buffer"); goto out; } - if_not_assert((uintptr_t)buffer% SelectedDrive.SectorSize == 0) + if_assert_fails((uintptr_t)buffer% SelectedDrive.SectorSize == 0) goto out; // Start the initial read @@ -1372,7 +1370,7 @@ static BOOL WriteDrive(HANDLE hPhysicalDrive, BOOL bZeroDrive) // 2. WriteFile fails unless the size is a multiple of sector size if (read_size[read_bufnum] % SelectedDrive.SectorSize != 0) { - if_not_assert(CEILING_ALIGN(read_size[read_bufnum], SelectedDrive.SectorSize) <= buf_size) + if_assert_fails(CEILING_ALIGN(read_size[read_bufnum], SelectedDrive.SectorSize) <= buf_size) goto out; read_size[read_bufnum] = CEILING_ALIGN(read_size[read_bufnum], SelectedDrive.SectorSize); } @@ -1447,10 +1445,11 @@ out: DWORD WINAPI FormatThread(void* param) { int r; - BOOL ret, use_large_fat32, windows_to_go, actual_lock_drive = lock_drive, write_as_ext = FALSE; + BOOL ret, windows_to_go, actual_lock_drive = lock_drive, write_as_ext = FALSE; // Windows 11 and VDS (which I suspect is what fmifs.dll's FormatEx() is now calling behind the scenes) // require us to unlock the physical drive to format the drive, else access denied is returned. BOOL need_logical = FALSE, must_unlock_physical = (use_vds || WindowsVersion.Version >= WINDOWS_11); + BOOL retry_clear = TRUE; DWORD cr, DriveIndex = (DWORD)(uintptr_t)param, ClusterSize, Flags; HANDLE hPhysicalDrive = INVALID_HANDLE_VALUE; HANDLE hLogicalVolume = INVALID_HANDLE_VALUE; @@ -1464,7 +1463,6 @@ DWORD WINAPI FormatThread(void* param) char kolibri_dst[] = "?:\\MTLD_F32"; char grub4dos_dst[] = "?:\\grldr"; - use_large_fat32 = (fs_type == FS_FAT32) && ((SelectedDrive.DiskSize > LARGE_FAT32_SIZE) || (force_large_fat32)); windows_to_go = (image_options & IMOP_WINTOGO) && (boot_type == BT_IMAGE) && HAS_WINTOGO(img_report) && (ComboBox_GetCurItemData(hImageOption) == IMOP_WIN_TO_GO); large_drive = (SelectedDrive.DiskSize > (1*TB)); @@ -1532,7 +1530,7 @@ DWORD WINAPI FormatThread(void* param) safe_unlockclose(hPhysicalDrive); PrintInfo(0, MSG_239, lmprintf(MSG_307)); if (!is_vds_available || !DeletePartition(DriveIndex, 0, TRUE)) { - uprintf("Warning: Could not delete partition(s): %s", is_vds_available ? WindowsErrorString() : "VDS is not available"); + uprintf("WARNING: Could not delete partition(s): %s", is_vds_available ? WindowsErrorString() : "VDS is not available"); SetLastError(ErrorStatus); ErrorStatus = 0; // If we couldn't delete partitions, Windows give us trouble unless we @@ -1582,13 +1580,33 @@ DWORD WINAPI FormatThread(void* param) goto out; } - // Zap partition records. This helps prevent access errors. +try_clear: + // Zap partition records. This may help prevent access errors. // Note, Microsoft's way of cleaning partitions (IOCTL_DISK_CREATE_DISK, which is what we apply // in InitializeDisk) is *NOT ENOUGH* to reset a disk and can render it inoperable for partitioning // or formatting under Windows. See https://github.com/pbatard/rufus/issues/759 for details. if ((boot_type != BT_IMAGE) || (img_report.is_iso && !write_as_image)) { - if ((!ClearMBRGPT(hPhysicalDrive, SelectedDrive.DiskSize, SelectedDrive.SectorSize, use_large_fat32)) || + if ((!ClearMBRGPT(hPhysicalDrive, SelectedDrive.DiskSize, SelectedDrive.SectorSize)) || (!InitializeDisk(hPhysicalDrive))) { + // If VDS is available, try cycling the device to see it it helps + if (retry_clear && is_vds_available) { + uprintf("Cycling the device to see if it helps..."); + // Note: This may leave the device disabled on re-plug or reboot + // so only do this for the experimental VDS path for now... + cr = CycleDevice(ComboBox_GetCurSel(hDeviceList)); + if (cr == ERROR_DEVICE_REINITIALIZATION_NEEDED) { + uprintf("Zombie device detected, trying again..."); + Sleep(1000); + cr = CycleDevice(ComboBox_GetCurSel(hDeviceList)); + } + if (cr == 0) + uprintf("Successfully cycled device"); + else + uprintf("Cycling device failed!"); + Sleep(1000); + retry_clear = FALSE; + goto try_clear; + } uprintf("Could not reset partitions"); ErrorStatus = (LastWriteError != 0) ? LastWriteError : RUFUS_ERROR(ERROR_PARTITION_FAILURE); goto out; @@ -1622,7 +1640,7 @@ DWORD WINAPI FormatThread(void* param) uprintf("Bad blocks: Check failed."); if (!IS_ERROR(ErrorStatus)) ErrorStatus = RUFUS_ERROR(APPERR(ERROR_BADBLOCKS_FAILURE)); - ClearMBRGPT(hPhysicalDrive, SelectedDrive.DiskSize, SelectedDrive.SectorSize, FALSE); + ClearMBRGPT(hPhysicalDrive, SelectedDrive.DiskSize, SelectedDrive.SectorSize); fclose(log_fd); DeleteFileU(logfile); goto out; @@ -1639,8 +1657,7 @@ DWORD WINAPI FormatThread(void* param) fprintf(log_fd, APPLICATION_NAME " bad blocks check ended on: %04d.%02d.%02d %02d:%02d:%02d", lt.wYear, lt.wMonth, lt.wDay, lt.wHour, lt.wMinute, lt.wSecond); fclose(log_fd); - r = MessageBoxExU(hMainDialog, lmprintf(MSG_012, bb_msg, logfile), - lmprintf(MSG_010), MB_ABORTRETRYIGNORE | MB_ICONWARNING | MB_IS_RTL, selected_langid); + r = Notification(MB_ABORTRETRYIGNORE | MB_ICONWARNING, lmprintf(MSG_010), lmprintf(MSG_012, bb_msg, logfile)); } else { // We didn't get any errors => delete the log file fclose(log_fd); @@ -1654,8 +1671,8 @@ DWORD WINAPI FormatThread(void* param) // Especially after destructive badblocks test, you must zero the MBR/GPT completely // before repartitioning. Else, all kind of bad things happen. - if (!ClearMBRGPT(hPhysicalDrive, SelectedDrive.DiskSize, SelectedDrive.SectorSize, use_large_fat32)) { - uprintf("unable to zero MBR/GPT"); + if (!ClearMBRGPT(hPhysicalDrive, SelectedDrive.DiskSize, SelectedDrive.SectorSize)) { + uprintf("Could not zero MBR/GPT"); if (!IS_ERROR(ErrorStatus)) ErrorStatus = RUFUS_ERROR(ERROR_WRITE_FAULT); goto out; @@ -1668,14 +1685,14 @@ DWORD WINAPI FormatThread(void* param) if (img_report.compression_type == IMG_COMPRESSION_FFU) { char cmd[MAX_PATH + 128], *physical = NULL; // Should have been filtered out beforehand - if_not_assert(has_ffu_support) + if_assert_fails(has_ffu_support) goto out; safe_unlockclose(hPhysicalDrive); physical = GetPhysicalName(SelectedDrive.DeviceNumber); - static_sprintf(cmd, "dism /Apply-Ffu /ApplyDrive:%s /ImageFile:\"%s\"", physical, image_path); + static_sprintf(cmd, "%s\\dism.exe /Apply-Ffu /ApplyDrive:%s /ImageFile:\"%s\"", sysnative_dir, physical, image_path); safe_free(physical); - uprintf("Running command: '%s", cmd); - cr = RunCommandWithProgress(cmd, sysnative_dir, TRUE, MSG_261); + uprintf("Running command: '%s'", cmd); + cr = RunCommandWithProgress(cmd, sysnative_dir, TRUE, MSG_261, ".*\r\\[[= ]+([0-9\\.]+)%[= ]+\\].*"); if (cr != 0 && !IS_ERROR(ErrorStatus)) { SetLastError(cr); uprintf("Failed to apply FFU image: %s", WindowsErrorString()); @@ -1713,9 +1730,9 @@ DWORD WINAPI FormatThread(void* param) safe_unlockclose(hPhysicalDrive); if (use_vds) { - uprintf("Refreshing drive layout..."); // Note: This may leave the device disabled on re-plug or reboot // so only do this for the experimental VDS path for now... + uprintf("Cycling device..."); cr = CycleDevice(ComboBox_GetCurSel(hDeviceList)); if (cr == ERROR_DEVICE_REINITIALIZATION_NEEDED) { uprintf("Zombie device detected, trying again..."); @@ -1726,6 +1743,10 @@ DWORD WINAPI FormatThread(void* param) uprintf("Successfully cycled device"); else uprintf("Cycling device failed!"); + } + if (is_vds_available) { + // This one should be safe to issue unconditionally + uprintf("Refreshing drive layout..."); RefreshLayout(DriveIndex); } @@ -1767,6 +1788,9 @@ DWORD WINAPI FormatThread(void* param) } GetWindowTextU(hLabel, label, sizeof(label)); + // Append a " (SILENT)" suffix to the label for fully unattended silent installation media. + if (append_silent && strstr(label, " (SILENT)") == NULL) + static_strcat(label, " (SILENT)"); if (fs_type < FS_EXT2) ToValidLabel(label, (fs_type == FS_FAT16) || (fs_type == FS_FAT32) || (fs_type == FS_EXFAT)); ClusterSize = (DWORD)ComboBox_GetCurItemData(hClusterSize); @@ -1845,7 +1869,7 @@ DWORD WINAPI FormatThread(void* param) // the name we proposed, and we require an exact label, to patch config files. if ((fs_type < FS_EXT2) && !GetVolumeInformationU(drive_name, img_report.usb_label, ARRAYSIZE(img_report.usb_label), NULL, NULL, NULL, NULL, 0)) { - uprintf("Warning: Failed to refresh label: %s", WindowsErrorString()); + uprintf("WARNING: Failed to refresh label: %s", WindowsErrorString()); } else if (IS_EXT(fs_type)) { const char* ext_label = GetExtFsLabel(DriveIndex, 0); if (ext_label != NULL) @@ -1857,7 +1881,7 @@ DWORD WINAPI FormatThread(void* param) // All good } else if (target_type == TT_UEFI) { // For once, no need to do anything - just check our sanity - if_not_assert((boot_type == BT_IMAGE) && IS_EFI_BOOTABLE(img_report) && (fs_type <= FS_NTFS)) { + if_assert_fails((boot_type == BT_IMAGE) && IS_EFI_BOOTABLE(img_report) && (fs_type <= FS_NTFS)) { ErrorStatus = RUFUS_ERROR(ERROR_INSTALL_FAILURE); goto out; } @@ -1932,7 +1956,7 @@ DWORD WINAPI FormatThread(void* param) ErrorStatus = RUFUS_ERROR(APPERR(ERROR_CANT_PATCH)); } } else { - if_not_assert(!img_report.is_windows_img) + if_assert_fails(!img_report.is_windows_img) goto out; if (!ExtractISO(image_path, drive_name, FALSE)) { if (!IS_ERROR(ErrorStatus)) @@ -1944,7 +1968,7 @@ DWORD WINAPI FormatThread(void* param) uprintf("Installing: %s (KolibriOS loader)", kolibri_dst); if (ExtractISOFile(image_path, "HD_Load/USB_Boot/MTLD_F32", kolibri_dst, FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM) == 0) { - uprintf("Warning: loader installation failed - KolibriOS will not boot!"); + uprintf("WARNING: Loader installation failed - KolibriOS will not boot!"); } } // EFI mode selected, with no 'boot###.efi' but Windows 7 x64's 'bootmgr.efi' (bit #0) @@ -1965,7 +1989,6 @@ DWORD WINAPI FormatThread(void* param) } } } - CopySKUSiPolicy(drive_name); if ( (target_type == TT_BIOS) && HAS_WINPE(img_report) ) { // Apply WinPE fixup if (!SetupWinPE(drive_name[0])) @@ -2004,7 +2027,7 @@ DWORD WINAPI FormatThread(void* param) UpdateProgress(OP_EXTRACT_ZIP, 0.0f); drive_name[2] = 0; if (archive_path != NULL && fs_type < FS_EXT2 && !ExtractZip(archive_path, drive_name) && !IS_ERROR(ErrorStatus)) - uprintf("Warning: Could not copy additional files"); + uprintf("WARNING: Could not copy additional files"); } out: diff --git a/src/gpt_types.h b/src/gpt_types.h index 926056cc..128123aa 100644 --- a/src/gpt_types.h +++ b/src/gpt_types.h @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * GPT Partition Types - * Copyright © 2020 Pete Batard + * Copyright © 2020-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,226 +24,520 @@ #pragma once -/* - * From https://en.wikipedia.org/wiki/GUID_Partition_Table - */ -DEFINE_GUID(PARTITION_ANDROID_BOOT, 0x49A4D17F, 0x93A3, 0x45C1, 0xA0, 0xDE, 0xF5, 0x0B, 0x2E, 0xBE, 0x25, 0x99); -DEFINE_GUID(PARTITION_ANDROID_BOOTLOADER1, 0x2568845D, 0x2332, 0x4675, 0xBC, 0x39, 0x8F, 0xA5, 0xA4, 0x74, 0x8D, 0x15); -DEFINE_GUID(PARTITION_ANDROID_BOOTLOADER2, 0x114EAFFE, 0x1552, 0x4022, 0xB2, 0x6E, 0x9B, 0x05, 0x36, 0x04, 0xCF, 0x84); -DEFINE_GUID(PARTITION_ANDROID_CACHE, 0xA893EF21, 0xE428, 0x470A, 0x9E, 0x55, 0x06, 0x68, 0xFD, 0x91, 0xA2, 0xD9); -DEFINE_GUID(PARTITION_ANDROID_CONFIG, 0xBD59408B, 0x4514, 0x490D, 0xBF, 0x12, 0x98, 0x78, 0xD9, 0x63, 0xF3, 0x78); -DEFINE_GUID(PARTITION_ANDROID_DATA, 0xDC76DDA9, 0x5AC1, 0x491C, 0xAF, 0x42, 0xA8, 0x25, 0x91, 0x58, 0x0C, 0x0D); -DEFINE_GUID(PARTITION_ANDROID_EXT, 0x193D1EA4, 0xB3CA, 0x11E4, 0xB0, 0x75, 0x10, 0x60, 0x4B, 0x88, 0x9D, 0xCF); -DEFINE_GUID(PARTITION_ANDROID_FACTORY1, 0x8F68CC74, 0xC5E5, 0x48DA, 0xBE, 0x91, 0xA0, 0xC8, 0xC1, 0x5E, 0x9C, 0x80); -DEFINE_GUID(PARTITION_ANDROID_FACTORY2, 0x9FDAA6EF, 0x4B3F, 0x40D2, 0xBA, 0x8D, 0xBF, 0xF1, 0x6B, 0xFB, 0x88, 0x7B); -DEFINE_GUID(PARTITION_ANDROID_FASTBOOT, 0x767941D0, 0x2085, 0x11E3, 0xAD, 0x3B, 0x6C, 0xFD, 0xB9, 0x47, 0x11, 0xE9); -DEFINE_GUID(PARTITION_ANDROID_METADATA1, 0x20AC26BE, 0x20B7, 0x11E3, 0x84, 0xC5, 0x6C, 0xFD, 0xB9, 0x47, 0x11, 0xE9); -DEFINE_GUID(PARTITION_ANDROID_METADATA2, 0x19A710A2, 0xB3CA, 0x11E4, 0xB0, 0x26, 0x10, 0x60, 0x4B, 0x88, 0x9D, 0xCF); -DEFINE_GUID(PARTITION_ANDROID_MISC, 0xEF32A33B, 0xA409, 0x486C, 0x91, 0x41, 0x9F, 0xFB, 0x71, 0x1F, 0x62, 0x66); -DEFINE_GUID(PARTITION_ANDROID_OEM, 0xAC6D7924, 0xEB71, 0x4DF8, 0xB4, 0x8D, 0xE2, 0x67, 0xB2, 0x71, 0x48, 0xFF); -DEFINE_GUID(PARTITION_ANDROID_PERSISTENCE, 0xEBC597D0, 0x2053, 0x4B15, 0x8B, 0x64, 0xE0, 0xAA, 0xC7, 0x5F, 0x4D, 0xB1); -DEFINE_GUID(PARTITION_ANDROID_RECOVERY, 0x4177C722, 0x9E92, 0x4AAB, 0x86, 0x44, 0x43, 0x50, 0x2B, 0xFD, 0x55, 0x06); -DEFINE_GUID(PARTITION_ANDROID_SYSTEM, 0x38F428E6, 0xD326, 0x425D, 0x91, 0x40, 0x6E, 0x0E, 0xA1, 0x33, 0x64, 0x7C); -DEFINE_GUID(PARTITION_ANDROID_VENDOR, 0xC5A0AEEC, 0x13EA, 0x11E5, 0xA1, 0xB1, 0x00, 0x1E, 0x67, 0xCA, 0x0C, 0x3C); -DEFINE_GUID(PARTITION_APPLE_APFS, 0x7C3457EF, 0x0000, 0x11AA, 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC); -DEFINE_GUID(PARTITION_APPLE_BOOT, 0x426F6F74, 0x0000, 0x11AA, 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC); -DEFINE_GUID(PARTITION_APPLE_FILEVAULT, 0x53746F72, 0x6167, 0x11AA, 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC); -DEFINE_GUID(PARTITION_APPLE_HFS, 0x48465300, 0x0000, 0x11AA, 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC); -DEFINE_GUID(PARTITION_APPLE_LABEL, 0x4C616265, 0x6C00, 0x11AA, 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC); -DEFINE_GUID(PARTITION_APPLE_OFFLINE_RAID, 0x52414944, 0x5F4F, 0x11AA, 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC); -DEFINE_GUID(PARTITION_APPLE_RAID, 0x52414944, 0x0000, 0x11AA, 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC); -DEFINE_GUID(PARTITION_APPLE_RAID_CACHE, 0xBBBA6DF5, 0xF46F, 0x4A89, 0x8F, 0x59, 0x87, 0x65, 0xB2, 0x72, 0x75, 0x03); -DEFINE_GUID(PARTITION_APPLE_RAID_SCRATCH, 0x2E313465, 0x19B9, 0x463F, 0x81, 0x26, 0x8A, 0x79, 0x93, 0x77, 0x38, 0x01); -DEFINE_GUID(PARTITION_APPLE_RAID_STATUS, 0xB6FA30DA, 0x92D2, 0x4A9A, 0x96, 0xF1, 0x87, 0x1E, 0xC6, 0x48, 0x62, 0x00); -DEFINE_GUID(PARTITION_APPLE_RAID_VOLUME, 0xFA709C7E, 0x65B1, 0x4593, 0xBF, 0xD5, 0xE7, 0x1D, 0x61, 0xDE, 0x9B, 0x02); -DEFINE_GUID(PARTITION_APPLE_RECOVERY, 0x5265636F, 0x7665, 0x11AA, 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC); -DEFINE_GUID(PARTITION_APPLE_UFS, 0x55465300, 0x0000, 0x11AA, 0xAA, 0x11, 0x00, 0x30, 0x65, 0x43, 0xEC, 0xAC); -// Stolen from Solaris below. Great job here, Apple! Then again, Oracle can and *should* go to hell, so who cares... -DEFINE_GUID(PARTITION_APPLE_ZFS, 0x6A898CC3, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_ATARI_DATA, 0x734E5AFE, 0xF61A, 0x11E6, 0xBC, 0x64, 0x92, 0x36, 0x1F, 0x00, 0x26, 0x71); -DEFINE_GUID(PARTITION_BEOS_BFS, 0x42465331, 0x3BA3, 0x10F1, 0x80, 0x2A, 0x48, 0x61, 0x69, 0x6B, 0x75, 0x21); -DEFINE_GUID(PARTITION_CHROMEOS_KERNEL, 0xFE3A2A5D, 0x4F32, 0x41A7, 0xB7, 0x25, 0xAC, 0xCC, 0x32, 0x85, 0xA3, 0x09); -DEFINE_GUID(PARTITION_CHROMEOS_RESERVED, 0x2E0A753D, 0x9E48, 0x43B0, 0x83, 0x37, 0xB1, 0x51, 0x92, 0xCB, 0x1B, 0x5E); -DEFINE_GUID(PARTITION_CHROMEOS_ROOT, 0x3CB8E202, 0x3B7E, 0x47DD, 0x8A, 0x3C, 0x7F, 0xF2, 0xA1, 0x3C, 0xFC, 0xEC); -DEFINE_GUID(PARTITION_COREOS_RAID, 0xBE9067B9, 0xEA49, 0x4F15, 0xB4, 0xF6, 0xF3, 0x6F, 0x8C, 0x9E, 0x18, 0x18); -DEFINE_GUID(PARTITION_COREOS_RESERVED, 0xC95DC21A, 0xDF0E, 0x4340, 0x8D, 0x7B, 0x26, 0xCB, 0xFA, 0x9A, 0x03, 0xE0); -DEFINE_GUID(PARTITION_COREOS_ROOT, 0x3884DD41, 0x8582, 0x4404, 0xB9, 0xA8, 0xE9, 0xB8, 0x4F, 0x2D, 0xF5, 0x0E); -DEFINE_GUID(PARTITION_COREOS_USR, 0x5DFBF5F4, 0x2848, 0x4BAC, 0xAA, 0x5E, 0x0D, 0x9A, 0x20, 0xB7, 0x45, 0xA6); -DEFINE_GUID(PARTITION_FREEBSD_BOOT, 0x83BD6B9D, 0x7F41, 0x11DC, 0xBE, 0x0B, 0x00, 0x15, 0x60, 0xB8, 0x4F, 0x0F); -DEFINE_GUID(PARTITION_FREEBSD_DATA, 0x516E7CB4, 0x6ECF, 0x11D6, 0x8F, 0xF8, 0x00, 0x02, 0x2D, 0x09, 0x71, 0x2B); -DEFINE_GUID(PARTITION_FREEBSD_LVM, 0x516E7CB8, 0x6ECF, 0x11D6, 0x8F, 0xF8, 0x00, 0x02, 0x2D, 0x09, 0x71, 0x2B); -DEFINE_GUID(PARTITION_FREEBSD_SWAP, 0x516E7CB5, 0x6ECF, 0x11D6, 0x8F, 0xF8, 0x00, 0x02, 0x2D, 0x09, 0x71, 0x2B); -DEFINE_GUID(PARTITION_FREEBSD_UFS, 0x516E7CB6, 0x6ECF, 0x11D6, 0x8F, 0xF8, 0x00, 0x02, 0x2D, 0x09, 0x71, 0x2B); -DEFINE_GUID(PARTITION_FREEBSD_ZFS, 0x516E7CBA, 0x6ECF, 0x11D6, 0x8F, 0xF8, 0x00, 0x02, 0x2D, 0x09, 0x71, 0x2B); -DEFINE_GUID(PARTITION_GENERIC_BIOS_BOOT, 0x21686148, 0x6449, 0x6E6F, 0x74, 0x4E, 0x65, 0x65, 0x64, 0x45, 0x46, 0x49); -DEFINE_GUID(PARTITION_GENERIC_XBOOTLDR, 0xBC13C2FF, 0x59E6, 0x4262, 0xA3, 0x52, 0xB2, 0x75, 0xFD, 0x6F, 0x71, 0x72); -DEFINE_GUID(PARTITION_GENERIC_ESP, 0xC12A7328, 0xF81F, 0x11D2, 0xBA, 0x4B, 0x00, 0xA0, 0xC9, 0x3E, 0xC9, 0x3B); -DEFINE_GUID(PARTITION_GENERIC_MBR, 0x024DEE41, 0x33E7, 0x11D3, 0x9D, 0x69, 0x00, 0x08, 0xC7, 0x81, 0xF3, 0x9F); -DEFINE_GUID(PARTITION_GENERIC_UNUSED, 0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); -DEFINE_GUID(PARTITION_HPUX_DATA, 0x75894C1E, 0x3AEB, 0x11D3, 0xB7, 0xC1, 0x7B, 0x03, 0xA0, 0x00, 0x00, 0x00); -DEFINE_GUID(PARTITION_HPUX_SERVICE, 0xE2A1E728, 0x32E3, 0x11D6, 0xA6, 0x82, 0x7B, 0x03, 0xA0, 0x00, 0x00, 0x00); -DEFINE_GUID(PARTITION_IBM_GPFS, 0x37AFFC90, 0xEF7D, 0x4E96, 0x91, 0xC3, 0x2D, 0x7A, 0xE0, 0x55, 0xB1, 0x74); -DEFINE_GUID(PARTITION_INTEL_IFF, 0xD3BFE2DE, 0x3DAF, 0x11DF, 0xBA, 0x40, 0xE3, 0xA5, 0x56, 0xD8, 0x95, 0x93); -DEFINE_GUID(PARTITION_LENOVO_BOOT, 0xBFBFAFE7, 0xA34F, 0x448A, 0x9A, 0x5B, 0x62, 0x13, 0xEB, 0x73, 0x6C, 0x22); -DEFINE_GUID(PARTITION_LINUX_BOOT, 0xBC13C2FF, 0x59E6, 0x4262, 0xA3, 0x52, 0xB2, 0x75, 0xFD, 0x6F, 0x71, 0x72); -DEFINE_GUID(PARTITION_LINUX_DATA, 0x0FC63DAF, 0x8483, 0x4772, 0x8E, 0x79, 0x3D, 0x69, 0xD8, 0x47, 0x7D, 0xE4); -DEFINE_GUID(PARTITION_LINUX_ENCRYPTED, 0x7FFEC5C9, 0x2D00, 0x49B7, 0x89, 0x41, 0x3E, 0xA1, 0x0A, 0x55, 0x86, 0xB7); -DEFINE_GUID(PARTITION_LINUX_HOME, 0x933AC7E1, 0x2EB4, 0x4F13, 0xB8, 0x44, 0x0E, 0x14, 0xE2, 0xAE, 0xF9, 0x15); -DEFINE_GUID(PARTITION_LINUX_LUKS, 0xCA7D7CCB, 0x63ED, 0x4C53, 0x86, 0x1C, 0x17, 0x42, 0x53, 0x60, 0x59, 0xCC); -DEFINE_GUID(PARTITION_LINUX_LVM, 0xE6D6D379, 0xF507, 0x44C2, 0xA2, 0x3C, 0x23, 0x8F, 0x2A, 0x3D, 0xF9, 0x28); -DEFINE_GUID(PARTITION_LINUX_RAID, 0xA19D880F, 0x05FC, 0x4D3B, 0xA0, 0x06, 0x74, 0x3F, 0x0F, 0x84, 0x91, 0x1E); -DEFINE_GUID(PARTITION_LINUX_RESERVED, 0x8DA63339, 0x0007, 0x60C0, 0xC4, 0x36, 0x08, 0x3A, 0xC8, 0x23, 0x09, 0x08); -DEFINE_GUID(PARTITION_LINUX_ROOT_ARM_32, 0x69DAD710, 0x2CE4, 0x4E3C, 0xB1, 0x6C, 0x21, 0xA1, 0xD4, 0x9A, 0xBE, 0xD3); -DEFINE_GUID(PARTITION_LINUX_ROOT_ARM_64, 0xB921B045, 0x1DF0, 0x41C3, 0xAF, 0x44, 0x4C, 0x6F, 0x28, 0x0D, 0x3F, 0xAE); -DEFINE_GUID(PARTITION_LINUX_ROOT_X86_32, 0x44479540, 0xF297, 0x41B2, 0x9A, 0xF7, 0xD1, 0x31, 0xD5, 0xF0, 0x45, 0x8A); -DEFINE_GUID(PARTITION_LINUX_ROOT_X86_64, 0x4F68BCE3, 0xE8CD, 0x4DB1, 0x96, 0xE7, 0xFB, 0xCA, 0xF9, 0x84, 0xB7, 0x09); -DEFINE_GUID(PARTITION_LINUX_SRV, 0x3B8F8425, 0x20E0, 0x4F3B, 0x90, 0x7F, 0x1A, 0x25, 0xA7, 0x6F, 0x98, 0xE8); -DEFINE_GUID(PARTITION_LINUX_SWAP, 0x0657FD6D, 0xA4AB, 0x43C4, 0x84, 0xE5, 0x09, 0x33, 0xC8, 0x4B, 0x4F, 0x4F); -DEFINE_GUID(PARTITION_MICROSOFT_DATA, 0xEBD0A0A2, 0xB9E5, 0x4433, 0x87, 0xC0, 0x68, 0xB6, 0xB7, 0x26, 0x99, 0xC7); -DEFINE_GUID(PARTITION_MICROSOFT_LDM_DATA, 0xAF9B60A0, 0x1431, 0x4F62, 0xBC, 0x68, 0x33, 0x11, 0x71, 0x4A, 0x69, 0xAD); -DEFINE_GUID(PARTITION_MICROSOFT_LDM_META, 0x5808C8AA, 0x7E8F, 0x42E0, 0x85, 0xD2, 0xE1, 0xE9, 0x04, 0x34, 0xCF, 0xB3); -DEFINE_GUID(PARTITION_MICROSOFT_RECOVERY, 0xDE94BBA4, 0x06D1, 0x4D40, 0xA1, 0x6A, 0xBF, 0xD5, 0x01, 0x79, 0xD6, 0xAC); -DEFINE_GUID(PARTITION_MICROSOFT_RESERVED, 0xE3C9E316, 0x0B5C, 0x4DB8, 0x81, 0x7D, 0xF9, 0x2D, 0xF0, 0x02, 0x15, 0xAE); -DEFINE_GUID(PARTITION_MICROSOFT_STORAGE_SPACES, 0xE75CAF8F, 0xF680, 0x4CEE, 0xAF, 0xA3, 0xB0, 0x01, 0xE5, 0x6E, 0xFC, 0x2D); -DEFINE_GUID(PARTITION_NETBSD_CONCAT, 0x2DB519C4, 0xB10F, 0x11DC, 0xB9, 0x9B, 0x00, 0x19, 0xD1, 0x87, 0x96, 0x48); -DEFINE_GUID(PARTITION_NETBSD_ENCRYPTED, 0x2DB519EC, 0xB10F, 0x11DC, 0xB9, 0x9B, 0x00, 0x19, 0xD1, 0x87, 0x96, 0x48); -DEFINE_GUID(PARTITION_NETBSD_FFS, 0x49F48D5A, 0xB10E, 0x11DC, 0xB9, 0x9B, 0x00, 0x19, 0xD1, 0x87, 0x96, 0x48); -DEFINE_GUID(PARTITION_NETBSD_LFS, 0x49F48D82, 0xB10E, 0x11DC, 0xB9, 0x9B, 0x00, 0x19, 0xD1, 0x87, 0x96, 0x48); -DEFINE_GUID(PARTITION_NETBSD_RAID, 0x49F48DAA, 0xB10E, 0x11DC, 0xB9, 0x9B, 0x00, 0x19, 0xD1, 0x87, 0x96, 0x48); -DEFINE_GUID(PARTITION_NETBSD_SWAP, 0x49F48D32, 0xB10E, 0x11DC, 0xB9, 0x9B, 0x00, 0x19, 0xD1, 0x87, 0x96, 0x48); -DEFINE_GUID(PARTITION_OPENBSD_DATA, 0x824CC7A0, 0x36A8, 0x11E3, 0x89, 0x0A, 0x95, 0x25, 0x19, 0xAD, 0x3F, 0x61); -DEFINE_GUID(PARTITION_PLAN9_DATA, 0xC91818F9, 0x8025, 0x47AF, 0x89, 0xD2, 0xF0, 0x30, 0xD7, 0x00, 0x0C, 0x2C); -DEFINE_GUID(PARTITION_PREP_BOOT, 0x9E1A2D38, 0xC612, 0x4316, 0xAA, 0x26, 0x8B, 0x49, 0x52, 0x1E, 0x5A, 0x8B); -DEFINE_GUID(PARTITION_QNX_DATA, 0xCEF5A9AD, 0x73BC, 0x4601, 0x89, 0xF3, 0xCD, 0xEE, 0xEE, 0xE3, 0x21, 0xA1); -DEFINE_GUID(PARTITION_SOLARIS_ALT, 0x6A9283A5, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SOLARIS_BACKUP, 0x6A8B642B, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SOLARIS_BOOT, 0x6A82CB45, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SOLARIS_HOME, 0x6A90BA39, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SOLARIS_RESERVED1, 0x6A945A3B, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SOLARIS_RESERVED2, 0x6A9630D1, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SOLARIS_RESERVED3, 0x6A980767, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SOLARIS_RESERVED4, 0x6A96237F, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SOLARIS_RESERVED5, 0x6A8D2AC7, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -// You sure you don't need a couple more reserved partition GUIDs here, Solaris? -DEFINE_GUID(PARTITION_SOLARIS_ROOT, 0x6A85CF4D, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SOLARIS_SWAP, 0x6A87C46F, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -//DEFINE_GUID(PARTITION_SOLARIS_USR, 0x6A898CC3, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SOLARIS_VAR, 0x6A8EF2E9, 0x1DD2, 0x11B2, 0x99, 0xA6, 0x08, 0x00, 0x20, 0x73, 0x66, 0x31); -DEFINE_GUID(PARTITION_SONY_BOOT, 0xF4019732, 0x066E, 0x4E12, 0x82, 0x73, 0x34, 0x6C, 0x56, 0x41, 0x49, 0x4F); -DEFINE_GUID(PARTITION_VERACRYPT_DATA, 0x8C8F8EFF, 0xAC95, 0x4770, 0x81, 0x4A, 0x21, 0x99, 0x4F, 0x2D, 0xBC, 0x8F); -DEFINE_GUID(PARTITION_VMWARE_COREDUMP, 0x9D275380, 0x40AD, 0x11DB, 0xBF, 0x97, 0x00, 0x0C, 0x29, 0x11, 0xD1, 0xB8); -DEFINE_GUID(PARTITION_VMWARE_RESERVED, 0x9198EFFC, 0x31C0, 0x11DB, 0x8F, 0x78, 0x00, 0x0C, 0x29, 0x11, 0xD1, 0xB8); -DEFINE_GUID(PARTITION_VMWARE_VMFS, 0xAA31E02A, 0x400F, 0x11DB, 0x95, 0x90, 0x00, 0x0C, 0x29, 0x11, 0xD1, 0xB8); - typedef struct { - const GUID* guid; - const char* name; -} gpt_type_t; + uint16_t code; + const char* guid_str; + const char* description; +} gpt_type_entry_t; -gpt_type_t gpt_type[] = { - { &PARTITION_ANDROID_BOOT, "Android Boot Partition" }, - { &PARTITION_ANDROID_BOOTLOADER1, "Android Bootloader Partition" }, - { &PARTITION_ANDROID_BOOTLOADER2, "Android Bootloader Partition" }, - { &PARTITION_ANDROID_CACHE, "Android Cache Partition" }, - { &PARTITION_ANDROID_CONFIG, "Android Config Partition" }, - { &PARTITION_ANDROID_DATA, "Android Data Partition" }, - { &PARTITION_ANDROID_EXT, "Android Ext Partition" }, - { &PARTITION_ANDROID_FACTORY1, "Android Factory Partition" }, - { &PARTITION_ANDROID_FACTORY2, "Android Factory Partition" }, - { &PARTITION_ANDROID_FASTBOOT, "Android Fastboot Partition" }, - { &PARTITION_ANDROID_METADATA1, "Android Metadata Partition" }, - { &PARTITION_ANDROID_METADATA2, "Android Metadata Partition" }, - { &PARTITION_ANDROID_MISC, "Android Misc Partition" }, - { &PARTITION_ANDROID_OEM, "Android OEM Partition" }, - { &PARTITION_ANDROID_PERSISTENCE, "Android Persistent Partition" }, - { &PARTITION_ANDROID_RECOVERY, "Android Recovery Partition" }, - { &PARTITION_ANDROID_SYSTEM, "Android System Partition" }, - { &PARTITION_ANDROID_VENDOR, "Android Vendor Partition" }, - { &PARTITION_APPLE_APFS, "Apple APFS Partition" }, - { &PARTITION_APPLE_BOOT, "Apple Boot Partition" }, - { &PARTITION_APPLE_FILEVAULT, "Apple Filevault Partition" }, - { &PARTITION_APPLE_HFS, "Apple HFS+ Partition" }, - { &PARTITION_APPLE_LABEL, "Apple Label Partition" }, - { &PARTITION_APPLE_OFFLINE_RAID, "Apple RAID Partition (Offline)" }, - { &PARTITION_APPLE_RAID, "Apple RAID Partition" }, - { &PARTITION_APPLE_RAID_CACHE, "Apple RAID Cache Partition" }, - { &PARTITION_APPLE_RAID_SCRATCH, "Apple RAID Scratch Partition" }, - { &PARTITION_APPLE_RAID_STATUS, "Apple RAID Status Partition" }, - { &PARTITION_APPLE_RAID_VOLUME, "Apple RAID Volume Partition" }, - { &PARTITION_APPLE_RECOVERY, "Apple Recovery Partition" }, - { &PARTITION_APPLE_UFS, "Apple UFS Partition" }, - { &PARTITION_APPLE_ZFS, "Apple ZFS Partition" }, - { &PARTITION_ATARI_DATA, "Atari Data Partition" }, - { &PARTITION_BEOS_BFS, "BeOS BFS Partition" }, - { &PARTITION_CHROMEOS_KERNEL, "Chrome OS Kernel Partition" }, - { &PARTITION_CHROMEOS_RESERVED, "Chrome OS Reserved Partition" }, - { &PARTITION_CHROMEOS_ROOT, "Chrome OS Root Partition" }, - { &PARTITION_COREOS_RAID, "CoreOS Raid Partition" }, - { &PARTITION_COREOS_RESERVED, "CoreOS Reserved Partition" }, - { &PARTITION_COREOS_ROOT, "CoreOS Root Partition" }, - { &PARTITION_COREOS_USR, "CoreOS Usr Partition" }, - { &PARTITION_FREEBSD_BOOT, "FreeBSD Boot Partition" }, - { &PARTITION_FREEBSD_DATA, "FreeBSD Data Partition" }, - { &PARTITION_FREEBSD_LVM, "FreeBSD LVM Partition" }, - { &PARTITION_FREEBSD_SWAP, "FreeBSD Swap Partition" }, - { &PARTITION_FREEBSD_UFS, "FreeBSD UFS Partition" }, - { &PARTITION_FREEBSD_ZFS, "FreeBSD ZFS Partition" }, - { &PARTITION_GENERIC_BIOS_BOOT, "BIOS Boot Partition" }, - { &PARTITION_GENERIC_XBOOTLDR, "Extended Boot Loader Partition" }, - { &PARTITION_GENERIC_ESP, "EFI System Partition" }, - { &PARTITION_GENERIC_MBR, "MBR Partition" }, - { &PARTITION_GENERIC_UNUSED, "Unused Partition" }, - { &PARTITION_HPUX_DATA, "HP-UX Data Partition" }, - { &PARTITION_HPUX_SERVICE, "HP-UX Service Partition" }, - { &PARTITION_IBM_GPFS, "IBM GPFS Partition" }, - { &PARTITION_INTEL_IFF, "Intel Fast Flash Partition" }, - { &PARTITION_LENOVO_BOOT, "Lenovo Boot Partition" }, - { &PARTITION_LINUX_BOOT, "Linux Boot Partition" }, - { &PARTITION_LINUX_DATA, "Linux Data Partition" }, - { &PARTITION_LINUX_ENCRYPTED, "Linux Encrypted Partition" }, - { &PARTITION_LINUX_HOME, "Linux Home Partition" }, - { &PARTITION_LINUX_LUKS, "Linux LUKS Partition" }, - { &PARTITION_LINUX_LVM, "Linux LVM Partition" }, - { &PARTITION_LINUX_RAID, "Linux RAID Partition" }, - { &PARTITION_LINUX_RESERVED, "Linux Reserved Partition" }, - { &PARTITION_LINUX_ROOT_ARM_32, "Linux Boot Partition (ARM)" }, - { &PARTITION_LINUX_ROOT_ARM_64, "Linux Boot Partition (ARM64)" }, - { &PARTITION_LINUX_ROOT_X86_32, "Linux Boot Partition (x86-32)" }, - { &PARTITION_LINUX_ROOT_X86_64, "Linux Boot Partition (x86-64)" }, - { &PARTITION_LINUX_SRV, "Linux Srv Partition" }, - { &PARTITION_LINUX_SWAP, "Linux Swap Partition" }, - { &PARTITION_MICROSOFT_DATA, "Microsoft Basic Data Partition" }, - { &PARTITION_MICROSOFT_LDM_DATA, "Microsoft LDM Data Partition" }, - { &PARTITION_MICROSOFT_LDM_META, "Microsoft LDM Metadata Partition" }, - { &PARTITION_MICROSOFT_RECOVERY, "Microsoft Recovery Partition" }, - { &PARTITION_MICROSOFT_RESERVED, "Microsoft System Reserved Partition" }, - { &PARTITION_MICROSOFT_STORAGE_SPACES, "Microsoft Storage Spaces Partition" }, - { &PARTITION_NETBSD_CONCAT, "NetBSD Concatenated Partition" }, - { &PARTITION_NETBSD_ENCRYPTED, "NetBSD Encrypted Partition" }, - { &PARTITION_NETBSD_FFS, "NetBSD FFS Partition" }, - { &PARTITION_NETBSD_LFS, "NetBSD LFS Partition" }, - { &PARTITION_NETBSD_RAID, "NetBSD RAID Partition" }, - { &PARTITION_NETBSD_SWAP, "NetBSD Swap Partition" }, - { &PARTITION_OPENBSD_DATA, "OpenBSD Data Partition" }, - { &PARTITION_PLAN9_DATA, "Plan 9 Data Partition" }, - { &PARTITION_PREP_BOOT, "PReP Boot Partition" }, - { &PARTITION_QNX_DATA, "QNX Data Partition" }, - { &PARTITION_SOLARIS_ALT, "Solaris Alternate Sector Partition" }, - { &PARTITION_SOLARIS_BACKUP, "Solaris Backup Partition" }, - { &PARTITION_SOLARIS_BOOT, "Solaris Boot Partition" }, - { &PARTITION_SOLARIS_HOME, "Solaris Home Partition" }, - { &PARTITION_SOLARIS_RESERVED1, "Solaris Reserved Partition" }, - { &PARTITION_SOLARIS_RESERVED2, "Solaris Reserved Partition" }, - { &PARTITION_SOLARIS_RESERVED3, "Solaris Reserved Partition" }, - { &PARTITION_SOLARIS_RESERVED4, "Solaris Reserved Partition" }, - { &PARTITION_SOLARIS_RESERVED5, "Solaris Reserved Partition" }, - { &PARTITION_SOLARIS_ROOT, "Solaris Root Partition" }, - { &PARTITION_SOLARIS_SWAP, "Solaris Swap Partition" }, -// { &PARTITION_SOLARIS_USR, "Solaris Usr Partition" }, - { &PARTITION_SOLARIS_VAR, "Solaris Var Partition" }, - { &PARTITION_SONY_BOOT, "Sony Boot Partition" }, - { &PARTITION_VERACRYPT_DATA, "VeraCrypt Data Partition" }, - { &PARTITION_VMWARE_COREDUMP, "VMware Coredump Partition" }, - { &PARTITION_VMWARE_RESERVED, "VMware Reserved Partition" }, - { &PARTITION_VMWARE_VMFS, "VMware VMFS Partition" }, +#define AddType(code, guid, desc, ...) { code, guid, desc }, + +/* + * Because we value our sanity, we build our GPT entries from code lifted + * verbatim from Debian's gdisk's parttypes.cc and use AddType() as a macro + * to create a static table. + */ +static const gpt_type_entry_t gpt_type_table[] = { + // From https://salsa.debian.org/debian/gdisk/-/blob/master/parttypes.cc + // Semicolons after Addtype() *MUST* be removed. + + // Start with the "unused entry," which should normally appear only + // on empty partition table entries.... + AddType(0x0000, "00000000-0000-0000-0000-000000000000", "Unused entry", 0) + + // DOS/Windows partition types, most of which are hidden from the "L" listing + // (they're available mainly for MBR-to-GPT conversions). + AddType(0x0100, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // FAT-12 + AddType(0x0400, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // FAT-16 < 32M + AddType(0x0600, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // FAT-16 + AddType(0x0700, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 1) // NTFS (or HPFS) + AddType(0x0701, "558D43C5-A1AC-43C0-AAC8-D1472B2923D1", "Microsoft Storage Replica", 1) + AddType(0x0702, "90B6FF38-B98F-4358-A21F-48F35B4A8AD3", "ArcaOS Type 1", 1) + AddType(0x0b00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // FAT-32 + AddType(0x0c00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // FAT-32 LBA + AddType(0x0c01, "E3C9E316-0B5C-4DB8-817D-F92DF00215AE", "Microsoft reserved") + AddType(0x0e00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // FAT-16 LBA + AddType(0x1100, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // Hidden FAT-12 + AddType(0x1400, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // Hidden FAT-16 < 32M + AddType(0x1600, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // Hidden FAT-16 + AddType(0x1700, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // Hidden NTFS (or HPFS) + AddType(0x1b00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // Hidden FAT-32 + AddType(0x1c00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // Hidden FAT-32 LBA + AddType(0x1e00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0) // Hidden FAT-16 LBA + AddType(0x2700, "DE94BBA4-06D1-4D40-A16A-BFD50179D6AC", "Windows RE") + + // Open Network Install Environment (ONIE) specific types. + // See http://www.onie.org/ and + // https://github.com/opencomputeproject/onie/blob/master/patches/gptfdisk/add-onie-partition-types.patch + AddType(0x3000, "7412F7D5-A156-4B13-81DC-867174929325", "ONIE boot") + AddType(0x3001, "D4E6E2CD-4469-46F3-B5CB-1BFF57AFC149", "ONIE config") + + // Plan 9; see http://man.cat-v.org/9front/8/prep + AddType(0x3900, "C91818F9-8025-47AF-89D2-F030D7000C2C", "Plan 9") + + // PowerPC reference platform boot partition + AddType(0x4100, "9E1A2D38-C612-4316-AA26-8B49521E5A8B", "PowerPC PReP boot") + + // Windows LDM ("dynamic disk") types + AddType(0x4200, "AF9B60A0-1431-4F62-BC68-3311714A69AD", "Windows LDM data") // Logical disk manager + AddType(0x4201, "5808C8AA-7E8F-42E0-85D2-E1E90434CFB3", "Windows LDM metadata") // Logical disk manager + AddType(0x4202, "E75CAF8F-F680-4CEE-AFA3-B001E56EFC2D", "Windows Storage Spaces") // A newer LDM-type setup + + // An oddball IBM filesystem.... + AddType(0x7501, "37AFFC90-EF7D-4E96-91C3-2D7AE055B174", "IBM GPFS") // General Parallel File System (GPFS) + + // ChromeOS-specific partition types... + // Values taken from vboot_reference/firmware/lib/cgptlib/include/gpt.h in + // ChromeOS source code, retrieved 12/23/2010. They're also at + // http://www.chromium.org/chromium-os/chromiumos-design-docs/disk-format. + // These have no MBR equivalents, AFAIK, so I'm using 0x7Fxx values, since they're close + // to the Linux values. + AddType(0x7f00, "FE3A2A5D-4F32-41A7-B725-ACCC3285A309", "ChromeOS kernel") + AddType(0x7f01, "3CB8E202-3B7E-47DD-8A3C-7FF2A13CFCEC", "ChromeOS root") + AddType(0x7f02, "2E0A753D-9E48-43B0-8337-B15192CB1B5E", "ChromeOS reserved") + AddType(0x7f03, "CAB6E88E-ABF3-4102-A07A-D4BB9BE3C1D3", "ChromeOS firmware") + AddType(0x7f04, "09845860-705F-4BB5-B16C-8A8A099CAF52", "ChromeOS mini-OS") + AddType(0x7f05, "3F0F8318-F146-4E6B-8222-C28C8F02E0D5", "ChromeOS hibernate") + + // Linux-specific partition types.... + AddType(0x8200, "0657FD6D-A4AB-43C4-84E5-0933C84B4F4F", "Linux swap") // Linux swap (or Solaris on MBR) + AddType(0x8300, "0FC63DAF-8483-4772-8E79-3D69D8477DE4", "Linux filesystem") // Linux native + AddType(0x8301, "8DA63339-0007-60C0-C436-083AC8230908", "Linux reserved") + // See https://www.freedesktop.org/software/systemd/man/systemd-gpt-auto-generator.html + // and https://systemd.io/DISCOVERABLE_PARTITIONS + AddType(0x8302, "933AC7E1-2EB4-4F13-B844-0E14E2AEF915", "Linux /home") // Linux /home (auto-mounted by systemd) + AddType(0x8303, "44479540-F297-41B2-9AF7-D131D5F0458A", "Linux x86 root (/)") // Linux / on x86 (auto-mounted by systemd) + AddType(0x8304, "4F68BCE3-E8CD-4DB1-96E7-FBCAF984B709", "Linux x86-64 root (/)") // Linux / on x86-64 (auto-mounted by systemd) + AddType(0x8305, "B921B045-1DF0-41C3-AF44-4C6F280D3FAE", "Linux ARM64 root (/)") // Linux / on 64-bit ARM (auto-mounted by systemd) + AddType(0x8306, "3B8F8425-20E0-4F3B-907F-1A25A76F98E8", "Linux /srv") // Linux /srv (auto-mounted by systemd) + AddType(0x8307, "69DAD710-2CE4-4E3C-B16C-21A1D49ABED3", "Linux ARM32 root (/)") // Linux / on 32-bit ARM (auto-mounted by systemd) + AddType(0x8308, "7FFEC5C9-2D00-49B7-8941-3EA10A5586B7", "Linux dm-crypt") + AddType(0x8309, "CA7D7CCB-63ED-4C53-861C-1742536059CC", "Linux LUKS") + AddType(0x830A, "993D8D3D-F80E-4225-855A-9DAF8ED7EA97", "Linux IA-64 root (/)") // Linux / on Itanium (auto-mounted by systemd) + AddType(0x830B, "D13C5D3B-B5D1-422A-B29F-9454FDC89D76", "Linux x86 root verity") + AddType(0x830C, "2C7357ED-EBD2-46D9-AEC1-23D437EC2BF5", "Linux x86-64 root verity") + AddType(0x830D, "7386CDF2-203C-47A9-A498-F2ECCE45A2D6", "Linux ARM32 root verity") + AddType(0x830E, "DF3300CE-D69F-4C92-978C-9BFB0F38D820", "Linux ARM64 root verity") + AddType(0x830F, "86ED10D5-B607-45BB-8957-D350F23D0571", "Linux IA-64 root verity") + AddType(0x8310, "4D21B016-B534-45C2-A9FB-5C16E091FD2D", "Linux /var") // Linux /var (auto-mounted by systemd) + AddType(0x8311, "7EC6F557-3BC5-4ACA-B293-16EF5DF639D1", "Linux /var/tmp") // Linux /var/tmp (auto-mounted by systemd) + // https://systemd.io/HOME_DIRECTORY/ + AddType(0x8312, "773F91EF-66D4-49B5-BD83-D683BF40AD16", "Linux user's home") // used by systemd-homed + AddType(0x8313, "75250D76-8CC6-458E-BD66-BD47CC81A812", "Linux x86 /usr ") // Linux /usr on x86 (auto-mounted by systemd) + AddType(0x8314, "8484680C-9521-48C6-9C11-B0720656F69E", "Linux x86-64 /usr") // Linux /usr on x86-64 (auto-mounted by systemd) + AddType(0x8315, "7D0359A3-02B3-4F0A-865C-654403E70625", "Linux ARM32 /usr") // Linux /usr on 32-bit ARM (auto-mounted by systemd) + AddType(0x8316, "B0E01050-EE5F-4390-949A-9101B17104E9", "Linux ARM64 /usr") // Linux /usr on 64-bit ARM (auto-mounted by systemd) + AddType(0x8317, "4301D2A6-4E3B-4B2A-BB94-9E0B2C4225EA", "Linux IA-64 /usr") // Linux /usr on Itanium (auto-mounted by systemd) + AddType(0x8318, "8F461B0D-14EE-4E81-9AA9-049B6FB97ABD", "Linux x86 /usr verity") + AddType(0x8319, "77FF5F63-E7B6-4633-ACF4-1565B864C0E6", "Linux x86-64 /usr verity") + AddType(0x831A, "C215D751-7BCD-4649-BE90-6627490A4C05", "Linux ARM32 /usr verity") + AddType(0x831B, "6E11A4E7-FBCA-4DED-B9E9-E1A512BB664E", "Linux ARM64 /usr verity") + AddType(0x831C, "6A491E03-3BE7-4545-8E38-83320E0EA880", "Linux IA-64 /usr verity") + AddType(0x831D, "6523F8AE-3EB1-4E2A-A05A-18B695AE656F", "Linux Alpha root (/)") + AddType(0x831E, "D27F46ED-2919-4CB8-BD25-9531F3C16534", "Linux ARC root (/)") + AddType(0x831F, "77055800-792C-4F94-B39A-98C91B762BB6", "Linux LoongArch root (/)") + AddType(0x8320, "E9434544-6E2C-47CC-BAE2-12D6DEAFB44C", "Linux MIPS-32 BE root (/)") + AddType(0x8321, "D113AF76-80EF-41B4-BDB6-0CFF4D3D4A25", "Linux MIPS-64 BE root (/)") + AddType(0x8322, "37C58C8A-D913-4156-A25F-48B1B64E07F0", "Linux MIPS-32 LE root (/)") + AddType(0x8323, "700BDA43-7A34-4507-B179-EEB93D7A7CA3", "Linux MIPS-64 LE root (/)") + AddType(0x8324, "1AACDB3B-5444-4138-BD9E-E5C2239B2346", "Linux PA-RISC root (/)") + AddType(0x8325, "1DE3F1EF-FA98-47B5-8DCD-4A860A654D78", "Linux PowerPC-32 root (/)") + AddType(0x8326, "912ADE1D-A839-4913-8964-A10EEE08FBD2", "Linux PowerPC-64 BE root (/)") + AddType(0x8327, "C31C45E6-3F39-412E-80FB-4809C4980599", "Linux PowerPC-64 LE root (/)") + AddType(0x8328, "60D5A7FE-8E7D-435C-B714-3DD8162144E1", "Linux RISC-V-32 root (/)") + AddType(0x8329, "72EC70A6-CF74-40E6-BD49-4BDA08E8F224", "Linux RISC-V-64 root (/)") + AddType(0x832A, "08A7ACEA-624C-4A20-91E8-6E0FA67D23F9", "Linux s390 root (/)") + AddType(0x832B, "5EEAD9A9-FE09-4A1E-A1D7-520D00531306", "Linux s390x root (/)") + AddType(0x832C, "C50CDD70-3862-4CC3-90E1-809A8C93EE2C", "Linux TILE-Gx root (/)") + AddType(0x832D, "E18CF08C-33EC-4C0D-8246-C6C6FB3DA024", "Linux Alpha /usr") + AddType(0x832E, "7978A683-6316-4922-BBEE-38BFF5A2FECC", "Linux ARC /usr") + AddType(0x832F, "E611C702-575C-4CBE-9A46-434FA0BF7E3F", "Linux LoongArch /usr") + AddType(0x8330, "773B2ABC-2A99-4398-8BF5-03BAAC40D02B", "Linux MIPS-32 BE /usr") + AddType(0x8331, "57E13958-7331-4365-8E6E-35EEEE17C61B", "Linux MIPS-64 BE /usr") + AddType(0x8332, "0F4868E9-9952-4706-979F-3ED3A473E947", "Linux MIPS-32 LE /usr") + AddType(0x8333, "C97C1F32-BA06-40B4-9F22-236061B08AA8", "Linux MIPS-64 LE /usr") + AddType(0x8334, "DC4A4480-6917-4262-A4EC-DB9384949F25", "Linux PA-RISC /usr") + AddType(0x8335, "7D14FEC5-CC71-415D-9D6C-06BF0B3C3EAF", "Linux PowerPC-32 /usr") + AddType(0x8336, "2C9739E2-F068-46B3-9FD0-01C5A9AFBCCA", "Linux PowerPC-64 BE /usr") + AddType(0x8337, "15BB03AF-77E7-4D4A-B12B-C0D084F7491C", "Linux PowerPC-64 LE /usr") + AddType(0x8338, "B933FB22-5C3F-4F91-AF90-E2BB0FA50702", "Linux RISC-V-32 /usr") + AddType(0x8339, "BEAEC34B-8442-439B-A40B-984381ED097D", "Linux RISC-V-64 /usr") + AddType(0x833A, "CD0F869B-D0FB-4CA0-B141-9EA87CC78D66", "Linux s390 /usr") + AddType(0x833B, "8A4F5770-50AA-4ED3-874A-99B710DB6FEA", "Linux s390x /usr") + AddType(0x833C, "55497029-C7C1-44CC-AA39-815ED1558630", "Linux TILE-Gx /usr") + AddType(0x833D, "FC56D9E9-E6E5-4C06-BE32-E74407CE09A5", "Linux Alpha root verity") + AddType(0x833E, "24B2D975-0F97-4521-AFA1-CD531E421B8D", "Linux ARC root verity") + AddType(0x833F, "F3393B22-E9AF-4613-A948-9D3BFBD0C535", "Linux LoongArch root verity") + AddType(0x8340, "7A430799-F711-4C7E-8E5B-1D685BD48607", "Linux MIPS-32 BE root verity") + AddType(0x8341, "579536F8-6A33-4055-A95A-DF2D5E2C42A8", "Linux MIPS-64 BE root verity") + AddType(0x8342, "D7D150D2-2A04-4A33-8F12-16651205FF7B", "Linux MIPS-32 LE root verity") + AddType(0x8343, "16B417F8-3E06-4F57-8DD2-9B5232F41AA6", "Linux MIPS-64 LE root verity") + AddType(0x8344, "D212A430-FBC5-49F9-A983-A7FEEF2B8D0E", "Linux PA-RISC root verity") + AddType(0x8345, "906BD944-4589-4AAE-A4E4-DD983917446A", "Linux PowerPC-64 LE root verity") + AddType(0x8346, "9225A9A3-3C19-4D89-B4F6-EEFF88F17631", "Linux PowerPC-64 BE root verity") + AddType(0x8347, "98CFE649-1588-46DC-B2F0-ADD147424925", "Linux PowerPC-32 root verity") + AddType(0x8348, "AE0253BE-1167-4007-AC68-43926C14C5DE", "Linux RISC-V-32 root verity") + AddType(0x8349, "B6ED5582-440B-4209-B8DA-5FF7C419EA3D", "Linux RISC-V-64 root verity") + AddType(0x834A, "7AC63B47-B25C-463B-8DF8-B4A94E6C90E1", "Linux s390 root verity") + AddType(0x834B, "B325BFBE-C7BE-4AB8-8357-139E652D2F6B", "Linux s390x root verity") + AddType(0x834C, "966061EC-28E4-4B2E-B4A5-1F0A825A1D84", "Linux TILE-Gx root verity") + AddType(0x834D, "8CCE0D25-C0D0-4A44-BD87-46331BF1DF67", "Linux Alpha /usr verity") + AddType(0x834E, "FCA0598C-D880-4591-8C16-4EDA05C7347C", "Linux ARC /usr verity") + AddType(0x834F, "F46B2C26-59AE-48F0-9106-C50ED47F673D", "Linux LoongArch /usr verity") + AddType(0x8350, "6E5A1BC8-D223-49B7-BCA8-37A5FCCEB996", "Linux MIPS-32 BE /usr verity") + AddType(0x8351, "81CF9D90-7458-4DF4-8DCF-C8A3A404F09B", "Linux MIPS-64 BE /usr verity") + AddType(0x8352, "46B98D8D-B55C-4E8F-AAB3-37FCA7F80752", "Linux MIPS-32 LE /usr verity") + AddType(0x8353, "3C3D61FE-B5F3-414D-BB71-8739A694A4EF", "Linux MIPS-64 LE /usr verity") + AddType(0x8354, "5843D618-EC37-48D7-9F12-CEA8E08768B2", "Linux PA-RISC /usr verity") + AddType(0x8355, "EE2B9983-21E8-4153-86D9-B6901A54D1CE", "Linux PowerPC-64 LE /usr verity") + AddType(0x8356, "BDB528A5-A259-475F-A87D-DA53FA736A07", "Linux PowerPC-64 BE /usr verity") + AddType(0x8357, "DF765D00-270E-49E5-BC75-F47BB2118B09", "Linux PowerPC-32 /usr verity") + AddType(0x8358, "CB1EE4E3-8CD0-4136-A0A4-AA61A32E8730", "Linux RISC-V-32 /usr verity") + AddType(0x8359, "8F1056BE-9B05-47C4-81D6-BE53128E5B54", "Linux RISC-V-64 /usr verity") + AddType(0x835A, "B663C618-E7BC-4D6D-90AA-11B756BB1797", "Linux s390 /usr verity") + AddType(0x835B, "31741CC4-1A2A-4111-A581-E00B447D2D06", "Linux s390x /usr verity") + AddType(0x835C, "2FB4BF56-07FA-42DA-8132-6B139F2026AE", "Linux TILE-Gx /usr verity") + AddType(0x835D, "D46495B7-A053-414F-80F7-700C99921EF8", "Linux Alpha root verity signature") + AddType(0x835E, "143A70BA-CBD3-4F06-919F-6C05683A78BC", "Linux ARC root verity signature") + AddType(0x835F, "42B0455F-EB11-491D-98D3-56145BA9D037", "Linux ARM32 root verity signature") + AddType(0x8360, "6DB69DE6-29F4-4758-A7A5-962190F00CE3", "Linux ARM64 root verity signature") + AddType(0x8361, "E98B36EE-32BA-4882-9B12-0CE14655F46A", "Linux IA-64 root verity signature") + AddType(0x8362, "5AFB67EB-ECC8-4F85-AE8E-AC1E7C50E7D0", "Linux LoongArch root verity signature") + AddType(0x8363, "BBA210A2-9C5D-45EE-9E87-FF2CCBD002D0", "Linux MIPS-32 BE root verity signature") + AddType(0x8364, "43CE94D4-0F3D-4999-8250-B9DEAFD98E6E", "Linux MIPS-64 BE root verity signature") + AddType(0x8365, "C919CC1F-4456-4EFF-918C-F75E94525CA5", "Linux MIPS-32 LE root verity signature") + AddType(0x8366, "904E58EF-5C65-4A31-9C57-6AF5FC7C5DE7", "Linux MIPS-64 LE root verity signature") + AddType(0x8367, "15DE6170-65D3-431C-916E-B0DCD8393F25", "Linux PA-RISC root verity signature") + AddType(0x8368, "D4A236E7-E873-4C07-BF1D-BF6CF7F1C3C6", "Linux PowerPC-64 LE root verity signature") + AddType(0x8369, "F5E2C20C-45B2-4FFA-BCE9-2A60737E1AAF", "Linux PowerPC-64 BE root verity signature") + AddType(0x836A, "1B31B5AA-ADD9-463A-B2ED-BD467FC857E7", "Linux PowerPC-32 root verity signature") + AddType(0x836B, "3A112A75-8729-4380-B4CF-764D79934448", "Linux RISC-V-32 root verity signature") + AddType(0x836C, "EFE0F087-EA8D-4469-821A-4C2A96A8386A", "Linux RISC-V-64 root verity signature") + AddType(0x836D, "3482388E-4254-435A-A241-766A065F9960", "Linux s390 root verity signature") + AddType(0x836E, "C80187A5-73A3-491A-901A-017C3FA953E9", "Linux s390x root verity signature") + AddType(0x836F, "B3671439-97B0-4A53-90F7-2D5A8F3AD47B", "Linux TILE-Gx root verity signature") + AddType(0x8370, "41092B05-9FC8-4523-994F-2DEF0408B176", "Linux x86-64 root verity signature") + AddType(0x8371, "5996FC05-109C-48DE-808B-23FA0830B676", "Linux x86 root verity signature") + AddType(0x8372, "5C6E1C76-076A-457A-A0FE-F3B4CD21CE6E", "Linux Alpha /usr verity signature") + AddType(0x8373, "94F9A9A1-9971-427A-A400-50CB297F0F35", "Linux ARC /usr verity signature") + AddType(0x8374, "D7FF812F-37D1-4902-A810-D76BA57B975A", "Linux ARM32 /usr verity signature") + AddType(0x8375, "C23CE4FF-44BD-4B00-B2D4-B41B3419E02A", "Linux ARM64 /usr verity signature") + AddType(0x8376, "8DE58BC2-2A43-460D-B14E-A76E4A17B47F", "Linux IA-64 /usr verity signature") + AddType(0x8377, "B024F315-D330-444C-8461-44BBDE524E99", "Linux LoongArch /usr verity signature") + AddType(0x8378, "97AE158D-F216-497B-8057-F7F905770F54", "Linux MIPS-32 BE /usr verity signature") + AddType(0x8379, "05816CE2-DD40-4AC6-A61D-37D32DC1BA7D", "Linux MIPS-64 BE /usr verity signature") + AddType(0x837A, "3E23CA0B-A4BC-4B4E-8087-5AB6A26AA8A9", "Linux MIPS-32 LE /usr verity signature") + AddType(0x837B, "F2C2C7EE-ADCC-4351-B5C6-EE9816B66E16", "Linux MIPS-64 LE /usr verity signature") + AddType(0x837C, "450DD7D1-3224-45EC-9CF2-A43A346D71EE", "Linux PA-RISC /usr verity signature") + AddType(0x837D, "C8BFBD1E-268E-4521-8BBA-BF314C399557", "Linux PowerPC-64 LE /usr verity signature") + AddType(0x837E, "0B888863-D7F8-4D9E-9766-239FCE4D58AF", "Linux PowerPC-64 BE /usr verity signature") + AddType(0x837F, "7007891D-D371-4A80-86A4-5CB875B9302E", "Linux PowerPC-32 /usr verity signature") + AddType(0x8380, "C3836A13-3137-45BA-B583-B16C50FE5EB4", "Linux RISC-V-32 /usr verity signature") + AddType(0x8381, "D2F9000A-7A18-453F-B5CD-4D32F77A7B32", "Linux RISC-V-64 /usr verity signature") + AddType(0x8382, "17440E4F-A8D0-467F-A46E-3912AE6EF2C5", "Linux s390 /usr verity signature") + AddType(0x8383, "3F324816-667B-46AE-86EE-9B0C0C6C11B4", "Linux s390x /usr verity signature") + AddType(0x8384, "4EDE75E2-6CCC-4CC8-B9C7-70334B087510", "Linux TILE-Gx /usr verity signature") + AddType(0x8385, "E7BB33FB-06CF-4E81-8273-E543B413E2E2", "Linux x86-64 /usr verity signature") + AddType(0x8386, "974A71C0-DE41-43C3-BE5D-5C5CCD1AD2C0", "Linux x86 /usr verity signature") + + // Used by Intel Rapid Start technology + AddType(0x8400, "D3BFE2DE-3DAF-11DF-BA40-E3A556D89593", "Intel Rapid Start") + // This is another Intel-associated technology, so I'm keeping it close to the previous one.... + AddType(0x8401, "7C5222BD-8F5D-4087-9C00-BF9843C7B58C", "SPDK block device") + + // Type codes for Container Linux (formerly CoreOS; https://coreos.com) + AddType(0x8500, "5DFBF5F4-2848-4BAC-AA5E-0D9A20B745A6", "Container Linux /usr") + AddType(0x8501, "3884DD41-8582-4404-B9A8-E9B84F2DF50E", "Container Linux resizable rootfs") + AddType(0x8502, "C95DC21A-DF0E-4340-8D7B-26CBFA9A03E0", "Container Linux /OEM customizations") + AddType(0x8503, "BE9067B9-EA49-4F15-B4F6-F36F8C9E1818", "Container Linux root on RAID") + + // Another Linux type code.... + AddType(0x8e00, "E6D6D379-F507-44C2-A23C-238F2A3DF928", "Linux LVM") + + // Android type codes.... + // from Wikipedia, https://gist.github.com/culots/704afd126dec2f45c22d0c9d42cb7fab, + // and my own Android devices' partition tables + AddType(0xa000, "2568845D-2332-4675-BC39-8FA5A4748D15", "Android bootloader") + AddType(0xa001, "114EAFFE-1552-4022-B26E-9B053604CF84", "Android bootloader 2") + AddType(0xa002, "49A4D17F-93A3-45C1-A0DE-F50B2EBE2599", "Android boot 1") + AddType(0xa003, "4177C722-9E92-4AAB-8644-43502BFD5506", "Android recovery 1") + AddType(0xa004, "EF32A33B-A409-486C-9141-9FFB711F6266", "Android misc") + AddType(0xa005, "20AC26BE-20B7-11E3-84C5-6CFDB94711E9", "Android metadata") + AddType(0xa006, "38F428E6-D326-425D-9140-6E0EA133647C", "Android system 1") + AddType(0xa007, "A893EF21-E428-470A-9E55-0668FD91A2D9", "Android cache") + AddType(0xa008, "DC76DDA9-5AC1-491C-AF42-A82591580C0D", "Android data") + AddType(0xa009, "EBC597D0-2053-4B15-8B64-E0AAC75F4DB1", "Android persistent") + AddType(0xa00a, "8F68CC74-C5E5-48DA-BE91-A0C8C15E9C80", "Android factory") + AddType(0xa00b, "767941D0-2085-11E3-AD3B-6CFDB94711E9", "Android fastboot/tertiary") + AddType(0xa00c, "AC6D7924-EB71-4DF8-B48D-E267B27148FF", "Android OEM") + AddType(0xa00d, "C5A0AEEC-13EA-11E5-A1B1-001E67CA0C3C", "Android vendor") + AddType(0xa00e, "BD59408B-4514-490D-BF12-9878D963F378", "Android config") + AddType(0xa00f, "9FDAA6EF-4B3F-40D2-BA8D-BFF16BFB887B", "Android factory (alt)") + AddType(0xa010, "19A710A2-B3CA-11E4-B026-10604B889DCF", "Android meta") + AddType(0xa011, "193D1EA4-B3CA-11E4-B075-10604B889DCF", "Android EXT") + AddType(0xa012, "DEA0BA2C-CBDD-4805-B4F9-F428251C3E98", "Android SBL1") + AddType(0xa013, "8C6B52AD-8A9E-4398-AD09-AE916E53AE2D", "Android SBL2") + AddType(0xa014, "05E044DF-92F1-4325-B69E-374A82E97D6E", "Android SBL3") + AddType(0xa015, "400FFDCD-22E0-47E7-9A23-F16ED9382388", "Android APPSBL") + AddType(0xa016, "A053AA7F-40B8-4B1C-BA08-2F68AC71A4F4", "Android QSEE/tz") + AddType(0xa017, "E1A6A689-0C8D-4CC6-B4E8-55A4320FBD8A", "Android QHEE/hyp") + AddType(0xa018, "098DF793-D712-413D-9D4E-89D711772228", "Android RPM") + AddType(0xa019, "D4E0D938-B7FA-48C1-9D21-BC5ED5C4B203", "Android WDOG debug/sdi") + AddType(0xa01a, "20A0C19C-286A-42FA-9CE7-F64C3226A794", "Android DDR") + AddType(0xa01b, "A19F205F-CCD8-4B6D-8F1E-2D9BC24CFFB1", "Android CDT") + AddType(0xa01c, "66C9B323-F7FC-48B6-BF96-6F32E335A428", "Android RAM dump") + AddType(0xa01d, "303E6AC3-AF15-4C54-9E9B-D9A8FBECF401", "Android SEC") + AddType(0xa01e, "C00EEF24-7709-43D6-9799-DD2B411E7A3C", "Android PMIC") + AddType(0xa01f, "82ACC91F-357C-4A68-9C8F-689E1B1A23A1", "Android misc 1") + AddType(0xa020, "E2802D54-0545-E8A1-A1E8-C7A3E245ACD4", "Android misc 2") + AddType(0xa021, "65ADDCF4-0C5C-4D9A-AC2D-D90B5CBFCD03", "Android device info") + AddType(0xa022, "E6E98DA2-E22A-4D12-AB33-169E7DEAA507", "Android APDP") + AddType(0xa023, "ED9E8101-05FA-46B7-82AA-8D58770D200B", "Android MSADP") + AddType(0xa024, "11406F35-1173-4869-807B-27DF71802812", "Android DPO") + AddType(0xa025, "9D72D4E4-9958-42DA-AC26-BEA7A90B0434", "Android recovery 2") + AddType(0xa026, "6C95E238-E343-4BA8-B489-8681ED22AD0B", "Android persist") + AddType(0xa027, "EBBEADAF-22C9-E33B-8F5D-0E81686A68CB", "Android modem ST1") + AddType(0xa028, "0A288B1F-22C9-E33B-8F5D-0E81686A68CB", "Android modem ST2") + AddType(0xa029, "57B90A16-22C9-E33B-8F5D-0E81686A68CB", "Android FSC") + AddType(0xa02a, "638FF8E2-22C9-E33B-8F5D-0E81686A68CB", "Android FSG 1") + AddType(0xa02b, "2013373E-1AC4-4131-BFD8-B6A7AC638772", "Android FSG 2") + AddType(0xa02c, "2C86E742-745E-4FDD-BFD8-B6A7AC638772", "Android SSD") + AddType(0xa02d, "DE7D4029-0F5B-41C8-AE7E-F6C023A02B33", "Android keystore") + AddType(0xa02e, "323EF595-AF7A-4AFA-8060-97BE72841BB9", "Android encrypt") + AddType(0xa02f, "45864011-CF89-46E6-A445-85262E065604", "Android EKSST") + AddType(0xa030, "8ED8AE95-597F-4C8A-A5BD-A7FF8E4DFAA9", "Android RCT") + AddType(0xa031, "DF24E5ED-8C96-4B86-B00B-79667DC6DE11", "Android spare1") + AddType(0xa032, "7C29D3AD-78B9-452E-9DEB-D098D542F092", "Android spare2") + AddType(0xa033, "379D107E-229E-499D-AD4F-61F5BCF87BD4", "Android spare3") + AddType(0xa034, "0DEA65E5-A676-4CDF-823C-77568B577ED5", "Android spare4") + AddType(0xa035, "4627AE27-CFEF-48A1-88FE-99C3509ADE26", "Android raw resources") + AddType(0xa036, "20117F86-E985-4357-B9EE-374BC1D8487D", "Android boot 2") + AddType(0xa037, "86A7CB80-84E1-408C-99AB-694F1A410FC7", "Android FOTA") + AddType(0xa038, "97D7B011-54DA-4835-B3C4-917AD6E73D74", "Android system 2") + AddType(0xa039, "5594C694-C871-4B5F-90B1-690A6F68E0F7", "Android cache") + AddType(0xa03a, "1B81E7E6-F50D-419B-A739-2AEEF8DA3335", "Android user data") + AddType(0xa03b, "98523EC6-90FE-4C67-B50A-0FC59ED6F56D", "LG (Android) advanced flasher") + AddType(0xa03c, "2644BCC0-F36A-4792-9533-1738BED53EE3", "Android PG1FS") + AddType(0xa03d, "DD7C91E9-38C9-45C5-8A12-4A80F7E14057", "Android PG2FS") + AddType(0xa03e, "7696D5B6-43FD-4664-A228-C563C4A1E8CC", "Android board info") + AddType(0xa03f, "0D802D54-058D-4A20-AD2D-C7A362CEACD4", "Android MFG") + AddType(0xa040, "10A0C19C-516A-5444-5CE3-664C3226A794", "Android limits") + + // Atari TOS partition type + AddType(0xa200, "734E5AFE-F61A-11E6-BC64-92361F002671", "Atari TOS basic data") + + // FreeBSD partition types.... + // Note: Rather than extract FreeBSD disklabel data, convert FreeBSD + // partitions in-place, and let FreeBSD sort out the details.... + AddType(0xa500, "516E7CB4-6ECF-11D6-8FF8-00022D09712B", "FreeBSD disklabel") + AddType(0xa501, "83BD6B9D-7F41-11DC-BE0B-001560B84F0F", "FreeBSD boot") + AddType(0xa502, "516E7CB5-6ECF-11D6-8FF8-00022D09712B", "FreeBSD swap") + AddType(0xa503, "516E7CB6-6ECF-11D6-8FF8-00022D09712B", "FreeBSD UFS") + AddType(0xa504, "516E7CBA-6ECF-11D6-8FF8-00022D09712B", "FreeBSD ZFS") + AddType(0xa505, "516E7CB8-6ECF-11D6-8FF8-00022D09712B", "FreeBSD Vinum/RAID") + AddType(0xa506, "74BA7DD9-A689-11E1-BD04-00E081286ACF", "FreeBSD nandfs") + + // Midnight BSD partition types.... + AddType(0xa580, "85D5E45A-237C-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD data") + AddType(0xa581, "85D5E45E-237C-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD boot") + AddType(0xa582, "85D5E45B-237C-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD swap") + AddType(0xa583, "0394Ef8B-237E-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD UFS") + AddType(0xa584, "85D5E45D-237C-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD ZFS") + AddType(0xa585, "85D5E45C-237C-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD Vinum") + + // OpenBSD partition type.... + AddType(0xa600, "824CC7A0-36A8-11E3-890A-952519AD3F61", "OpenBSD disklabel") + + // A MacOS partition type, separated from others by NetBSD partition types... + AddType(0xa800, "55465300-0000-11AA-AA11-00306543ECAC", "Apple UFS") // Mac OS X + + // NetBSD partition types. Note that the main entry sets it up as a + // FreeBSD disklabel. I'm not 100% certain this is the correct behavior. + AddType(0xa900, "516E7CB4-6ECF-11D6-8FF8-00022D09712B", "FreeBSD disklabel", 0) // NetBSD disklabel + AddType(0xa901, "49F48D32-B10E-11DC-B99B-0019D1879648", "NetBSD swap") + AddType(0xa902, "49F48D5A-B10E-11DC-B99B-0019D1879648", "NetBSD FFS") + AddType(0xa903, "49F48D82-B10E-11DC-B99B-0019D1879648", "NetBSD LFS") + AddType(0xa904, "2DB519C4-B10F-11DC-B99B-0019D1879648", "NetBSD concatenated") + AddType(0xa905, "2DB519EC-B10F-11DC-B99B-0019D1879648", "NetBSD encrypted") + AddType(0xa906, "49F48DAA-B10E-11DC-B99B-0019D1879648", "NetBSD RAID") + + // Mac OS partition types (See also 0xa800, above).... + AddType(0xab00, "426F6F74-0000-11AA-AA11-00306543ECAC", "Recovery HD") + AddType(0xaf00, "48465300-0000-11AA-AA11-00306543ECAC", "Apple HFS/HFS+") + AddType(0xaf01, "52414944-0000-11AA-AA11-00306543ECAC", "Apple RAID") + AddType(0xaf02, "52414944-5F4F-11AA-AA11-00306543ECAC", "Apple RAID offline") + AddType(0xaf03, "4C616265-6C00-11AA-AA11-00306543ECAC", "Apple label") + AddType(0xaf04, "5265636F-7665-11AA-AA11-00306543ECAC", "AppleTV recovery") + AddType(0xaf05, "53746F72-6167-11AA-AA11-00306543ECAC", "Apple Core Storage") + AddType(0xaf06, "B6FA30DA-92D2-4A9A-96F1-871EC6486200", "Apple SoftRAID Status") + AddType(0xaf07, "2E313465-19B9-463F-8126-8A7993773801", "Apple SoftRAID Scratch") + AddType(0xaf08, "FA709C7E-65B1-4593-BFD5-E71D61DE9B02", "Apple SoftRAID Volume") + AddType(0xaf09, "BBBA6DF5-F46F-4A89-8F59-8765B2727503", "Apple SoftRAID Cache") + AddType(0xaf0a, "7C3457EF-0000-11AA-AA11-00306543ECAC", "Apple APFS") + AddType(0xaf0b, "69646961-6700-11AA-AA11-00306543ECAC", "Apple APFS Pre-Boot") + AddType(0xaf0c, "52637672-7900-11AA-AA11-00306543ECAC", "Apple APFS Recovery") + + // U-Boot boot loader; see https://lists.denx.de/pipermail/u-boot/2020-November/432928.html + // and https://source.denx.de/u-boot/u-boot/-/blob/v2021.07/include/part_efi.h#L59-61 + AddType(0xb000, "3DE21764-95BD-54BD-A5C3-4ABE786F38A8", "U-Boot boot loader") + + // QNX Power-Safe (QNX6) + AddType(0xb300, "CEF5A9AD-73BC-4601-89F3-CDEEEEE321A1", "QNX6 Power-Safe") + + // Barebox boot loader; see https://barebox.org/doc/latest/user/state.html?highlight=guid#sd-emmc-and-ata + AddType(0xbb00, "4778ED65-BF42-45FA-9C5B-287A1DC4AAB1", "Barebox boot loader") + + // Acronis Secure Zone + AddType(0xbc00, "0311FC50-01CA-4725-AD77-9ADBB20ACE98", "Acronis Secure Zone") + + // Solaris partition types (one of which is shared with MacOS) + AddType(0xbe00, "6A82CB45-1DD2-11B2-99A6-080020736631", "Solaris boot") + AddType(0xbf00, "6A85CF4D-1DD2-11B2-99A6-080020736631", "Solaris root") + AddType(0xbf01, "6A898CC3-1DD2-11B2-99A6-080020736631", "Solaris /usr & Mac ZFS") // Solaris/MacOS + AddType(0xbf02, "6A87C46F-1DD2-11B2-99A6-080020736631", "Solaris swap") + AddType(0xbf03, "6A8B642B-1DD2-11B2-99A6-080020736631", "Solaris backup") + AddType(0xbf04, "6A8EF2E9-1DD2-11B2-99A6-080020736631", "Solaris /var") + AddType(0xbf05, "6A90BA39-1DD2-11B2-99A6-080020736631", "Solaris /home") + AddType(0xbf06, "6A9283A5-1DD2-11B2-99A6-080020736631", "Solaris alternate sector") + AddType(0xbf07, "6A945A3B-1DD2-11B2-99A6-080020736631", "Solaris Reserved 1") + AddType(0xbf08, "6A9630D1-1DD2-11B2-99A6-080020736631", "Solaris Reserved 2") + AddType(0xbf09, "6A980767-1DD2-11B2-99A6-080020736631", "Solaris Reserved 3") + AddType(0xbf0a, "6A96237F-1DD2-11B2-99A6-080020736631", "Solaris Reserved 4") + AddType(0xbf0b, "6A8D2AC7-1DD2-11B2-99A6-080020736631", "Solaris Reserved 5") + + // I can find no MBR equivalents for these, but they're on the + // Wikipedia page for GPT, so here we go.... + AddType(0xc001, "75894C1E-3AEB-11D3-B7C1-7B03A0000000", "HP-UX data") + AddType(0xc002, "E2A1E728-32E3-11D6-A682-7B03A0000000", "HP-UX service") + + // Open Network Install Environment (ONIE) partitions.... + AddType(0xe100, "7412F7D5-A156-4B13-81DC-867174929325", "ONIE boot") + AddType(0xe101, "D4E6E2CD-4469-46F3-B5CB-1BFF57AFC149", "ONIE config") + + // Veracrypt (https://www.veracrypt.fr/en/Home.html) encrypted partition + AddType(0xe900, "8C8F8EFF-AC95-4770-814A-21994F2DBC8F", "Veracrypt data") + + // See https://systemd.io/BOOT_LOADER_SPECIFICATION/ + AddType(0xea00, "BC13C2FF-59E6-4262-A352-B275FD6F7172", "XBOOTLDR partition") + + // Type code for Haiku; uses BeOS MBR code as hex code base + AddType(0xeb00, "42465331-3BA3-10F1-802A-4861696B7521", "Haiku BFS") + + // Manufacturer-specific ESP-like partitions (in order in which they were added) + AddType(0xed00, "F4019732-066E-4E12-8273-346C5641494F", "Sony system partition") + AddType(0xed01, "BFBFAFE7-A34F-448A-9A5B-6213EB736C22", "Lenovo system partition") + + // EFI system and related partitions + AddType(0xef00, "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", "EFI system partition") // Parted identifies these as having the "boot flag" set + AddType(0xef01, "024DEE41-33E7-11D3-9D69-0008C781F39F", "MBR partition scheme") // Used to nest MBR in GPT + AddType(0xef02, "21686148-6449-6E6F-744E-656564454649", "BIOS boot partition") // Used by GRUB + + // Fuscia OS codes; see https://cs.opensource.google/fuchsia/fuchsia/+/main:zircon/system/public/zircon/hw/gpt.h + AddType(0xf100, "FE8A2634-5E2E-46BA-99E3-3A192091A350", "Fuchsia boot loader (slot A/B/R)") + AddType(0xf101, "D9FD4535-106C-4CEC-8D37-DFC020CA87CB", "Fuchsia durable mutable encrypted system data") + AddType(0xf102, "A409E16B-78AA-4ACC-995C-302352621A41", "Fuchsia durable mutable boot loader") + AddType(0xf103, "F95D940E-CABA-4578-9B93-BB6C90F29D3E", "Fuchsia factory ro system data") + AddType(0xf104, "10B8DBAA-D2BF-42A9-98C6-A7C5DB3701E7", "Fuchsia factory ro bootloader data") + AddType(0xf105, "49FD7CB8-DF15-4E73-B9D9-992070127F0F", "Fuchsia Volume Manager") + AddType(0xf106, "421A8BFC-85D9-4D85-ACDA-B64EEC0133E9", "Fuchsia verified boot metadata (slot A/B/R)") + AddType(0xf107, "9B37FFF6-2E58-466A-983A-F7926D0B04E0", "Fuchsia Zircon boot image (slot A/B/R)") + AddType(0xf108, "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", "Fuchsia ESP") + AddType(0xf109, "606B000B-B7C7-4653-A7D5-B737332C899D", "Fuchsia System") + AddType(0xf10a, "08185F0C-892D-428A-A789-DBEEC8F55E6A", "Fuchsia Data") + AddType(0xf10b, "48435546-4953-2041-494E-5354414C4C52", "Fuchsia Install") + AddType(0xf10c, "2967380E-134C-4CBB-B6DA-17E7CE1CA45D", "Fuchsia Blob") + AddType(0xf10d, "41D0E340-57E3-954E-8C1E-17ECAC44CFF5", "Fuchsia FVM") + AddType(0xf10e, "DE30CC86-1F4A-4A31-93C4-66F147D33E05", "Fuchsia Zircon boot image (slot A)") + AddType(0xf10f, "23CC04DF-C278-4CE7-8471-897D1A4BCDF7", "Fuchsia Zircon boot image (slot B)") + AddType(0xf110, "A0E5CF57-2DEF-46BE-A80C-A2067C37CD49", "Fuchsia Zircon boot image (slot R)") + AddType(0xf111, "4E5E989E-4C86-11E8-A15B-480FCF35F8E6", "Fuchsia sys-config") + AddType(0xf112, "5A3A90BE-4C86-11E8-A15B-480FCF35F8E6", "Fuchsia factory-config") + AddType(0xf113, "5ECE94FE-4C86-11E8-A15B-480FCF35F8E6", "Fuchsia bootloader") + AddType(0xf114, "8B94D043-30BE-4871-9DFA-D69556E8C1F3", "Fuchsia guid-test") + AddType(0xf115, "A13B4D9A-EC5F-11E8-97D8-6C3BE52705BF", "Fuchsia verified boot metadata (A)") + AddType(0xf116, "A288ABF2-EC5F-11E8-97D8-6C3BE52705BF", "Fuchsia verified boot metadata (B)") + AddType(0xf117, "6A2460C3-CD11-4E8B-80A8-12CCE268ED0A", "Fuchsia verified boot metadata (R)") + AddType(0xf118, "1D75395D-F2C6-476B-A8B7-45CC1C97B476", "Fuchsia misc") + AddType(0xf119, "900B0FC5-90CD-4D4F-84F9-9F8ED579DB88", "Fuchsia emmc-boot1") + AddType(0xf11a, "B2B2E8D1-7C10-4EBC-A2D0-4614568260AD", "Fuchsia emmc-boot2") + + // Ceph type codes; see https://github.com/ceph/ceph/blob/9bcc42a3e6b08521694b5c0228b2c6ed7b3d312e/src/ceph-disk#L76-L81 + // and Wikipedia + AddType(0xf800, "4FBD7E29-9D25-41B8-AFD0-062C0CEFF05D", "Ceph OSD") // Ceph Object Storage Daemon + AddType(0xf801, "4FBD7E29-9D25-41B8-AFD0-5EC00CEFF05D", "Ceph dm-crypt OSD") // Ceph Object Storage Daemon (encrypted) + AddType(0xf802, "45B0969E-9B03-4F30-B4C6-B4B80CEFF106", "Ceph journal") + AddType(0xf803, "45B0969E-9B03-4F30-B4C6-5EC00CEFF106", "Ceph dm-crypt journal") + AddType(0xf804, "89C57F98-2FE5-4DC0-89C1-F3AD0CEFF2BE", "Ceph disk in creation") + AddType(0xf805, "89C57F98-2FE5-4DC0-89C1-5EC00CEFF2BE", "Ceph dm-crypt disk in creation") + AddType(0xf806, "CAFECAFE-9B03-4F30-B4C6-B4B80CEFF106", "Ceph block") + AddType(0xf807, "30CD0809-C2B2-499C-8879-2D6B78529876", "Ceph block DB") + AddType(0xf808, "5CE17FCE-4087-4169-B7FF-056CC58473F9", "Ceph block write-ahead log") + AddType(0xf809, "FB3AABF9-D25F-47CC-BF5E-721D1816496B", "Ceph lockbox for dm-crypt keys") + AddType(0xf80a, "4FBD7E29-8AE0-4982-BF9D-5A8D867AF560", "Ceph multipath OSD") + AddType(0xf80b, "45B0969E-8AE0-4982-BF9D-5A8D867AF560", "Ceph multipath journal") + AddType(0xf80c, "CAFECAFE-8AE0-4982-BF9D-5A8D867AF560", "Ceph multipath block 1") + AddType(0xf80d, "7F4A666A-16F3-47A2-8445-152EF4D03F6C", "Ceph multipath block 2") + AddType(0xf80e, "EC6D6385-E346-45DC-BE91-DA2A7C8B3261", "Ceph multipath block DB") + AddType(0xf80f, "01B41E1B-002A-453C-9F17-88793989FF8F", "Ceph multipath block write-ahead log") + AddType(0xf810, "CAFECAFE-9B03-4F30-B4C6-5EC00CEFF106", "Ceph dm-crypt block") + AddType(0xf811, "93B0052D-02D9-4D8A-A43B-33A3EE4DFBC3", "Ceph dm-crypt block DB") + AddType(0xf812, "306E8683-4FE2-4330-B7C0-00A917C16966", "Ceph dm-crypt block write-ahead log") + AddType(0xf813, "45B0969E-9B03-4F30-B4C6-35865CEFF106", "Ceph dm-crypt LUKS journal") + AddType(0xf814, "CAFECAFE-9B03-4F30-B4C6-35865CEFF106", "Ceph dm-crypt LUKS block") + AddType(0xf815, "166418DA-C469-4022-ADF4-B30AFD37F176", "Ceph dm-crypt LUKS block DB") + AddType(0xf816, "86A32090-3647-40B9-BBBD-38D8C573AA86", "Ceph dm-crypt LUKS block write-ahead log") + AddType(0xf817, "4FBD7E29-9D25-41B8-AFD0-35865CEFF05D", "Ceph dm-crypt LUKS OSD") + + // VMWare ESX partition types codes + AddType(0xfb00, "AA31E02A-400F-11DB-9590-000C2911D1B8", "VMWare VMFS") + AddType(0xfb01, "9198EFFC-31C0-11DB-8F78-000C2911D1B8", "VMWare reserved") + AddType(0xfc00, "9D275380-40AD-11DB-BF97-000C2911D1B8", "VMWare kcore crash protection") + + // A straggler Linux partition type.... + AddType(0xfd00, "A19D880F-05FC-4D3B-A006-743F0F84911E", "Linux RAID") }; +#undef AddType + +static inline const gpt_type_entry_t* gpt_type_lookup(uint16_t code) +{ + for (int i = 0; i < ARRAYSIZE(gpt_type_table); i++) { + if (gpt_type_table[i].code == code) + return &gpt_type_table[i]; + } + return NULL; +} + +static inline const char* gpt_type_desc(const GUID* guid) +{ + const char* guid_str = GuidToString(guid, TRUE); + if (guid_str == NULL) + return NULL; + for (int i = 0; i < ARRAYSIZE(gpt_type_table); i++) { + if (_strnicmp(&guid_str[1], gpt_type_table[i].guid_str, 36) == 0) + return gpt_type_table[i].description; + } + return NULL; +} + +static inline const char* gpt_type_guid_str(uint16_t code) +{ + const gpt_type_entry_t* e = gpt_type_lookup(code); + return (e != NULL) ? e->guid_str : NULL; +} + +static inline const char* gpt_type_description(uint16_t code) +{ + const gpt_type_entry_t* e = gpt_type_lookup(code); + return (e != NULL) ? e->description : NULL; +} + +static inline GUID gpt_type_guid(uint16_t code) +{ + return StringToGuid(gpt_type_guid_str(code)); +} + +// Also redefine the constant GUIDs we use in the application +DEFINE_GUID(PARTITION_GENERIC_ESP, 0xC12A7328, 0xF81F, 0x11D2, 0xBA, 0x4B, 0x00, 0xA0, 0xC9, 0x3E, 0xC9, 0x3B); +DEFINE_GUID(PARTITION_LINUX_DATA, 0x0FC63DAF, 0x8483, 0x4772, 0x8E, 0x79, 0x3D, 0x69, 0xD8, 0x47, 0x7D, 0xE4); +DEFINE_GUID(PARTITION_MICROSOFT_DATA, 0xEBD0A0A2, 0xB9E5, 0x4433, 0x87, 0xC0, 0x68, 0xB6, 0xB7, 0x26, 0x99, 0xC7); +DEFINE_GUID(PARTITION_MICROSOFT_RESERVED, 0xE3C9E316, 0x0B5C, 0x4DB8, 0x81, 0x7D, 0xF9, 0x2D, 0xF0, 0x02, 0x15, 0xAE); diff --git a/src/hash.c b/src/hash.c index 4e611a11..bd8272b9 100644 --- a/src/hash.c +++ b/src/hash.c @@ -74,6 +74,7 @@ #include "rufus.h" #include "winio.h" #include "missing.h" +#include "darkmode.h" #include "resource.h" #include "msapi_utf8.h" #include "localization.h" @@ -1531,7 +1532,6 @@ BOOL HashFile(const unsigned type, const char* path, uint8_t* hash) HASH_CONTEXT hash_ctx = { {0} }; HANDLE h = INVALID_HANDLE_VALUE; DWORD rs = 0; - uint64_t rb; uint8_t buf[4096]; if ((type >= HASH_MAX) || (path == NULL) || (hash == NULL)) @@ -1545,7 +1545,7 @@ BOOL HashFile(const unsigned type, const char* path, uint8_t* hash) } hash_init[type](&hash_ctx); - for (rb = 0; ; rb += rs) { + while(1) { CHECK_FOR_USER_CANCEL; if (!ReadFile(h, buf, sizeof(buf), &rs, NULL)) { ErrorStatus = RUFUS_ERROR(ERROR_READ_FAULT); @@ -1894,6 +1894,7 @@ INT_PTR CALLBACK HashCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa switch (message) { case WM_INITDIALOG: + SetDarkModeForDlg(hDlg); apply_localization(IDD_HASH, hDlg); if (hFont == NULL) { hDC = GetDC(hDlg); @@ -1941,6 +1942,7 @@ INT_PTR CALLBACK HashCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa for (i = (int)strlen(image_path); (i > 0) && (image_path[i] != '\\'); i--); SetWindowTextU(hDlg, &image_path[i + 1]); } + SetDarkModeForChild(hDlg); // Set focus on the OK button SendMessage(hDlg, WM_NEXTDLGCTL, (WPARAM)GetDlgItem(hDlg, IDOK), TRUE); CenterDialog(hDlg, NULL); @@ -2156,6 +2158,22 @@ BOOL IsFileInDB(const char* path) return FALSE; } +BOOL FileMatchesHash(const char* path, const char* str) +{ + uint8_t hash[SHA256_HASHSIZE]; + if (!HashFile(HASH_SHA256, path, hash)) + return FALSE; + return (memcmp(hash, StringToHash(str), SHA256_HASHSIZE) == 0); +} + +BOOL BufferMatchesHash(const uint8_t* buf, const size_t len, const char* str) +{ + uint8_t hash[SHA256_HASHSIZE]; + if (!HashBuffer(HASH_SHA256, buf, len, hash)) + return FALSE; + return (memcmp(hash, StringToHash(str), SHA256_HASHSIZE) == 0); +} + static BOOL IsRevokedBySbat(uint8_t* buf, uint32_t len) { char* sbat = NULL, *version_str; @@ -2195,8 +2213,11 @@ static BOOL IsRevokedBySbat(uint8_t* buf, uint32_t len) if (entry.version == 0) continue; for (j = 0; sbat_entries[j].product != NULL; j++) { - if (strcmp(entry.product, sbat_entries[j].product) == 0 && entry.version < sbat_entries[j].version) + if (strcmp(entry.product, sbat_entries[j].product) == 0 && entry.version < sbat_entries[j].version) { + uprintf(" SBAT version for '%s' (%d) is lower than the current minimum SBAT version (%d)!", + entry.product, entry.version, sbat_entries[j].version); return TRUE; + } } } @@ -2303,8 +2324,11 @@ static BOOL IsRevokedBySvn(uint8_t* buf, uint32_t len) svn_ver = (uint32_t*)RvaToPhysical(buf, rsrc_rva); if (svn_ver != NULL) { uuprintf(" SVN version: %d.%d", *svn_ver >> 16, *svn_ver & 0xffff); - if (*svn_ver < sbat_entries[i].version) + if (*svn_ver < sbat_entries[i].version) { + uprintf(" SVN version %d.%d is lower than required minimum SVN version %d.%d!", + *svn_ver >> 16, *svn_ver & 0xffff, sbat_entries[i].version >> 16, sbat_entries[i].version & 0xffff); return TRUE; + } } } else { uprintf(" Warning: Unexpected Secure Version Number size"); @@ -2391,42 +2415,43 @@ int IsBootloaderRevoked(uint8_t* buf, uint32_t len) // Get the signer/issuer info cert = GetPeSignatureData(buf); r = GetIssuerCertificateInfo(cert, &info); - if (r == 0) + if (r == 0) { uprintf(" (Unsigned Bootloader)"); - else if (r > 0) + } else if (r > 0) { uprintf(" Signed by '%s'", info.name); + // Only perform revocation checks on signed bootloaders + if (!PE256Buffer(buf, len, hash)) + return -1; + // Check for UEFI DBX revocation + if (IsRevokedByDbx(hash, buf, len)) + revoked = 1; + // Check for Microsoft SSP revocation + for (i = 0; revoked == 0 && i < pe256ssp_size * SHA256_HASHSIZE; i += SHA256_HASHSIZE) + if (memcmp(hash, &pe256ssp[i], SHA256_HASHSIZE) == 0) + revoked = 2; + // Check for Linux SBAT revocation + if (revoked == 0 && IsRevokedBySbat(buf, len)) + revoked = 3; + // Check for Microsoft SVN revocation + if (revoked == 0 && IsRevokedBySvn(buf, len)) + revoked = 4; + // Check for UEFI DBX certificate revocation + if (revoked == 0 && IsRevokedByCert(&info)) + revoked = 5; - if (!PE256Buffer(buf, len, hash)) - return -1; - // Check for UEFI DBX revocation - if (IsRevokedByDbx(hash, buf, len)) - revoked = 1; - // Check for Microsoft SSP revocation - for (i = 0; revoked == 0 && i < pe256ssp_size * SHA256_HASHSIZE; i += SHA256_HASHSIZE) - if (memcmp(hash, &pe256ssp[i], SHA256_HASHSIZE) == 0) - revoked = 2; - // Check for Linux SBAT revocation - if (revoked == 0 && IsRevokedBySbat(buf, len)) - revoked = 3; - // Check for Microsoft SVN revocation - if (revoked == 0 && IsRevokedBySvn(buf, len)) - revoked = 4; - // Check for UEFI DBX certificate revocation - if (revoked == 0 && IsRevokedByCert(&info)) - revoked = 5; - - // If signed and not revoked, print the various Secure Boot "gotchas" - if (r > 0 && revoked == 0) { - if (strcmp(info.name, "Microsoft Windows Production PCA 2011") == 0) { - uprintf(" Note: This bootloader may fail Secure Boot validation on systems that"); - uprintf(" have been updated to use the 'Windows UEFI CA 2023' certificate."); - } else if (strcmp(info.name, "Windows UEFI CA 2023") == 0) { - uprintf(" Note: This bootloader will fail Secure Boot validation on systems that"); - uprintf(" have not been updated to use the latest Secure Boot certificates"); - } else if (strcmp(info.name, "Microsoft Corporation UEFI CA 2011") == 0 || - strcmp(info.name, "Microsoft UEFI CA 2023") == 0) { - uprintf(" Note: This bootloader may fail Secure Boot validation on *some* systems,"); - uprintf(" unless you enable \"Microsoft 3rd-party UEFI CA\" in your 'BIOS'."); + // If signed and not revoked, print the various Secure Boot "gotchas" + if (revoked == 0) { + if (strcmp(info.name, "Microsoft Windows Production PCA 2011") == 0) { + uprintf(" Note: This bootloader may fail Secure Boot validation on systems that"); + uprintf(" have been updated to use the 'Windows UEFI CA 2023' certificate."); + } else if (strcmp(info.name, "Windows UEFI CA 2023") == 0) { + uprintf(" Note: This bootloader will fail Secure Boot validation on systems that"); + uprintf(" have not been updated to use the latest Secure Boot certificates"); + } else if (strcmp(info.name, "Microsoft Corporation UEFI CA 2011") == 0 || + strcmp(info.name, "Microsoft UEFI CA 2023") == 0) { + uprintf(" Note: This bootloader may fail Secure Boot validation on *some* systems,"); + uprintf(" unless you enable \"Microsoft 3rd-party UEFI CA\" in your 'BIOS'."); + } } } @@ -2565,22 +2590,25 @@ void UpdateMD5Sum(const char* dest_dir, const char* md5sum_name) free(md5_data); } -#if defined(_DEBUG) || defined(TEST) || defined(ALPHA) -/* Convert a lowercase hex string to binary. Returned value must be freed */ -uint8_t* to_bin(const char* str) +/* Convert an (unprefixed) hex string to hash binary. Non concurrent. */ +uint8_t* StringToHash(const char* str) { + static uint8_t ret[MAX_HASHSIZE]; size_t i, len = safe_strlen(str); - uint8_t val = 0, *ret = NULL; + uint8_t val = 0; + char c; - if ((len < 2) || (len % 2)) - return NULL; - ret = malloc(len / 2); - if (ret == NULL) + if_assert_fails(len / 2 == MD5_HASHSIZE || len / 2 == SHA1_HASHSIZE || + len / 2 == SHA256_HASHSIZE || len / 2 == SHA512_HASHSIZE) return NULL; + memset(ret, 0, sizeof(ret)); for (i = 0; i < len; i++) { val <<= 4; - val |= ((str[i] - '0') < 0xa) ? (str[i] - '0') : (str[i] - 'a' + 0xa); + c = tolower(str[i]); + if_assert_fails((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f')) + return NULL; + val |= ((c - '0') < 0xa) ? (c - '0') : (c - 'a' + 0xa); if (i % 2) ret[i / 2] = val; } @@ -2588,6 +2616,7 @@ uint8_t* to_bin(const char* str) return ret; } +#if defined(_DEBUG) || defined(TEST) || defined(ALPHA) const char test_msg[] = "Did you ever hear the tragedy of Darth Plagueis The Wise? " "I thought not. It's not a story the Jedi would tell you. It's a Sith legend. " "Darth Plagueis was a Dark Lord of the Sith, so powerful and so wise he could " @@ -2635,7 +2664,7 @@ int TestHashes(void) const uint32_t blocksize[HASH_MAX] = { MD5_BLOCKSIZE, SHA1_BLOCKSIZE, SHA256_BLOCKSIZE, SHA512_BLOCKSIZE }; const char* hash_name[4] = { "MD5 ", "SHA1 ", "SHA256", "SHA512" }; int i, j, errors = 0; - uint8_t hash[MAX_HASHSIZE], *hash_expected; + uint8_t hash[MAX_HASHSIZE]; size_t full_msg_len = strlen(test_msg); char* msg = malloc(full_msg_len + 1); if (msg == NULL) @@ -2658,14 +2687,12 @@ int TestHashes(void) if (i != 0) memcpy(msg, test_msg, copy_msg_len[i]); HashBuffer(j, msg, copy_msg_len[i], hash); - hash_expected = to_bin(test_hash[j][i]); - if (memcmp(hash, hash_expected, hash_count[j]) != 0) { + if (memcmp(hash, StringToHash(test_hash[j][i]), hash_count[j]) != 0) { uprintf("Test %s %d: FAIL", hash_name[j], i); errors++; } else { uprintf("Test %s %d: PASS", hash_name[j], i); } - free(hash_expected); } } diff --git a/src/hdd_vs_ufd.h b/src/hdd_vs_ufd.h index e239cb9d..33941f76 100644 --- a/src/hdd_vs_ufd.h +++ b/src/hdd_vs_ufd.h @@ -250,6 +250,7 @@ static vidpid_score_t vidpid_score[] = { { 0x04e8, 0x0101, -20 }, // Connect3D Flash Drive { 0x04e8, 0x1a23, -20 }, // 2 GB UFD { 0x04e8, 0x5120, -20 }, // 4 GB UFD + { 0x04e8, 0x6300, -20 }, // 256 GB UFD (MUF-256DA/APC) { 0x04e8, 0x6818, -20 }, // 8 GB UFD { 0x04e8, 0x6845, -20 }, // 16 GB UFD { 0x04e8, 0x685E, -20 }, // 16 GB UFD diff --git a/src/icon.c b/src/icon.c index 7579050c..3aba4824 100644 --- a/src/icon.c +++ b/src/icon.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Extract icon from executable and set autorun.inf - * Copyright © 2012-2024 Pete Batard + * Copyright © 2012-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -105,7 +105,7 @@ BOOL ExtractAppIcon(const char* path, BOOL bSilent) if (icondir == NULL || icondir->idCount > 64) goto out; - hFile = CreateFileU(path, GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ, + hFile = CreateFileU(path, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if (hFile == INVALID_HANDLE_VALUE) { uprintf("Unable to create icon '%s': %s.", path, WindowsErrorString()); diff --git a/src/iso.c b/src/iso.c index a1996f5d..952c80bd 100644 --- a/src/iso.c +++ b/src/iso.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * ISO file extraction - * Copyright © 2011-2024 Pete Batard + * Copyright © 2011-2026 Pete Batard * Based on libcdio's iso & udf samples: * Copyright © 2003-2014 Rocky Bernstein * @@ -66,6 +66,9 @@ _Static_assert(256 * KB >= ISO_BLOCKSIZE, "Can't set PROGRESS_THRESHOLD"); #define ISO_EXTENSION_MASK (ISO_EXTENSION_ALL & (enable_joliet ? ISO_EXTENSION_ALL : ~ISO_EXTENSION_JOLIET) & \ (enable_rockridge ? ISO_EXTENSION_ALL : ~ISO_EXTENSION_ROCK_RIDGE)) +// Is an MBR partition type for a FAT12/FAT16/FAT32 partition? +#define IS_FAT_TYPE(x) ((x) == 0x01 || (x) == 0x04 || (x) == 0x06 || (x) == 0x0b || (x) == 0x0c || (x) == 0x0e) + // Needed for UDF ISO access CdIo_t* cdio_open (const char* psz_source, driver_id_t driver_id) {return NULL;} void cdio_destroy (CdIo_t* p_cdio) {} @@ -104,6 +107,7 @@ const char* efi_bootname[3] = { "boot", "grub", "mm" }; const char* efi_archname[ARCH_MAX] = { "", "ia32", "x64", "arm", "aa64", "ia64", "riscv64", "loongarch64", "ebc" }; static const char* sources_str = "/sources"; static const char* wininst_name[] = { "install.wim", "install.esd", "install.swm" }; +_STATIC_ASSERT(ARRAYSIZE(wininst_name) < 4); // Must fit as 4 bit position flag // We only support GRUB/BIOS (x86) that uses a standard config dir (/boot/grub/i386-pc/) // If the disc was mastered properly, GRUB/EFI will take care of itself static const char* grub_dirname[] = { "/boot/grub/i386-pc", "/boot/grub2/i386-pc" }; @@ -246,7 +250,7 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const const char* psz_fullpath, EXTRACT_PROPS *props) { size_t i, j, k, len; - char bootloader_name[32], path[MAX_PATH]; + char bootloader_name[32]; // Check for an isolinux/syslinux config file anywhere memset(props, 0, sizeof(EXTRACT_PROPS)); @@ -295,9 +299,10 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const } // Split a >4GB install.wim if the target filesystem is FAT - if (file_length >= 4 * GB && psz_dirname != NULL && IS_FAT(fs_type) && img_report.has_4GB_file == 0x81) { + if (file_length >= 4 * GB && psz_dirname != NULL && IS_FAT(fs_type) && img_report.has_4GB_file == 0x11) { if (safe_stricmp(&psz_dirname[max(0, ((int)safe_strlen(psz_dirname)) - ((int)strlen(sources_str)))], sources_str) == 0) { + char wim_path[4 * MAX_PATH]; for (i = 0; i < ARRAYSIZE(wininst_name) - 1; i++) { if (safe_stricmp(psz_basename, wininst_name[i]) == 0 && file_length >= 4 * GB) { print_split_file((char*)psz_fullpath, file_length); @@ -305,8 +310,9 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const dst[strlen(dst) - 3] = 's'; dst[strlen(dst) - 2] = 'w'; dst[strlen(dst) - 1] = 'm'; - static_sprintf(path, "%s|%s/%s", image_path, psz_dirname, psz_basename); - WimSplitFile(path, dst); + assert(safe_strlen(image_path) + safe_strlen(psz_dirname) + safe_strlen(psz_basename) + 2 < ARRAYSIZE(wim_path)); + static_sprintf(wim_path, "%s|%s/%s", image_path, psz_dirname, psz_basename); + WimSplitFile(wim_path, dst); free(dst); return TRUE; } @@ -384,8 +390,15 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const (safe_stricmp(&psz_basename[strlen(psz_basename) - 4], ".img") == 0)) static_strcpy(img_report.efi_img_path, psz_fullpath); - // Check for the EFI boot entries - if (safe_stricmp(psz_dirname, efi_dirname) == 0) { + // Special case for Lenovo UEFI firmware update ISOs, that use emulated El-Torito HDD images + if (!HAS_EFI_IMG(img_report) && stricmp(psz_fullpath, "/[BOOT]/0-Boot-HardDisk.img") == 0) + static_strcpy(img_report.efi_img_path, psz_fullpath); + + // Check for the EFI boot entries. Note that because of Bazzite maintainers' disregard for end users + // (evidenced in https://github.com/ublue-os/bazzite/issues/4374) and Fedora's disregards for standards + // (evidenced in pushing for '/efi/fedora/' to store bootloaders, instead of sticking to '/efi/boot/') + // we check for anything starting with '/efi/' instead of just '/efi/boot/'). + if (safe_strnicmp(psz_dirname, "/efi/", 5) == 0) { for (k = 0; k < ARRAYSIZE(efi_bootname); k++) { for (i = 0; i < ARRAYSIZE(efi_archname); i++) { static_sprintf(bootloader_name, "%s%s.efi", efi_bootname[k], efi_archname[i]); @@ -425,7 +438,7 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const "?:%s", psz_fullpath); img_report.wininst_index++; if (file_length >= 4 * GB) - img_report.has_4GB_file |= 0x80; + img_report.has_4GB_file |= (0x10 << i); } } } @@ -455,7 +468,7 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const if (props->is_old_c32[i]) img_report.has_old_c32[i] = TRUE; } - if (file_length >= 4 * GB) + if (file_length >= 4 * GB && (img_report.has_4GB_file & 0x0f) != 0x0f) img_report.has_4GB_file++; // Compute projected size needed (NB: ISO_BLOCKSIZE = UDF_BLOCKSIZE) if (file_length != 0) @@ -492,14 +505,23 @@ static void fix_config(const char* psz_fullpath, const char* psz_path, const cha if ((props->is_grub_cfg) && replace_in_token_data(src, "linux", "maybe-ubiquity", "", TRUE)) uprintf(" Removed 'maybe-ubiquity' kernel option"); + } else if (replace_in_token_data(src, props->is_grub_cfg ? "linux" : "append", + "boot=casper", "boot=casper persistent", TRUE) != NULL) { + // Linux Mint uses "boot=casper". Oh and we want this replacement to happen BEFORE + // the "linux /casper/vmlinuz" one, because Mint (Why is it ALWAYS them?) also use + // "linux /casper/vmlinuz" and "kernel /casper/vmlinuz" in their config, and even + // do so in a SUPER INCONSISTENT manner in their Syslinux' live.cfg, so we want to + // make sure we don't have to do extra work to fix their inconsistency. + uprintf(" Added 'persistent' kernel option"); + modified = TRUE; } else if (replace_in_token_data(src, "linux", "/casper/vmlinuz", "/casper/vmlinuz persistent", TRUE) != NULL) { // Ubuntu 23.04 and 24.04 use GRUB only with the above and don't use "maybe-ubiquity" uprintf(" Added 'persistent' kernel option"); modified = TRUE; - } else if (replace_in_token_data(src, props->is_grub_cfg ? "linux" : "append", - "boot=casper", "boot=casper persistent", TRUE) != NULL) { - // Linux Mint uses boot=casper. + } else if (replace_in_token_data(src, "kernel", "/casper/vmlinuz", + "/casper/vmlinuz persistent", TRUE) != NULL) { + // Some people might use "kernel" in their Syslinux config instead of "linux" uprintf(" Added 'persistent' kernel option"); modified = TRUE; } else if (replace_in_token_data(src, props->is_grub_cfg ? "linux" : "append", @@ -727,7 +749,9 @@ static int udf_extract_files(udf_t *p_udf, udf_dirent_t *p_udf_dirent, const cha hash_write[HASH_MD5](&ctx, buf, buf_size); ISO_BLOCKING(r = WriteFileWithRetry(file_handle, buf, buf_size, &wr_size, WRITE_RETRIES)); if (!r || (wr_size != buf_size)) { - uprintf(" Error writing file: %s", r ? "Short write detected" : WindowsErrorString()); + if (r) + SetLastError(ERROR_WRITE_FAULT); + uprintf(" Error writing file: %s", WindowsErrorString()); goto out; } file_length -= wr_size; @@ -764,6 +788,8 @@ static int udf_extract_files(udf_t *p_udf, udf_dirent_t *p_udf_dirent, const cha return 0; out: + if (GetLastError() != ERROR_SUCCESS) + ErrorStatus = RUFUS_ERROR(GetLastError()); udf_dirent_free(p_udf_dirent); ISO_BLOCKING(safe_closehandle(file_handle)); safe_free(psz_sanpath); @@ -782,7 +808,7 @@ static int iso_extract_files(iso9660_t* p_iso, const char *psz_path) BOOL is_symlink, is_identical, create_file, free_p_statbuf = FALSE; int length, r = 1; char psz_fullpath[MAX_PATH], *psz_basename = NULL, *psz_sanpath = NULL; - char tmp[128], target_path[256]; + char tmp[128], target_path[256], *last_slash; const char *psz_iso_name = &psz_fullpath[strlen(psz_extract_dir)]; _Static_assert(ISO_BUFFER_SIZE % ISO_BLOCKSIZE == 0, "ISO_BUFFER_SIZE is not a multiple of ISO_BLOCKSIZE"); @@ -958,6 +984,21 @@ static int iso_extract_files(iso9660_t* p_iso, const char *psz_path) if (create_file) { file_handle = CreatePreallocatedFile(psz_sanpath, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, file_length); + if (file_handle == INVALID_HANDLE_VALUE && GetLastError() == ERROR_PATH_NOT_FOUND) { + // Some folks (umbrelos) managed to master their ISOs in a manner where some + // directories don't exist (or don't have _STAT_DIR) but still have files, + // in which case our approach, that expects a sane layout with directories + // properly declared before the files they contain, breaks. Therefore: + last_slash = strrchr(psz_sanpath, '/'); + if (last_slash != NULL) { + *last_slash = '\0'; + uprintf("WARNING: Directory '%s/' was improperly mastered on the source image!", &psz_sanpath[2]); + _mkdirExU(psz_sanpath); + *last_slash = '/'; + file_handle = CreatePreallocatedFile(psz_sanpath, GENERIC_READ | GENERIC_WRITE, + FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, file_length); + } + } if (file_handle == INVALID_HANDLE_VALUE) { err = GetLastError(); uprintf(" Unable to create file: %s", WindowsErrorString()); @@ -992,7 +1033,9 @@ static int iso_extract_files(iso9660_t* p_iso, const char *psz_path) hash_write[HASH_MD5](&ctx, buf, buf_size); ISO_BLOCKING(r = WriteFileWithRetry(file_handle, buf, buf_size, &wr_size, WRITE_RETRIES)); if (!r || wr_size != buf_size) { - uprintf(" Error writing file: %s", r ? "Short write detected" : WindowsErrorString()); + if (r) + SetLastError(ERROR_WRITE_FAULT); + uprintf(" Error writing file: %s", WindowsErrorString()); goto out; } file_length -= wr_size; @@ -1027,6 +1070,8 @@ static int iso_extract_files(iso9660_t* p_iso, const char *psz_path) r = 0; out: + if (r != 0 && GetLastError() != ERROR_SUCCESS) + ErrorStatus = RUFUS_ERROR(GetLastError()); ISO_BLOCKING(safe_closehandle(file_handle)); if (p_entlist != NULL) iso9660_filelist_free(p_entlist); @@ -1196,7 +1241,7 @@ BOOL ExtractISO(const char* src_iso, const char* dest_dir, BOOL scan) scan_only = scan; if (!scan_only) spacing = ""; - cdio_log_set_handler(log_handler); + cdio_log_set_handler((scan_only && !usb_debug) ? NULL : log_handler); psz_extract_dir = dest_dir; // Change progress style to marquee for scanning if (scan_only) { @@ -1306,7 +1351,9 @@ out: for (k = (int)safe_strlen(img_report.label) - 1; ((k > 0) && (isspaceU(img_report.label[k]))); k--) img_report.label[k] = 0; // We use the fact that UDF_BLOCKSIZE and ISO_BLOCKSIZE are the same here - img_report.projected_size = total_blocks * ISO_BLOCKSIZE; + // Also, we add 1% extra requirement, on account that we most likely use a 4k or higher cluster size + // whereas ISO_BLOCKSIZE is 2k, which means we'll need extra spaces if there are many small files. + img_report.projected_size = (uint64_t)((double)total_blocks * ISO_BLOCKSIZE * 1.01f); // We will link the existing isolinux.cfg from a syslinux.cfg we create // If multiple config files exist, choose the one with the shortest path // (so that a '/syslinux.cfg' is preferred over a '/isolinux/isolinux.cfg') @@ -1380,7 +1427,7 @@ out: img_report.sl_version_str); } } - if (!IS_EFI_BOOTABLE(img_report) && HAS_EFI_IMG(img_report) && HasEfiImgBootLoaders()) { + if (!IS_EFI_BOOTABLE(img_report) && HAS_EFI_IMG(img_report) && HasEfiImgBootLoaders(p_iso)) { img_report.has_efi = 0x8000; } if (HAS_WINPE(img_report)) { @@ -1401,8 +1448,10 @@ out: safe_free(buf); } if (HAS_WININST(img_report)) { - static_sprintf(path, "%s|%s", image_path, &img_report.wininst_path[0][2]); - img_report.wininst_version = GetWimVersion(path); + char wim_path[4 * MAX_PATH]; + assert(safe_strlen(image_path) + safe_strlen(&img_report.wininst_path[0][2]) + 2 < ARRAYSIZE(wim_path)); + static_sprintf(wim_path, "%s|%s", image_path, &img_report.wininst_path[0][2]); + img_report.wininst_version = GetWimVersion(wim_path); } if (img_report.has_grub2) { char grub_path[128]; @@ -1468,7 +1517,7 @@ out: static_sprintf(path, "%s\\EFI\\boot\\bootx64.efi", dest_dir); DeleteFileU(path); } - DumpFatDir(dest_dir, 0); + DumpFatDir(p_iso, dest_dir, 0); } if (HAS_SYSLINUX(img_report)) { static_sprintf(path, "%s\\syslinux.cfg", dest_dir); @@ -1548,7 +1597,7 @@ out: if (MoveFileA(path, dst_path)) uprintf("Moved: %s → %s", path, dst_path); else - uprintf("Could not move %s → %s", path, dst_path, WindowsErrorString()); + uprintf("Could not move %s → %s: %s", path, dst_path, WindowsErrorString()); } } if (fd_md5sum != NULL) { @@ -1798,10 +1847,10 @@ int iso9660_readfat(intptr_t pp, void *buf, size_t secsize, libfat_sector_t sec) /* * Returns TRUE if an EFI bootloader exists in the img. */ -BOOL HasEfiImgBootLoaders(void) +BOOL HasEfiImgBootLoaders(void* iso) { BOOL ret = FALSE; - iso9660_t* p_iso = NULL; + iso9660_t* p_iso = (iso9660_t*)iso; iso9660_stat_t* p_statbuf = NULL; iso9660_readfat_private* p_private = NULL; int32_t dc, c; @@ -1810,14 +1859,9 @@ BOOL HasEfiImgBootLoaders(void) char bootloader_name[16]; int i; - if ((image_path == NULL) || !HAS_EFI_IMG(img_report)) + if ((p_iso == NULL) || !HAS_EFI_IMG(img_report)) return FALSE; - p_iso = iso9660_open_ext(image_path, ISO_EXTENSION_MASK); - if (p_iso == NULL) { - uprintf("Could not open image '%s' as an ISO-9660 file system", image_path); - goto out; - } p_statbuf = iso9660_ifs_stat_translate(p_iso, img_report.efi_img_path); if (p_statbuf == NULL) { uprintf("Could not get ISO-9660 file information for file %s", img_report.efi_img_path); @@ -1834,6 +1878,20 @@ BOOL HasEfiImgBootLoaders(void) uprintf("Error reading ISO-9660 file %s at LSN %lu", img_report.efi_img_path, (long unsigned int)p_private->lsn); goto out; } + // Try to skip to first FAT partition, if working with an MBR partitioned image + if (p_private->buf[0x1fe] == 0x55 && p_private->buf[0x1ff] == 0xaa && + p_private->buf[0x1be] == 0x80 && IS_FAT_TYPE(p_private->buf[0x1c2])) { + uint32_t lba = *((uint32_t*)&p_private->buf[0x1c6]); + if (lba % 4 != 0) { + uprintf("Error: First MBR partition doesn't map to ISO-9660 sector"); + goto out; + } + p_private->lsn += lba / 4; + if (iso9660_iso_seek_read(p_private->p_iso, p_private->buf, p_private->lsn, ISO_NB_BLOCKS) != ISO_NB_BLOCKS * ISO_BLOCKSIZE) { + uprintf("Error reading ISO-9660 file %s at LSN %lu", img_report.efi_img_path, (long unsigned int)p_private->lsn); + goto out; + } + } lf_fs = libfat_open(iso9660_readfat, (intptr_t)p_private); if (lf_fs == NULL) { uprintf("FAT access error"); @@ -1869,12 +1927,11 @@ out: if (lf_fs != NULL) libfat_close(lf_fs); iso9660_stat_free(p_statbuf); - iso9660_close(p_iso); safe_free(p_private); return ret; } -BOOL DumpFatDir(const char* path, int32_t cluster) +BOOL DumpFatDir(void* iso, const char* path, int32_t cluster) { // We don't have concurrent calls to this function, so a static lf_fs is fine static struct libfat_filesystem *lf_fs = NULL; @@ -1886,7 +1943,7 @@ BOOL DumpFatDir(const char* path, int32_t cluster) libfat_diritem_t diritem = { 0 }; libfat_dirpos_t dirpos = { cluster, -1, 0 }; libfat_sector_t s; - iso9660_t* p_iso = NULL; + iso9660_t* p_iso = (iso9660_t*)iso; iso9660_stat_t* p_statbuf = NULL; iso9660_readfat_private* p_private = NULL; @@ -1895,13 +1952,8 @@ BOOL DumpFatDir(const char* path, int32_t cluster) if (cluster == 0) { // Root dir => Perform init stuff - if (image_path == NULL) + if (iso == NULL || image_path == NULL) return FALSE; - p_iso = iso9660_open_ext(image_path, ISO_EXTENSION_MASK); - if (p_iso == NULL) { - uprintf("Could not open image '%s' as an ISO-9660 file system", image_path); - goto out; - } p_statbuf = iso9660_ifs_stat_translate(p_iso, img_report.efi_img_path); if (p_statbuf == NULL) { uprintf("Could not get ISO-9660 file information for file %s", img_report.efi_img_path); @@ -1918,6 +1970,15 @@ BOOL DumpFatDir(const char* path, int32_t cluster) uprintf("Error reading ISO-9660 file %s at LSN %lu", img_report.efi_img_path, (long unsigned int)p_private->lsn); goto out; } + // Try to skip to first FAT partition, if working with an MBR partitioned image + if (p_private->buf[0x1fe] == 0x55 && p_private->buf[0x1ff] == 0xaa && + p_private->buf[0x1be] == 0x80 && IS_FAT_TYPE(p_private->buf[0x1c2])) { + p_private->lsn += *((uint32_t*)&p_private->buf[0x1c6]) / 4; + if (iso9660_iso_seek_read(p_private->p_iso, p_private->buf, p_private->lsn, ISO_NB_BLOCKS) != ISO_NB_BLOCKS * ISO_BLOCKSIZE) { + uprintf("Error reading ISO-9660 file %s at LSN %lu", img_report.efi_img_path, (long unsigned int)p_private->lsn); + goto out; + } + } lf_fs = libfat_open(iso9660_readfat, (intptr_t)p_private); if (lf_fs == NULL) { uprintf("FAT access error"); @@ -1943,7 +2004,7 @@ BOOL DumpFatDir(const char* path, int32_t cluster) uprintf("Could not create directory '%s': %s", target, WindowsErrorString()); continue; } - if (!DumpFatDir(target, dirpos.cluster)) + if (!DumpFatDir(p_iso, target, dirpos.cluster)) goto out; } else if (!PathFileExistsU(target)) { // Need to figure out if it's a .conf file (Damn you Solus!!) @@ -1995,8 +2056,7 @@ out: libfat_close(lf_fs); lf_fs = NULL; } - iso9660_stat_free(p_statbuf);; - iso9660_close(p_iso); + iso9660_stat_free(p_statbuf); safe_free(p_private); } safe_closehandle(handle); @@ -2005,8 +2065,7 @@ out: return ret; } -// TODO: If we can't get save to ISO from virtdisk, we might as well drop this -static DWORD WINAPI IsoSaveImageThread(void* param) +static DWORD WINAPI OpticalDiscSaveImageThread(void* param) { BOOL s; DWORD rSize, wSize; @@ -2031,7 +2090,7 @@ static DWORD WINAPI IsoSaveImageThread(void* param) // In case someone poked the disc before us li.QuadPart = 0; if (!SetFilePointerEx(hPhysicalDrive, li, NULL, FILE_BEGIN)) - uprintf("Warning: Unable to rewind device position - wrong data might be copied!"); + uprintf("WARNING: Unable to rewind device position - wrong data might be copied!"); hDestImage = CreateFileU(img_save->ImagePath, GENERIC_WRITE, FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if (hDestImage == INVALID_HANDLE_VALUE) { @@ -2058,7 +2117,7 @@ static DWORD WINAPI IsoSaveImageThread(void* param) // Optical drives do not appear to increment the sectors to read automatically li.QuadPart = wb; if (!SetFilePointerEx(hPhysicalDrive, li, NULL, FILE_BEGIN)) - uprintf("Warning: Unable to set device position - wrong data might be copied!"); + uprintf("WARNING: Unable to set device position - wrong data might be copied!"); s = ReadFile(hPhysicalDrive, buffer, (DWORD)MIN(img_save->BufSize, img_save->DeviceSize - wb), &rSize, NULL); if (!s) { @@ -2112,7 +2171,7 @@ out: ExitThread(0); } -void IsoSaveImage(void) +void OpticalDiscSaveImage(void) { static IMG_SAVE img_save = { 0 }; char filename[33] = "disc_image.iso"; @@ -2143,7 +2202,7 @@ void IsoSaveImage(void) // Disable all controls except cancel EnableControls(FALSE, FALSE); InitProgress(TRUE); - format_thread = CreateThread(NULL, 0, IsoSaveImageThread, &img_save, 0, NULL); + format_thread = CreateThread(NULL, 0, OpticalDiscSaveImageThread, &img_save, 0, NULL); if (format_thread != NULL) { uprintf("\r\nSave to ISO operation started"); PrintInfo(0, -1); @@ -2155,3 +2214,57 @@ void IsoSaveImage(void) PostMessage(hMainDialog, UM_FORMAT_COMPLETED, (WPARAM)FALSE, 0); } } + +// Create an ISO image from the currently selected drive, using oscdimg.exe +DWORD WINAPI IsoSaveImageThread(void* param) +{ + DWORD r = ERROR_NOT_FOUND; + HANDLE exe = INVALID_HANDLE_VALUE; + IMG_SAVE* img_save = (IMG_SAVE*)param; + char cmd[2 * KB], letters[27], *label; + + if (!GetDriveLabel(SelectedDrive.DeviceNumber, letters, &label, TRUE) || letters[0] == '\0') + goto out; + + // Get a lock and validate that the oscdimg.exe has not been tampered with + static_sprintf(cmd, "%s\\%s\\oscdimg_%s.exe", app_data_dir, FILES_DIR, APPLICATION_ARCH); + exe = CreateFileU(cmd, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); + if (exe == INVALID_HANDLE_VALUE) { + uprintf("ERROR: Could not lock 'oscdimg.exe'"); + r = GetLastError(); + goto out; + } + if (!FileMatchesHash(cmd, OSCDIMG_HASH)) { + uprintf("ERROR: Existing 'oscdimg.exe' hash does not match expected value!"); + r = ERROR_INVALID_IMAGE_HASH; + goto out; + } + + // UDF labels cannot be more than 32 characters (and if we have more than 32 chars we are + // using the static modifiable char buffer from GetDriveLabel(), so we can alter it). + if (strlen(label) > 32) + label[32] = '\0'; + + // Save to UDF only, as Microsoft's implementation of ISO-9660 doesn't support multiextent + // and produces BROKEN images if you try to add files larger than 4 GB. + // Plus ISO-9660/Joliet limits labels to 16 characters and has issues with long paths. + static_sprintf(cmd, "\"%s\\%s\\oscdimg_%s.exe\" -g -h -k -l\"%s\" -m -u2 -udfver102 %c:\\ \"%s\"", + app_data_dir, FILES_DIR, APPLICATION_ARCH, label, letters[0], img_save->ImagePath); + uprintf("Running command: '%s'", cmd); + // For detecting typical oscdimg commandline progress report of type: "\r15.5% complete" + r = RunCommandWithProgress(cmd, sysnative_dir, FALSE, MSG_261, ".*\r([0-9\\.]+)% complete.*"); + +out: + safe_closehandle(exe); + if (r != 0 && !IS_ERROR(ErrorStatus)) { + SetLastError(r); + uprintf("Failed to write ISO image: %s", WindowsErrorString()); + ErrorStatus = RUFUS_ERROR(SCODE_CODE(r)); + } + PostMessage(hMainDialog, UM_FORMAT_COMPLETED, (WPARAM)TRUE, 0); + if (!IS_ERROR(ErrorStatus)) + uprintf("Saved '%s'", img_save->ImagePath); + safe_free(img_save->DevicePath); + safe_free(img_save->ImagePath); + ExitThread(r); +} diff --git a/src/libcdio/driver/logging.c b/src/libcdio/driver/logging.c index b89ab37a..ab3fd2be 100644 --- a/src/libcdio/driver/logging.c +++ b/src/libcdio/driver/logging.c @@ -120,7 +120,8 @@ cdio_logv(cdio_log_level_t level, const char format[], va_list args) vsnprintf(buf, sizeof(buf)-1, format, args); - _handler(level, buf); + if (_handler) + _handler(level, buf); in_recursion = 0; } diff --git a/src/libcdio/iso9660/iso9660.c b/src/libcdio/iso9660/iso9660.c index 629bb740..65927f2b 100644 --- a/src/libcdio/iso9660/iso9660.c +++ b/src/libcdio/iso9660/iso9660.c @@ -256,11 +256,10 @@ iso9660_get_dtime (const iso9660_dtime_t *idr_date, bool b_localtime, memcpy(num, p_ldate->LT_FIELD, sizeof(p_ldate->LT_FIELD)); \ num[sizeof(p_ldate->LT_FIELD)] = '\0'; \ errno = 0; \ - tmp = strtol(num, \ - (char **)NULL, 10); \ + tmp = strtol(num, (char **)NULL, 10); \ if ( tmp == LONG_MIN || tmp == LONG_MAX || \ - ((unsigned long)tmp + ADD_CONSTANT) == LONG_MAX || \ - (tmp + ADD_CONSTANT) == LONG_MIN ) \ + (uint64_t)tmp + ADD_CONSTANT >= (uint64_t)LONG_MAX || \ + (uint64_t)tmp + ADD_CONSTANT <= (uint64_t)LONG_MIN ) \ return false; \ p_tm->TM_FIELD = tmp + ADD_CONSTANT; \ } diff --git a/src/libcdio/iso9660/iso9660_fs.c b/src/libcdio/iso9660/iso9660_fs.c index c5eff035..6abde7da 100644 --- a/src/libcdio/iso9660/iso9660_fs.c +++ b/src/libcdio/iso9660/iso9660_fs.c @@ -63,6 +63,10 @@ /* Maximum number of El-Torito boot images we keep an index for */ #define MAX_BOOT_IMAGES 8 +/* El-Torito media types, similar to what 7-zip uses in Archive/Iso/IsoIn.cpp */ +static const char* const eltorito_media_name[] = +{ "NoEmul", "1.2M", "1.44M", "2.88M", "HardDisk" }; + /** Implementation of iso9660_t type */ struct _iso9660_s { cdio_header_t header; /**< Internal header - MUST come first. */ @@ -88,6 +92,7 @@ struct _iso9660_s { M2RAW_SECTOR_SIZE (2336). */ struct { + uint8_t type; /**< Type of El-Torito bootable image */ uint32_t lsn; /**< Start LSN of an El-Torito bootable image */ uint32_t num_sectors; /**< Number of virtual sectors occupied by the bootable image */ @@ -537,7 +542,8 @@ iso9660_ifs_read_superblock (iso9660_t *p_iso, for (j = 0, k = 0; j < (ISO_BLOCKSIZE / sizeof(iso9660_br_t)) && k < MAX_BOOT_IMAGES; j++) { - if (br[j].boot_id == 0x88 && br[j].media_type == 0) { + if (br[j].boot_id == 0x88 && (br[j].media_type & 0x0F) <= 4) { + p_iso->boot_img[k].type = br[j].media_type & 0x0F; p_iso->boot_img[k].lsn = uint32_from_le(br[j].image_lsn); p_iso->boot_img[k++].num_sectors = uint16_from_le(br[j].num_sectors); } @@ -559,12 +565,14 @@ iso9660_ifs_read_superblock (iso9660_t *p_iso, next_lsn = p_iso->boot_img[k].lsn; } /* If the image has a sector size of 0 or 1 and theres' more than */ - /* 0xffff sectors to the next LSN, assume it needs expansion. */ + /* 0x1000 sectors (8 MB) to the next LSN, assume it needs expansion. */ if (p_iso->boot_img[j].num_sectors <= 1 && - (next_lsn - p_iso->boot_img[j].lsn) >= 0x4000) { + (next_lsn - p_iso->boot_img[j].lsn) >= 0x1000) { p_iso->boot_img[j].num_sectors = - (next_lsn - p_iso->boot_img[j].lsn) * 4; - cdio_warn("Auto-expanding the size of %d-Boot-NoEmul.img", j); + (next_lsn - p_iso->boot_img[j].lsn) * 4; + cdio_warn("Auto-expanding the size of %d-Boot-%s.img to %d KB", + j, eltorito_media_name[p_iso->boot_img[j].type], + (next_lsn - p_iso->boot_img[j].lsn) * 2); } } } @@ -1497,15 +1505,16 @@ iso9660_fs_stat_translate (CdIo_t *p_cdio, const char psz_path[]) iso9660_stat_t * iso9660_ifs_stat_translate (iso9660_t *p_iso, const char psz_path[]) { - /* Special case for virtual El-Torito boot images ('/[BOOT]/#-Boot-NoEmul.img') */ + /* Special case for virtual El-Torito boot images ('/[BOOT]/#-Boot-######.img') */ if (psz_path && p_iso && p_iso->boot_img[0].lsn != 0) { /* Work on a path without leading slash */ const char* path = (psz_path[0] == '/') ? &psz_path[1] : psz_path; if ((_cdio_strnicmp(path, "[BOOT]/", 7) == 0) && - (_cdio_stricmp(&path[8], "-Boot-NoEmul.img") == 0)) { + (_cdio_strnicmp(&path[8], "-Boot-", 6) == 0) && + (_cdio_strnicmp(&path[strlen(path) - 4], ".img", 4) == 0)) { int index = path[7] - '0'; iso9660_stat_t* p_stat; - if (strlen(path) < 24) + if (strlen(path) < 20) return NULL; cdio_assert(MAX_BOOT_IMAGES <= 10); if ((path[7] < '0') || (path[7] > '0' + MAX_BOOT_IMAGES - 1)) @@ -1701,13 +1710,13 @@ iso9660_ifs_readdir (iso9660_t *p_iso, const char psz_path[]) if (_cdio_strnicmp(path, "[BOOT]", 6) == 0 && (path[6] == '\0' || path[6] == '/')) { retval = _cdio_list_new(); for (i = 0; i < MAX_BOOT_IMAGES && p_iso->boot_img[i].lsn != 0; i++) { - p_iso9660_stat = calloc(1, sizeof(iso9660_stat_t) + 18); + p_iso9660_stat = calloc(1, sizeof(iso9660_stat_t) + 24); if (!p_iso9660_stat) { - cdio_warn("Couldn't calloc(1, %d)", (int)sizeof(iso9660_stat_t) + 18); + cdio_warn("Couldn't calloc(1, %d)", (int)sizeof(iso9660_stat_t) + 24); break; } - strcpy(p_iso9660_stat->filename, "#-Boot-NoEmul.img"); - p_iso9660_stat->filename[0] = '0' + i; + snprintf(p_iso9660_stat->filename, 24, "%d-Boot-%s.img", i, + eltorito_media_name[p_iso->boot_img[i].type]); p_iso9660_stat->type = _STAT_FILE; p_iso9660_stat->lsn = p_iso->boot_img[i].lsn; p_iso9660_stat->total_size = p_iso->boot_img[i].num_sectors * VIRTUAL_SECTORSIZE; @@ -1815,14 +1824,10 @@ iso9660_ifs_readdir (iso9660_t *p_iso, const char psz_path[]) free (_dirbuf); iso9660_stat_free(p_stat); - - if (offset != dirbuf_len) { + if (offset != dirbuf_len) _cdio_list_free (retval, true, (CdioDataFree_t) iso9660_stat_free); - return NULL; - } - iso9660_stat_free(p_iso9660_stat); - return retval; + return (offset == dirbuf_len) ? retval : NULL; } typedef CdioISO9660FileList_t * (iso9660_readdir_t) diff --git a/src/license.h b/src/license.h index 0ec2ebf1..f107aaec 100644 --- a/src/license.h +++ b/src/license.h @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Licensing Data - * Copyright © 2011-2025 Pete Batard + * Copyright © 2011-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -110,9 +110,11 @@ const char* additional_copyrights = "https://sourceforge.net/projects/smartmontools\\line\n" "GNU General Public License (GPL) v2 or later\\line\n" "\\line\n" -"FS Type description from GNU fdisk:\\line\n" +"Partition and FS Type identification from GNU fdisk and GPT fdisk:\\line\n" "https://www.gnu.org/software/fdisk\\line\n" -"GNU General Public License (GPL) v3 or later\\line\n" +"https://www.rodsbooks.com/gdisk\\line\n" +"https://salsa.debian.org/debian/gdisk\\line\n" +"GNU General Public License (GPL) v2 or later\\line\n" "\\line\n" "Speed/ETA computation from GNU wget:\\line\n" "https://www.gnu.org/software/wget\\line\n" @@ -142,11 +144,6 @@ const char* additional_copyrights = "https://github.com/u-boot/u-boot\\line\n" "GNU General Public License (GPL) v2 or later\\line\n" "\\line\n" -"SkuSiPolicy.p7b parsing derived from:\\line\n" -"https://gist.github.com/mattifestation/92e545bf1ee5b68eeb71d254cec2f78e\\line\n" -"by Matthew Graeber, with contributions by James Forshaw\\line\n" -"BSD 3-Clause\\line\n" -"\\line\n" "About and License dialogs inspired by WinSCP by Martin Prikryl\\line\n" "https://winscp.net/\\line\n" "GNU General Public License (GPL) v3 or later\\line\n" @@ -155,9 +152,12 @@ const char* additional_copyrights = "https://tortoisesvn.net/, https://tortoisegit.org/\\line\n" "GNU General Public License (GPL) v2 or later\\line\n" "\\line\n" -"Regular Expression handling from tiny-regex-c by kokke:\\line\n" -"https://github.com/kokke/tiny-regex-c\\line\n" -"Public Domain\\line\n" +"Dark Mode support by ozone10\\line\n" +"https://github.com/ozone10\\line\n" +"\\line\n" +"Regular Expression parser from tiny-regex-c by Jim Huang (jserv):\\line\n" +"https://github.com/jserv/cregex\\line\n" +"BSD 2-Clause\\line\n" "\\line\n" "All other references can be found in the source.\\line\n}"; diff --git a/src/localization.c b/src/localization.c index e247ecb2..b338dccf 100644 --- a/src/localization.c +++ b/src/localization.c @@ -227,7 +227,7 @@ BOOL dispatch_loc_cmd(loc_cmd* lcmd) lcmd->ctrl_id = MSG_000 + atoi(&(lcmd->txt[0][4])); if (lcmd->ctrl_id == MSG_000) { // Conversion could not be performed - luprintf("failed to convert the numeric value in '%'\n", lcmd->txt[0]); + luprintf("failed to convert the numeric value in '%s'\n", lcmd->txt[0]); goto err; } add_message_command(lcmd); diff --git a/src/localization_data.sh b/src/localization_data.sh index ec2615fc..b48e9a1a 100755 --- a/src/localization_data.sh +++ b/src/localization_data.sh @@ -12,7 +12,7 @@ cat > cmd.sed <<\_EOF 1i /*\ * Rufus: The Reliable USB Formatting Utility\ * Localization tables - autogenerated from resource.h\ - * Copyright © 2013-2025 Pete Batard \ + * Copyright © 2013-2026 Pete Batard \ *\ * This program is free software: you can redistribute it and/or modify\ * it under the terms of the GNU General Public License as published by\ diff --git a/src/ms-sys/br.c b/src/ms-sys/br.c index c432e422..ff7b4d44 100644 --- a/src/ms-sys/br.c +++ b/src/ms-sys/br.c @@ -180,7 +180,15 @@ int is_grub2_mbr(FILE *fp) #include "mbr_grub2.h" return - contains_data(fp, 0x0, mbr_grub2_0x0, sizeof(mbr_grub2_0x0)) && + contains_data(fp, 0x0, &mbr_grub2_0x0[0x0], 0x2) && + contains_data(fp, 0x64, &mbr_grub2_0x0[0x64], 0x2) && + contains_data(fp, 0x68, &mbr_grub2_0x0[0x68], 0x2c) && + contains_data(fp, 0x96, &mbr_grub2_0x0[0x96], 0x29) && + contains_data(fp, 0xc1, &mbr_grub2_0x0[0xc1], 0x7) && + contains_data(fp, 0xca, &mbr_grub2_0x0[0xca], 0x1f) && + contains_data(fp, 0xeb, &mbr_grub2_0x0[0xeb], 0x2b) && + contains_data(fp, 0x118, &mbr_grub2_0x0[0x118], 0x7) && + contains_data(fp, 0x121, &mbr_grub2_0x0[0x121], sizeof(mbr_grub2_0x0) - 0x121) && is_br(fp); } /* is_grub2_mbr */ @@ -202,6 +210,17 @@ int is_syslinux_mbr(FILE *fp) is_br(fp); } /* is_syslinux_mbr */ +int is_isolinux_mbr(FILE* fp) +{ +#include "mbr_isolinux.h" + + return + contains_data(fp, 0x20, &mbr_isolinux_0x0[0], 0x48) && + (contains_data(fp, 0x80, &mbr_isolinux_0x0[0x60], sizeof(mbr_isolinux_0x0) - 0x60) || + contains_data(fp, 0x82, &mbr_isolinux_0x0[0x60], sizeof(mbr_isolinux_0x0) - 0x60)) && + is_br(fp); +} /* is_isolinux_mbr */ + int is_syslinux_gpt_mbr(FILE *fp) { #include "mbr_gpt_syslinux.h" diff --git a/src/ms-sys/file.c b/src/ms-sys/file.c index 8e26b219..90687e18 100644 --- a/src/ms-sys/file.c +++ b/src/ms-sys/file.c @@ -59,7 +59,7 @@ int64_t write_sectors(HANDLE hDrive, uint64_t SectorSize, { /* Some large drives return 0, even though all the data was written - See github #787 */ if (large_drive && Size == 0) { - uprintf("Warning: Possible short write\n"); + uprintf("WARNING: Possible short write\n"); return 0; } uprintf("write_sectors: Write error\n"); diff --git a/src/ms-sys/inc/br.h b/src/ms-sys/inc/br.h index 98cc3826..45c53a0f 100644 --- a/src/ms-sys/inc/br.h +++ b/src/ms-sys/inc/br.h @@ -78,6 +78,10 @@ int is_kolibrios_mbr(FILE *fp); FALSE.The file position will change when this function is called! */ int is_syslinux_mbr(FILE *fp); +/* returns TRUE if the file has an isolinux master boot record, otherwise + FALSE.The file position will change when this function is called! */ +int is_isolinux_mbr(FILE* fp); + /* returns TRUE if the file has a syslinux GPT master boot record, otherwise FALSE.The file position will change when this function is called! */ int is_syslinux_gpt_mbr(FILE *fp); diff --git a/src/ms-sys/inc/mbr_isolinux.h b/src/ms-sys/inc/mbr_isolinux.h new file mode 100644 index 00000000..eb1fd113 --- /dev/null +++ b/src/ms-sys/inc/mbr_isolinux.h @@ -0,0 +1,28 @@ +/* This version is found on most Isolinux based distros */ +unsigned char mbr_isolinux_0x0[] = { + 0x33, 0xed, 0xfa, 0x8e, 0xd5, 0xbc, 0x00, 0x7c, 0xfb, 0xfc, 0x66, 0x31, + 0xdb, 0x66, 0x31, 0xc9, 0x66, 0x53, 0x66, 0x51, 0x06, 0x57, 0x8e, 0xdd, + 0x8e, 0xc5, 0x52, 0xbe, 0x00, 0x7c, 0xbf, 0x00, 0x06, 0xb9, 0x00, 0x01, + 0xf3, 0xa5, 0xea, 0x4b, 0x06, 0x00, 0x00, 0x52, 0xb4, 0x41, 0xbb, 0xaa, + 0x55, 0x31, 0xc9, 0x30, 0xf6, 0xf9, 0xcd, 0x13, 0x72, 0x16, 0x81, 0xfb, + 0x55, 0xaa, 0x75, 0x10, 0x83, 0xe1, 0x01, 0x74, 0x0b, 0x66, 0xc7, 0x06, + 0xf1, 0x06, 0xb4, 0x42, 0xeb, 0x15, 0xeb, 0x00, 0x5a, 0x51, 0xb4, 0x08, + 0xcd, 0x13, 0x83, 0xe1, 0x3f, 0x5b, 0x51, 0x0f, 0xb6, 0xc6, 0x40, 0x50, + 0xf7, 0xe1, 0x53, 0x52, 0x50, 0xbb, 0x00, 0x7c, 0xb9, 0x04, 0x00, 0x66, + 0xa1, 0xb0, 0x07, 0xe8, 0x44, 0x00, 0x0f, 0x82, 0x80, 0x00, 0x66, 0x40, + 0x80, 0xc7, 0x02, 0xe2, 0xf2, 0x66, 0x81, 0x3e, 0x40, 0x7c, 0xfb, 0xc0, + 0x78, 0x70, 0x75, 0x09, 0xfa, 0xbc, 0xec, 0x7b, 0xea, 0x44, 0x7c, 0x00, + 0x00, 0xe8, 0x83, 0x00, 0x69, 0x73, 0x6f, 0x6c, 0x69, 0x6e, 0x75, 0x78, + 0x2e, 0x62, 0x69, 0x6e, 0x20, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, + 0x20, 0x6f, 0x72, 0x20, 0x63, 0x6f, 0x72, 0x72, 0x75, 0x70, 0x74, 0x2e, + 0x0d, 0x0a, 0x66, 0x60, 0x66, 0x31, 0xd2, 0x66, 0x03, 0x06, 0xf8, 0x7b, + 0x66, 0x13, 0x16, 0xfc, 0x7b, 0x66, 0x52, 0x66, 0x50, 0x06, 0x53, 0x6a, + 0x01, 0x6a, 0x10, 0x89, 0xe6, 0x66, 0xf7, 0x36, 0xe8, 0x7b, 0xc0, 0xe4, + 0x06, 0x88, 0xe1, 0x88, 0xc5, 0x92, 0xf6, 0x36, 0xee, 0x7b, 0x88, 0xc6, + 0x08, 0xe1, 0x41, 0xb8, 0x01, 0x02, 0x8a, 0x16, 0xf2, 0x7b, 0xcd, 0x13, + 0x8d, 0x64, 0x10, 0x66, 0x61, 0xc3, 0xe8, 0x1e, 0x00, 0x4f, 0x70, 0x65, + 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x79, 0x73, 0x74, 0x65, + 0x6d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x2e, 0x0d, 0x0a, 0x5e, 0xac, 0xb4, 0x0e, 0x8a, 0x3e, 0x62, 0x04, 0xb3, + 0x07, 0xcd, 0x10, 0x3c, 0x0a, 0x75, 0xf1, 0xcd, 0x18, 0xf4, 0xeb, 0xfd +}; diff --git a/src/msapi_utf8.h b/src/msapi_utf8.h index e241026b..e4feb1d7 100644 --- a/src/msapi_utf8.h +++ b/src/msapi_utf8.h @@ -6,7 +6,7 @@ * * See also: https://utf8everywhere.org * - * Copyright © 2010-2025 Pete Batard + * Copyright © 2010-2026 Pete Batard * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -37,6 +37,7 @@ #include #include #include +#include #include #include #include @@ -56,8 +57,12 @@ extern "C" { #define wchar_to_utf8_no_alloc(wsrc, dest, dest_size) \ WideCharToMultiByte(CP_UTF8, 0, wsrc, -1, dest, (int)(dest_size), NULL, NULL) +#define wchar_to_utf8_get_size(wsrc) \ + WideCharToMultiByte(CP_UTF8, 0, wsrc, -1, NULL, 0, NULL, NULL) #define utf8_to_wchar_no_alloc(src, wdest, wdest_size) \ MultiByteToWideChar(CP_UTF8, 0, src, -1, wdest, (int)(wdest_size)) +#define utf8_to_wchar_get_size(src) \ + MultiByteToWideChar(CP_UTF8, 0, src, -1, NULL, 0) #define Edit_ReplaceSelU(hCtrl, str) ((void)SendMessageLU(hCtrl, EM_REPLACESEL, (WPARAM)FALSE, str)) #define ComboBox_AddStringU(hCtrl, str) ((int)(DWORD)SendMessageLU(hCtrl, CB_ADDSTRING, (WPARAM)FALSE, str)) #define ComboBox_InsertStringU(hCtrl, index, str) ((int)(DWORD)SendMessageLU(hCtrl, CB_INSERTSTRING, (WPARAM)index, str)) @@ -508,6 +513,22 @@ static __inline HANDLE CreateFileU(const char* lpFileName, DWORD dwDesiredAccess return ret; } +// CreateFile() that restricts file access to Admin and System only +static __inline HANDLE CreateFileRestrictedU(const char* lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, + DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes) +{ + // Restrict access to Admin (BA) and System (SY) only + const char* sddl = "D:P(A;;FA;;;BA)(A;;FA;;;SY)(A;;FR;;;WD)"; + SECURITY_ATTRIBUTES sa = { sizeof(SECURITY_ATTRIBUTES), NULL, FALSE }; + HANDLE h; + + if (!ConvertStringSecurityDescriptorToSecurityDescriptorA(sddl, 1, &sa.lpSecurityDescriptor, NULL)) + return INVALID_HANDLE_VALUE; + h = CreateFileU(lpFileName, dwDesiredAccess, dwShareMode, &sa, dwCreationDisposition, dwFlagsAndAttributes, NULL); + LocalFree(sa.lpSecurityDescriptor); + return h; +} + static __inline BOOL CreateDirectoryU(const char* lpPathName, LPSECURITY_ATTRIBUTES lpSecurityAttributes) { BOOL ret = FALSE; @@ -644,9 +665,8 @@ static __inline BOOL GetTextExtentPointU(HDC hdc, const char* lpString, LPSIZE l return ret; } -// A UTF-8 alternative to MS GetCurrentDirectory() since the latter is useless for -// apps installed from the App Store... -static __inline DWORD GetCurrentDirectoryU(DWORD nBufferLength, char* lpBuffer) +// Gets the directory where the executable resises, through GetModuleFileName() +static __inline DWORD GetAppDirectoryU(DWORD nBufferLength, char* lpBuffer) { DWORD i, ret = 0, err = ERROR_INVALID_DATA; // coverity[returned_null] diff --git a/src/net.c b/src/net.c index a47f076e..32cebdf7 100644 --- a/src/net.c +++ b/src/net.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Networking functionality (web file download, check for update, etc.) - * Copyright © 2012-2025 Pete Batard + * Copyright © 2012-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -59,7 +59,6 @@ extern BOOL is_x86_64; extern USHORT NativeMachine; static DWORD error_code, fido_len = 0; static BOOL force_update_check = FALSE; -static const char* request_headers[2] = { "Accept-Encoding: none", "Accept-Encoding: gzip, deflate" }; extern const char* efi_archname[ARCH_MAX]; #if defined(__MINGW32__) @@ -175,7 +174,7 @@ uint64_t DownloadToFileOrBufferEx(const char* url, const char* file, const char* const char* short_name; unsigned char buf[DOWNLOAD_BUFFER_SIZE]; char hostname[64], urlpath[128], strsize[32]; - BOOL r = FALSE, use_github_api; + BOOL r = FALSE; DWORD dwSize, dwWritten, dwDownloaded; HANDLE hFile = INVALID_HANDLE_VALUE; HINTERNET hSession = NULL, hConnection = NULL, hRequest = NULL; @@ -227,18 +226,16 @@ uint64_t DownloadToFileOrBufferEx(const char* url, const char* file, const char* goto out; } - // If we are querying the GitHub API, we need to enable raw content and - // set 'Accept-Encoding' to 'none' to get the data length. - use_github_api = (strstr(url, "api.github.com") != NULL); - if (use_github_api && !HttpAddRequestHeadersA(hRequest, "Accept: application/vnd.github.v3.raw", - (DWORD)-1, HTTP_ADDREQ_FLAG_ADD)) { + // If we are querying the GitHub API, we need to enable raw content + if (strstr(url, "api.github.com") != NULL && !HttpAddRequestHeadersA(hRequest, + "Accept: application/vnd.github.v3.raw", (DWORD)-1, HTTP_ADDREQ_FLAG_ADD)) { uprintf("Unable to enable raw content from GitHub API: %s", WindowsErrorString()); goto out; } - if (!HttpSendRequestA(hRequest, request_headers[use_github_api ? 0 : 1], -1L, NULL, 0)) { - uprintf("Unable to send request: %s", WindowsErrorString()); - goto out; - } + // Must use "Accept-Encoding: identity" to get the file size + // This is needed for GitHub as the Microsoft HTTP APIs can't seem to read content-length for + // compressed content from GitHub, and using "identity" disables compression. + HttpSendRequestA(hRequest, "Accept-Encoding: identity", -1L, NULL, 0); // Get the file size dwSize = sizeof(DownloadStatus); @@ -400,8 +397,7 @@ out: if ((bPromptOnError) && (DownloadStatus != 200)) { PrintInfo(0, MSG_242); SetLastError(error_code); - MessageBoxExU(hMainDialog, IS_ERROR(ErrorStatus) ? StrError(ErrorStatus, FALSE) : WindowsErrorString(), - lmprintf(MSG_044), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_044), IS_ERROR(ErrorStatus) ? StrError(ErrorStatus, FALSE) : WindowsErrorString()); } safe_closehandle(hFile); free(url_sig); @@ -496,15 +492,14 @@ static void CheckForDBXUpdates(int verbose) continue; t.tm_year -= 1900; t.tm_mon -= 1; - timestamp = _mktime64(&t); + timestamp = _mkgmtime64(&t); vuprintf("DBX update timestamp is %" PRId64, timestamp); static_sprintf(reg_name, "DBXTimestamp_%s", efi_archname[i + 1]); // Check if we have an external DBX that is newer than embedded/last downloaded if (timestamp <= MAX(dbx_info[i].timestamp, (uint64_t)ReadSetting64(reg_name))) continue; if (!already_prompted) { - r = MessageBoxExU(hMainDialog, lmprintf(MSG_354), lmprintf(MSG_353), - MB_YESNO | MB_ICONWARNING | MB_IS_RTL, selected_langid); + r = Notification(MB_YESNO | MB_ICONWARNING, lmprintf(MSG_353), lmprintf(MSG_354)); already_prompted = TRUE; if (r != IDYES) break; @@ -517,7 +512,7 @@ static void CheckForDBXUpdates(int verbose) WriteSetting64(reg_name, timestamp); uprintf("Saved %s as 'dbx_%s.bin'", dbx_info[i].url, efi_archname[i + 1]); } else - uprintf("Warning: Failed to download %s", dbx_info[i].url); + uprintf("WARNING: Failed to download %s", dbx_info[i].url); } } @@ -643,10 +638,12 @@ static DWORD WINAPI CheckForUpdatesThread(LPVOID param) INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP | INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS | INTERNET_FLAG_NO_COOKIES | INTERNET_FLAG_NO_UI | INTERNET_FLAG_NO_CACHE_WRITE | INTERNET_FLAG_HYPERLINK | ((UrlParts.nScheme == INTERNET_SCHEME_HTTPS) ? INTERNET_FLAG_SECURE : 0), (DWORD_PTR)NULL); - if ((hRequest == NULL) || (!HttpSendRequestA(hRequest, request_headers[1], -1L, NULL, 0))) { + if (hRequest == NULL) { uprintf("Unable to send request: %s", WindowsErrorString()); goto out; } + // Must use "Accept-Encoding: identity" to get the file size + HttpSendRequestA(hRequest, "Accept-Encoding: identity", -1L, NULL, 0); // Ensure that we get a text file dwSize = sizeof(dwStatus); @@ -789,7 +786,7 @@ static DWORD WINAPI DownloadISOThread(LPVOID param) uint64_t uncompressed_size; int64_t size = -1; BYTE *compressed = NULL, *sig = NULL; - HANDLE hFile, hPipe; + HANDLE hFile = INVALID_HANDLE_VALUE, hPipe = INVALID_HANDLE_VALUE; DWORD dwExitCode = 99, dwCompressedSize, dwSize, dwAvail, dwPipeSize = 4096; GUID guid; @@ -857,10 +854,18 @@ static DWORD WINAPI DownloadISOThread(LPVOID param) } PrintInfo(0, MSG_148); - assert((fido_script != NULL) && (fido_len != 0)); + if_assert_fails((fido_script != NULL) && (fido_len != 0)) + goto out; + // Why oh why does PowerShell refuse to open read-only files that haven't been closed? + // Because of this limitation, we can't fully prevent TOCTOUs on the file we create, and therefore we: + // - Create the file with a "random" non-guessable name => TOCTOUs require a permanently running script/exe + // - Create the file in the user's AppData temp directory => TOCTOUs can't be enacted by a different user + // - Create the file with Administrator access only => TOCTOUs require elevated privileges (in which case + // the machine is already compromised anyway, so TOCTOU attacks become entirely moot) + // See https://github.com/pbatard/rufus/security/advisories/GHSA-hcx5-hrhj-xhq9 and CVE-2026-23988. static_sprintf(script_path, "%s%s.ps1", temp_dir, GuidToString(&guid, TRUE)); - hFile = CreateFileU(script_path, GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_READONLY, NULL); + hFile = CreateFileRestrictedU(script_path, GENERIC_WRITE, FILE_SHARE_READ, CREATE_ALWAYS, FILE_ATTRIBUTE_READONLY); if (hFile == INVALID_HANDLE_VALUE) { uprintf("Unable to create download script '%s': %s", script_path, WindowsErrorString()); goto out; @@ -869,8 +874,6 @@ static DWORD WINAPI DownloadISOThread(LPVOID param) uprintf("Unable to write download script '%s': %s", script_path, WindowsErrorString()); goto out; } - // Why oh why does PowerShell refuse to open read-only files that haven't been closed? - // Because of this limitation, we can't use LockFileEx() on the file we create... safe_closehandle(hFile); #endif static_sprintf(powershell_path, "%s\\WindowsPowerShell\\v1.0\\powershell.exe", system_dir); @@ -888,13 +891,17 @@ static DWORD WINAPI DownloadISOThread(LPVOID param) goto out; } - static_sprintf(cmdline, "\"%s\" -NonInteractive -Sta -NoProfile –ExecutionPolicy Bypass " + // Ideally, since our script is signed, we'd have '-ExecutionPolicy AllSigned' below. + // Except that, in the myriad of execution policy options they provide, Microsoft chose + // not to add an option that allows signed scripts that validate up to the root of trust, + // but aren't in Trusted Publishers, to be validated: + // https://old.reddit.com/r/PowerShell/comments/kpwi5r/powershell_script_signing_trusted_publisher_prompt/gzi10oc/ + static_sprintf(cmdline, "\"%s\" -NonInteractive -Sta -NoProfile -ExecutionPolicy Bypass " "-File \"%s\" -PipeName %s -LocData \"%s\" -Icon \"%s\" -AppTitle \"%s\" -PlatformArch \"%s\"", powershell_path, script_path, &pipe[9], locale_str, icon_path, lmprintf(MSG_149), GetArchName(NativeMachine)); #ifndef RUFUS_TEST - // For extra security, even after we validated that the LZMA download is properly - // signed, we also validate the Authenticode signature of the local script. + // Because we can't force PowerShell to do it, we validate the signature of the local script. if (ValidateSignature(INVALID_HANDLE_VALUE, script_path) != NO_ERROR) { uprintf("FATAL: Script signature is invalid ✗"); ErrorStatus = RUFUS_ERROR(APPERR(ERROR_BAD_SIGNATURE)); @@ -932,10 +939,10 @@ static DWORD WINAPI DownloadISOThread(LPVOID param) SendMessage(hMainDialog, UM_PROGRESS_EXIT, 0, 0); if (SCODE_CODE(ErrorStatus) == ERROR_CANCELLED) { uprintf("Download cancelled by user"); - Notification(MSG_INFO, NULL, NULL, lmprintf(MSG_211), lmprintf(MSG_041)); + Notification(MB_ICONINFORMATION | MB_CLOSE, lmprintf(MSG_211), lmprintf(MSG_041)); PrintInfo(0, MSG_211); } else { - Notification(MSG_ERROR, NULL, NULL, lmprintf(MSG_194, GetShortName(url)), lmprintf(MSG_043, WindowsErrorString())); + Notification(MB_ICONERROR | MB_CLOSE, lmprintf(MSG_194, GetShortName(url)), lmprintf(MSG_043, WindowsErrorString())); PrintInfo(0, MSG_212); } } else { @@ -948,10 +955,12 @@ static DWORD WINAPI DownloadISOThread(LPVOID param) } out: - if (icon_path[0] != 0) + safe_closehandle(hPipe); + safe_closehandle(hFile); + if (icon_path[0] != '\0') DeleteFileU(icon_path); #if !defined(RUFUS_TEST) - if (script_path[0] != 0) { + if (script_path[0] != '\0') { SetFileAttributesU(script_path, FILE_ATTRIBUTE_NORMAL); DeleteFileU(script_path); } @@ -1010,8 +1019,8 @@ BOOL IsDownloadable(const char* url) if (hRequest == NULL) goto out; - if (!HttpSendRequestA(hRequest, request_headers[1], -1L, NULL, 0)) - goto out; + // Must use "Accept-Encoding: identity" to get the file size + HttpSendRequestA(hRequest, "Accept-Encoding: identity", -1L, NULL, 0); // Get the file size dwSize = sizeof(DownloadStatus); diff --git a/src/ntdll.h b/src/ntdll.h index 309e4b27..7f74d752 100644 --- a/src/ntdll.h +++ b/src/ntdll.h @@ -4,7 +4,7 @@ * * Modified from System Informer (a.k.a. Process Hacker): * https://github.com/winsiderss/systeminformer - * Copyright © 2017-2025 Pete Batard + * Copyright © 2017-2026 Pete Batard * Copyright © 2017 dmex * Copyright © 2009-2016 wj32 * @@ -120,15 +120,15 @@ typedef struct _OBJECT_TYPES_INFORMATION ULONG NumberOfTypes; } OBJECT_TYPES_INFORMATION, *POBJECT_TYPES_INFORMATION; -typedef struct _PROCESS_BASIC_INFORMATION_WOW64 +typedef struct _PROCESS_BASIC_INFORMATION_INTERNAL { - PVOID Reserved1[2]; - // MinGW32 screws us with a sizeof(PVOID64) of 4 instead of 8 => Use ULONGLONG instead - ULONGLONG PebBaseAddress; - PVOID Reserved2[4]; - ULONG_PTR UniqueProcessId[2]; - PVOID Reserved3[2]; -} PROCESS_BASIC_INFORMATION_WOW64; + NTSTATUS ExitStatus; + ULONG_PTR PebBaseAddress; + ULONG_PTR AffinityMask; + KPRIORITY BasePriority; + ULONG_PTR UniqueProcessId; + ULONG_PTR InheritedFromUniqueProcessId; +} PROCESS_BASIC_INFORMATION_INTERNAL; typedef struct _UNICODE_STRING_WOW64 { @@ -305,7 +305,7 @@ typedef struct { uint64_t pid; // PID of the process uint8_t access_rights; // rwx access rights uint32_t seen_on_pass; // nPass value of when this process was last detected - char cmdline[MAX_PATH]; // Command line for the process + char cmdline[2 * KB]; // Command line for the process } ProcessEntry; typedef struct { diff --git a/src/parser.c b/src/parser.c index 274a9705..75079671 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1304,6 +1304,42 @@ char* replace_char(const char* src, const char c, const char* rep) return res; } +/* + * Replace all characters from string 'str' that are present in the array of chars 'rem' + * to the 'rep' character. + */ +void filter_chars(char* str, const char* rem, const char rep) +{ + char *p, *q; + + if (str == NULL || rem == NULL) + return; + for (p = str; *p != '\0'; p++) { + for (q = (char*)rem; *q != '\0'; q++) + if (*p == *q) + *p = rep; + } +} + +/* + * Trim all leadings and trailing whitespaces + */ +void trim(char* str) +{ + size_t l; + char* p; + + if (str == NULL) + return; + l = strlen(str); + if (l < 1) + return; + while (isspace(str[l - 1])) + str[--l] = '\0'; + for (p = str; *p != '\0' && isspace(*p); p++, l--); + memmove(str, p, l + 1); +} + /* * Remove all instances of substring 'sub' form string 'src. * The returned string is allocated and must be freed by the caller. @@ -1542,7 +1578,7 @@ int sanitize_label(char* label) // Remove all leading '-' for (i = 0; i < len && label[i] == '-'; i++); if (i != 0) - memmove(label, &label[i], len - i); + memmove(label, &label[i], len - i + 1); len = strlen(label); if (len <= 1) return -1; @@ -1567,7 +1603,7 @@ int sanitize_label(char* label) for (i = 0; i < ARRAYSIZE(remove); i++) { s = strstr(label, remove[i]); if (s != NULL) - strcpy(s, &s[strlen(remove[i])]); + memmove(s, &s[strlen(remove[i])], strlen(&s[strlen(remove[i])]) + 1); } return 0; @@ -1588,9 +1624,12 @@ sbat_entry_t* GetSbatEntries(char* sbatlevel) return NULL; num_entries = 1; - for (i = 0; sbatlevel[i] != '\0'; i++) + for (i = 0; sbatlevel[i] != '\0'; i++) { if (sbatlevel[i] == '\n') num_entries++; + if (sbatlevel[i] == '\r') + sbatlevel[i] = '\n'; + } sbat_list = calloc(num_entries + 1, sizeof(sbat_entry_t)); if (sbat_list == NULL) @@ -1643,7 +1682,6 @@ sbat_entry_t* GetSbatEntries(char* sbatlevel) * Parse a list of SHA-1 certificate hexascii thumbprints. * List must be freed by the caller. */ - thumbprint_list_t* GetThumbprintEntries(char* thumbprints_txt) { uint32_t i, j, num_entries; @@ -1657,7 +1695,7 @@ thumbprint_list_t* GetThumbprintEntries(char* thumbprints_txt) if (thumbprints_txt[i] == '\n') num_entries++; - thumbprints = malloc(sizeof(thumbprint_list_t) + num_entries * SHA1_HASHSIZE); + thumbprints = calloc(sizeof(thumbprint_list_t) + num_entries * SHA1_HASHSIZE, 1); if (thumbprints == NULL) return NULL; thumbprints->count = 0; diff --git a/src/pki.c b/src/pki.c index fe923c15..bc39c703 100644 --- a/src/pki.c +++ b/src/pki.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * PKI functions (code signing, etc.) - * Copyright © 2015-2024 Pete Batard + * Copyright © 2015-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -260,8 +260,8 @@ const char* WinPKIErrorString(void) } } -// Mostly from https://support.microsoft.com/en-us/kb/323809 -char* GetSignatureName(const char* path, const char* country_code, BOOL bSilent) +// Mostly from https://support.microsoft.com/kb/323809 +char* GetSignatureName(const char* path, const char* country_code, uint8_t* thumbprint, BOOL bSilent) { static char szSubjectName[128]; char szCountry[3] = "__"; @@ -340,6 +340,16 @@ char* GetSignatureName(const char* path, const char* country_code, BOOL bSilent) goto out; } + // Get the thumbprint if requested + if (thumbprint != NULL) { + dwSize = SHA1_HASHSIZE; + if (!CryptHashCertificate(0, CALG_SHA1, 0, pCertContext->pbCertEncoded, + pCertContext->cbCertEncoded, thumbprint, &dwSize)) { + uprintf("PKI: Failed to compute the thumbprint: %s", WinPKIErrorString()); + goto out; + } + } + // If a country code is provided, validate that the certificate we have is for the same country if (country_code != NULL) { dwSize = CertGetNameStringA(pCertContext, CERT_NAME_ATTR_TYPE, 0, szOID_COUNTRY_NAME, @@ -445,7 +455,8 @@ int GetIssuerCertificateInfo(uint8_t* cert, cert_info_t* info) // Build a certificate chain to get the issuer (CA) certificate. memset(&chainPara, 0, sizeof(chainPara)); chainPara.cbSize = sizeof(CERT_CHAIN_PARA); - if (!CertGetCertificateChain(NULL, pCertContext[0], NULL, hStore, &chainPara, 0, NULL, &pChainContext)) { + if (!CertGetCertificateChain(NULL, pCertContext[0], NULL, hStore, &chainPara, + CERT_CHAIN_CACHE_ONLY_URL_RETRIEVAL | CERT_CHAIN_REVOCATION_CHECK_CACHE_ONLY, NULL, &pChainContext)) { uprintf("PKI: Failed to build certificate chain. Error code: %s", WinPKIErrorString()); goto out; } @@ -696,7 +707,7 @@ uint64_t GetSignatureTimeStamp(const char* path) uprintf("Note: '%s' has nested timestamp %s", (path==NULL)?mpath:path, TimestampToHumanReadable(nested_timestamp)); if ((timestamp != 0ULL) && (nested_timestamp != 0ULL)) { if (_abs64(nested_timestamp - timestamp) > 100) { - uprintf("PKI: Signature timestamp and nested timestamp differ by more than a minute. " + uprintf("PKI: Signature timestamp (%lld) and nested timestamp (%lld) differ by more than a minute. " "This could indicate something very nasty...", timestamp, nested_timestamp); timestamp = 0ULL; } @@ -728,11 +739,11 @@ LONG ValidateSignature(HWND hDlg, const char* path) // Check the signature name. Make it specific enough (i.e. don't simply check for "Akeo") // so that, besides hacking our server, it'll place an extra hurdle on any malicious entity // into also fooling a C.A. to issue a certificate that passes our test. - signature_name = GetSignatureName(path, cert_country, (hDlg == INVALID_HANDLE_VALUE)); + signature_name = GetSignatureName(path, cert_country, NULL, (hDlg == INVALID_HANDLE_VALUE)); if (signature_name == NULL) { uprintf("PKI: Could not get signature name"); if (hDlg != INVALID_HANDLE_VALUE) - MessageBoxExU(hDlg, lmprintf(MSG_284), lmprintf(MSG_283), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_283), lmprintf(MSG_284)); return TRUST_E_NOSIGNATURE; } for (i = 0; i < ARRAYSIZE(cert_name); i++) { @@ -741,9 +752,8 @@ LONG ValidateSignature(HWND hDlg, const char* path) } if (i >= ARRAYSIZE(cert_name)) { uprintf("PKI: Signature '%s' is unexpected...", signature_name); - if ((hDlg == INVALID_HANDLE_VALUE) || (MessageBoxExU(hDlg, - lmprintf(MSG_285, signature_name), lmprintf(MSG_283), - MB_YESNO | MB_ICONWARNING | MB_IS_RTL, selected_langid) != IDYES)) + if ((hDlg == INVALID_HANDLE_VALUE) || (Notification(MB_YESNO | MB_ICONWARNING, + lmprintf(MSG_283), lmprintf(MSG_285, signature_name)) != IDYES)) return TRUST_E_EXPLICIT_DISTRUST; } @@ -792,18 +802,18 @@ LONG ValidateSignature(HWND hDlg, const char* path) } } if ((r != ERROR_SUCCESS) && (force_update < 2)) - MessageBoxExU(hDlg, lmprintf(MSG_300), lmprintf(MSG_299), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_299), lmprintf(MSG_300)); break; case TRUST_E_NOSIGNATURE: // Should already have been reported, but since we have a custom message for it... uprintf("PKI: File does not appear to be signed: %s", WinPKIErrorString()); if (hDlg != INVALID_HANDLE_VALUE) - MessageBoxExU(hDlg, lmprintf(MSG_284), lmprintf(MSG_283), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_283), lmprintf(MSG_284)); break; default: uprintf("PKI: Failed to validate signature: %s", WinPKIErrorString()); if (hDlg != INVALID_HANDLE_VALUE) - MessageBoxExU(hDlg, lmprintf(MSG_240), lmprintf(MSG_283), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_283), lmprintf(MSG_240)); break; } @@ -890,120 +900,3 @@ out: CryptReleaseContext(hProv, 0); return r; } - -// The following SkuSiPolicy.p7b parsing code is derived from: -// https://gist.github.com/mattifestation/92e545bf1ee5b68eeb71d254cec2f78e -// by Matthew Graeber, with contributions by James Forshaw. -BOOL ParseSKUSiPolicy(void) -{ - char path[MAX_PATH]; - wchar_t* wpath = NULL; - BOOL r = FALSE; - DWORD i, dwEncoding, dwContentType, dwFormatType; - DWORD dwPolicySize = 0, dwBaseIndex = 0, dwSizeCount; - HCRYPTMSG hMsg = NULL; - CRYPT_DATA_BLOB pkcsData = { 0 }; - DWORD* pdwEkuRules; - BYTE* pbRule; - CIHeader* Header; - CIFileRuleHeader* FileRuleHeader; - CIFileRuleData* FileRuleData; - - pe256ssp_size = 0; - safe_free(pe256ssp); - // Must use sysnative for WOW - static_sprintf(path, "%s\\SecureBootUpdates\\SKUSiPolicy.p7b", sysnative_dir); - wpath = utf8_to_wchar(path); - if (wpath == NULL) - goto out; - - r = CryptQueryObject(CERT_QUERY_OBJECT_FILE, wpath, CERT_QUERY_CONTENT_FLAG_ALL, - CERT_QUERY_FORMAT_FLAG_ALL, 0, &dwEncoding, &dwContentType, &dwFormatType, NULL, - &hMsg, NULL); - if (!r || dwContentType != CERT_QUERY_CONTENT_PKCS7_SIGNED) - goto out; - - r = CryptMsgGetParam(hMsg, CMSG_CONTENT_PARAM, 0, NULL, &pkcsData.cbData); - if (!r || pkcsData.cbData == 0) { - uprintf("ParseSKUSiPolicy: Failed to retreive CMSG_CONTENT_PARAM size: %s", WindowsErrorString()); - goto out; - } - pkcsData.pbData = malloc(pkcsData.cbData); - if (pkcsData.pbData == NULL) - goto out; - r = CryptMsgGetParam(hMsg, CMSG_CONTENT_PARAM, 0, pkcsData.pbData, &pkcsData.cbData); - if (!r) { - uprintf("ParseSKUSiPolicy: Failed to retreive CMSG_CONTENT_PARAM: %s", WindowsErrorString()); - goto out; - } - - // Now process the actual Security Policy content - if (pkcsData.pbData[0] == 4) { - dwPolicySize = pkcsData.pbData[1]; - dwBaseIndex = 2; - if ((dwPolicySize & 0x80) == 0x80) { - dwSizeCount = dwPolicySize & 0x7F; - dwBaseIndex += dwSizeCount; - dwPolicySize = 0; - for (i = 0; i < dwSizeCount; i++) { - dwPolicySize = dwPolicySize << 8; - dwPolicySize = dwPolicySize | pkcsData.pbData[2 + i]; - } - } - } - - // Sanity checks - Header = (CIHeader*)&pkcsData.pbData[dwBaseIndex]; - if (Header->HeaderLength + sizeof(uint32_t) != sizeof(CIHeader)) { - uprintf("ParseSKUSiPolicy: Unexpected Code Integrity Header size (0x%02x)", Header->HeaderLength); - goto out; - } - if (!CompareGUID(&Header->PolicyTypeGUID, &SKU_CODE_INTEGRITY_POLICY)) { - uprintf("ParseSKUSiPolicy: Unexpected Policy Type GUID %s", GuidToString(&Header->PolicyTypeGUID, TRUE)); - goto out; - } - - // Skip the EKU Rules - pdwEkuRules = (DWORD*) &pkcsData.pbData[dwBaseIndex + sizeof(CIHeader)]; - for (i = 0; i < Header->EKURuleEntryCount; i++) - pdwEkuRules = &pdwEkuRules[(*pdwEkuRules + (2 * sizeof(DWORD) - 1)) / sizeof(DWORD)]; - - // Process the Files Rules - pbRule = (BYTE*)pdwEkuRules; - pe256ssp = malloc(Header->FileRuleEntryCount * PE256_HASHSIZE); - if (pe256ssp == NULL) - goto out; - for (i = 0; i < Header->FileRuleEntryCount; i++) { - FileRuleHeader = (CIFileRuleHeader*)pbRule; - pbRule = &pbRule[sizeof(CIFileRuleHeader)]; - if (FileRuleHeader->FileNameLength != 0) { -// uprintf("%S", FileRuleHeader->FileName); - pbRule = &pbRule[((FileRuleHeader->FileNameLength + sizeof(DWORD) - 1) / sizeof(DWORD)) * sizeof(DWORD)]; - } - FileRuleData = (CIFileRuleData*)pbRule; - if (FileRuleData->HashLength > 0x80) { - uprintf("ParseSKUSiPolicy: Unexpected hash length for entry %d (0x%02x)", i, FileRuleData->HashLength); - // We're probably screwed, so bail out - break; - } - // We are only interested in 'DENY' type with PE256 hashes - if (FileRuleHeader->Type == CI_DENY && FileRuleData->HashLength == PE256_HASHSIZE) { - // Microsoft has the bad habit of duplicating entries - only add a hash if it's different from previous entry - if ((pe256ssp_size == 0) || - (memcmp(&pe256ssp[(pe256ssp_size - 1) * PE256_HASHSIZE], FileRuleData->Hash, PE256_HASHSIZE) != 0)) { - memcpy(&pe256ssp[pe256ssp_size * PE256_HASHSIZE], FileRuleData->Hash, PE256_HASHSIZE); - pe256ssp_size++; - } - } - pbRule = &pbRule[sizeof(CIFileRuleData) + ((FileRuleData->HashLength + sizeof(DWORD) - 1) / sizeof(DWORD)) * sizeof(DWORD)]; - } - - r = TRUE; - -out: - if (hMsg != NULL) - CryptMsgClose(hMsg); - free(pkcsData.pbData); - free(wpath); - return r; -} diff --git a/src/process.c b/src/process.c index 6d3b8338..aa9491ee 100644 --- a/src/process.c +++ b/src/process.c @@ -4,7 +4,7 @@ * * Modified from System Informer (a.k.a. Process Hacker): * https://github.com/winsiderss/systeminformer - * Copyright © 2017-2024 Pete Batard + * Copyright © 2017-2026 Pete Batard * Copyright © 2017 dmex * Copyright © 2009-2016 wj32 * @@ -275,6 +275,31 @@ NTSTATUS PhQueryProcessesUsingVolumeOrFile(HANDLE VolumeOrFileHandle, return status; } +/** + * Return the parent PID of a process + * + * \param pid The PID of the process to look up the parent PID. + * + * \return The parent PID or 0 on error. + */ +DWORD GetPPID(DWORD pid) +{ + ULONG_PTR ppid = 0; + HANDLE hProcess = NULL; + PROCESS_BASIC_INFORMATION_INTERNAL pbi = { 0 }; + + hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, pid); + if (hProcess == NULL) + goto out; + + if (NT_SUCCESS(NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi, sizeof(pbi), NULL))) + ppid = pbi.InheritedFromUniqueProcessId; + +out: + safe_closehandle(hProcess); + return (DWORD)ppid; +} + /** * Query the full commandline that was used to create a process. * This can be helpful to differentiate between service instances (svchost.exe). @@ -293,6 +318,7 @@ static PWSTR GetProcessCommandLine(HANDLE hProcess) NTSTATUS status = STATUS_SUCCESS; SYSTEM_INFO si; PBYTE peb = NULL, pp = NULL; + PROCESS_BASIC_INFORMATION_INTERNAL pbi = { 0 }; // Determine if 64 or 32-bit processor GetNativeSystemInfo(&si); @@ -315,14 +341,13 @@ static PWSTR GetProcessCommandLine(HANDLE hProcess) IsWow64Process(GetCurrentProcess(), &wow); if (wow) { // 32-bit process running on a 64-bit OS - PROCESS_BASIC_INFORMATION_WOW64 pbi = { 0 }; ULONGLONG params; UNICODE_STRING_WOW64* ucmdline; PF_INIT_OR_OUT(NtWow64QueryInformationProcess64, NtDll); PF_INIT_OR_OUT(NtWow64ReadVirtualMemory64, NtDll); - status = pfNtWow64QueryInformationProcess64(hProcess, 0, &pbi, sizeof(pbi), NULL); + status = pfNtWow64QueryInformationProcess64(hProcess, ProcessBasicInformation, &pbi, sizeof(pbi), NULL); if (!NT_SUCCESS(status)) goto out; @@ -347,16 +372,15 @@ static PWSTR GetProcessCommandLine(HANDLE hProcess) } } else { // 32-bit process on a 32-bit OS, or 64-bit process on a 64-bit OS - PROCESS_BASIC_INFORMATION pbi = { 0 }; PBYTE* params; UNICODE_STRING* ucmdline; - status = NtQueryInformationProcess(hProcess, 0, &pbi, sizeof(pbi), NULL); + status = NtQueryInformationProcess(hProcess, ProcessBasicInformation, &pbi, sizeof(pbi), NULL); if (!NT_SUCCESS(status)) goto out; // Read PEB - if (!ReadProcessMemory(hProcess, pbi.PebBaseAddress, peb, pp_offset + 8, NULL)) + if (!ReadProcessMemory(hProcess, (LPCVOID)pbi.PebBaseAddress, peb, pp_offset + 8, NULL)) goto out; // Read Process Parameters @@ -367,7 +391,7 @@ static PWSTR GetProcessCommandLine(HANDLE hProcess) ucmdline = (UNICODE_STRING*)(pp + cmd_offset); // In the absolute, someone could craft a process with dodgy attributes to try to cause an overflow // coverity[cast_overflow] - ucmdline->Length = min(ucmdline->Length, (USHORT)512); + ucmdline->Length = min(ucmdline->Length, (USHORT)2 * KB); wcmdline = (PWSTR)calloc(ucmdline->Length + 1, sizeof(WCHAR)); if (!ReadProcessMemory(hProcess, ucmdline->Buffer, wcmdline, ucmdline->Length, NULL)) { safe_free(wcmdline); @@ -410,7 +434,7 @@ static DWORD WINAPI SearchProcessThread(LPVOID param) DWORD size; wchar_t wexe_path[MAX_PATH], *wcmdline; uint64_t start_time; - char cmdline[MAX_PATH] = { 0 }, tmp[64]; + char cmdline[2 * KB] = { 0 }, tmp[64]; int cur_pid, j, nHandles = 0; // Initialize the blocking process struct @@ -449,7 +473,7 @@ static DWORD WINAPI SearchProcessThread(LPVOID param) // Work on our own copy of the handle names so we don't have to hold the // mutex for string comparison. Update only if the version has changed. if (blocking_process.nVersion[0] != blocking_process.nVersion[1]) { - if_not_assert(blocking_process.wHandleName != NULL && blocking_process.nHandles != 0) { + if_assert_fails(blocking_process.wHandleName != NULL && blocking_process.nHandles != 0) { ReleaseMutex(hLock); goto out; } @@ -697,7 +721,7 @@ static DWORD WINAPI SearchProcessThread(LPVOID param) out: if (!bInitSuccess) - uprintf("Warning: Could not start process handle enumerator!"); + uprintf("WARNING: Could not start process handle enumerator!"); if (wHandleName != NULL) { for (j = 0; j < nHandles; j++) @@ -807,11 +831,12 @@ BOOL SetProcessSearch(DWORD DeviceNum) wHandleName[nHandles++] = utf8_to_wchar(DevPath); free(PhysicalPath); // Logical drive(s) handle name(s) - GetDriveLetters(DeviceNum, drive_letter); - for (i = 0; nHandles < MAX_NUM_HANDLES && drive_letter[i]; i++) { - drive_name[0] = drive_letter[i]; - if (QueryDosDeviceA(drive_name, DevPath, sizeof(DevPath)) != 0) - wHandleName[nHandles++] = utf8_to_wchar(DevPath); + if (GetDriveLetters(DeviceNum, drive_letter)) { + for (i = 0; nHandles < MAX_NUM_HANDLES && drive_letter[i]; i++) { + drive_name[0] = drive_letter[i]; + if (QueryDosDeviceA(drive_name, DevPath, sizeof(DevPath)) != 0) + wHandleName[nHandles++] = utf8_to_wchar(DevPath); + } } if (WaitForSingleObject(blocking_process.hLock, SEARCH_PROCESS_LOCK_TIMEOUT) != WAIT_OBJECT_0) { uprintf("Could not obtain process search lock"); @@ -871,10 +896,11 @@ static BOOL IsProcessRunning(uint64_t pid) BYTE GetProcessSearch(uint32_t timeout, uint8_t access_mask, BOOL bIgnoreStaleProcesses) { const char* access_rights_str[8] = { "n", "r", "w", "rw", "x", "rx", "wx", "rwx" }; - char tmp[MAX_PATH]; + char tmp[2 * KB]; int i, j; uint32_t elapsed = 0; BYTE returned_mask = 0; +// DWORD pid, rufus_pid = GetCurrentProcessId(); StrArrayClear(&BlockingProcessList); if (hSearchProcessThread == NULL) { @@ -882,7 +908,7 @@ BYTE GetProcessSearch(uint32_t timeout, uint8_t access_mask, BOOL bIgnoreStalePr return 0; } - if_not_assert(blocking_process.hLock != NULL) + if_assert_fails(blocking_process.hLock != NULL) return 0; retry: @@ -911,6 +937,15 @@ retry: continue; if (bIgnoreStaleProcesses && !IsProcessRunning(blocking_process.Process[i].pid)) continue; +// for (pid = (DWORD)blocking_process.Process[i].pid; pid != 0 && pid != rufus_pid; pid = GetPPID(pid)); +// if (pid == rufus_pid) +// continue; + // Ignore read-only access from explorer.exe, as it's usually no big deal + if (blocking_process.Process[i].access_rights == 0x1 && + // NB: We are not bothering with nonstandard system drives here + _stricmp(blocking_process.Process[i].cmdline, "C:\\Windows\\explorer.exe") == 0) { + continue; + } returned_mask |= blocking_process.Process[i].access_rights; static_sprintf(tmp, "● [%llu] %s (%s)", blocking_process.Process[i].pid, blocking_process.Process[i].cmdline, access_rights_str[blocking_process.Process[i].access_rights & 0x7]); diff --git a/src/re.c b/src/re.c deleted file mode 100644 index 027fea7c..00000000 --- a/src/re.c +++ /dev/null @@ -1,532 +0,0 @@ -/* - * - * Mini regex-module inspired by Rob Pike's regex code described in: - * - * http://www.cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html - * - * - * - * Supports: - * --------- - * '.' Dot, matches any character - * '^' Start anchor, matches beginning of string - * '$' End anchor, matches end of string - * '*' Asterisk, match zero or more (greedy) - * '+' Plus, match one or more (greedy) - * '?' Question, match zero or one (non-greedy) - * '[abc]' Character class, match if one of {'a', 'b', 'c'} - * '[^abc]' Inverted class, match if NOT one of {'a', 'b', 'c'} -- NOTE: feature is currently broken! - * '[a-zA-Z]' Character ranges, the character set of the ranges { a-z | A-Z } - * '\s' Whitespace, \t \f \r \n \v and spaces - * '\S' Non-whitespace - * '\w' Alphanumeric, [a-zA-Z0-9_] - * '\W' Non-alphanumeric - * '\d' Digits, [0-9] - * '\D' Non-digits - * - * - */ - - - -#include "re.h" -#include -#include - -/* Definitions: */ - -#define MAX_REGEXP_OBJECTS 30 /* Max number of regex symbols in expression. */ -#define MAX_CHAR_CLASS_LEN 40 /* Max length of character-class buffer in. */ - -/* ALPHA may be defined for Rufus ALPHA releases => undefine it */ -#ifdef ALPHA -#undef ALPHA -#endif - -enum { UNUSED, DOT, BEGIN, END, QUESTIONMARK, STAR, PLUS, CHAR, CHAR_CLASS, INV_CHAR_CLASS, DIGIT, NOT_DIGIT, ALPHA, NOT_ALPHA, WHITESPACE, NOT_WHITESPACE, /* BRANCH */ }; - -typedef struct regex_t -{ - unsigned char type; /* CHAR, STAR, etc. */ - union - { - unsigned char ch; /* the character itself */ - unsigned char* ccl; /* OR a pointer to characters in class */ - } u; -} regex_t; - - - -/* Private function declarations: */ -static int matchpattern(regex_t* pattern, const char* text, int* matchlength); -static int matchcharclass(char c, const char* str); -static int matchstar(regex_t p, regex_t* pattern, const char* text, int* matchlength); -static int matchplus(regex_t p, regex_t* pattern, const char* text, int* matchlength); -static int matchone(regex_t p, char c); -static int matchdigit(char c); -static int matchalpha(char c); -static int matchwhitespace(char c); -static int matchmetachar(char c, const char* str); -static int matchrange(char c, const char* str); -static int matchdot(char c); -static int ismetachar(char c); - - - -/* Public functions: */ -int re_match(const char* pattern, const char* text, int* matchlength) -{ - return re_matchp(re_compile(pattern), text, matchlength); -} - -int re_matchp(re_t pattern, const char* text, int* matchlength) -{ - *matchlength = 0; - if (pattern != 0) - { - if (pattern[0].type == BEGIN) - { - return ((matchpattern(&pattern[1], text, matchlength)) ? 0 : -1); - } - else - { - int idx = -1; - - do - { - idx += 1; - - if (matchpattern(pattern, text, matchlength)) - { - if (text[0] == '\0') - return -1; - - return idx; - } - } - while (*text++ != '\0'); - } - } - return -1; -} - -re_t re_compile(const char* pattern) -{ - /* The sizes of the two static arrays below substantiates the static RAM usage of this module. - MAX_REGEXP_OBJECTS is the max number of symbols in the expression. - MAX_CHAR_CLASS_LEN determines the size of buffer for chars in all char-classes in the expression. */ - static regex_t re_compiled[MAX_REGEXP_OBJECTS]; - static unsigned char ccl_buf[MAX_CHAR_CLASS_LEN]; - int ccl_bufidx = 1; - - char c; /* current char in pattern */ - int i = 0; /* index into pattern */ - int j = 0; /* index into re_compiled */ - - while (pattern[i] != '\0' && (j+1 < MAX_REGEXP_OBJECTS)) - { - c = pattern[i]; - - switch (c) - { - /* Meta-characters: */ - case '^': { re_compiled[j].type = BEGIN; } break; - case '$': { re_compiled[j].type = END; } break; - case '.': { re_compiled[j].type = DOT; } break; - case '*': { re_compiled[j].type = STAR; } break; - case '+': { re_compiled[j].type = PLUS; } break; - case '?': { re_compiled[j].type = QUESTIONMARK; } break; -/* case '|': { re_compiled[j].type = BRANCH; } break; <-- not working properly */ - - /* Escaped character-classes (\s \w ...): */ - case '\\': - { - if (pattern[i+1] != '\0') - { - /* Skip the escape-char '\\' */ - i += 1; - /* ... and check the next */ - switch (pattern[i]) - { - /* Meta-character: */ - case 'd': { re_compiled[j].type = DIGIT; } break; - case 'D': { re_compiled[j].type = NOT_DIGIT; } break; - case 'w': { re_compiled[j].type = ALPHA; } break; - case 'W': { re_compiled[j].type = NOT_ALPHA; } break; - case 's': { re_compiled[j].type = WHITESPACE; } break; - case 'S': { re_compiled[j].type = NOT_WHITESPACE; } break; - - /* Escaped character, e.g. '.' or '$' */ - default: - { - re_compiled[j].type = CHAR; - re_compiled[j].u.ch = pattern[i]; - } break; - } - } - /* '\\' as last char in pattern -> invalid regular expression. */ -/* - else - { - re_compiled[j].type = CHAR; - re_compiled[j].ch = pattern[i]; - } -*/ - } break; - - /* Character class: */ - case '[': - { - /* Remember where the char-buffer starts. */ - int buf_begin = ccl_bufidx; - - /* Look-ahead to determine if negated */ - if (pattern[i+1] == '^') - { - re_compiled[j].type = INV_CHAR_CLASS; - i += 1; /* Increment i to avoid including '^' in the char-buffer */ - if (pattern[i+1] == 0) /* incomplete pattern, missing non-zero char after '^' */ - { - return 0; - } - } - else - { - re_compiled[j].type = CHAR_CLASS; - } - - /* Copy characters inside [..] to buffer */ - while ( (pattern[++i] != ']') - && (pattern[i] != '\0')) /* Missing ] */ - { - if (pattern[i] == '\\') - { - if (ccl_bufidx >= MAX_CHAR_CLASS_LEN - 1) - { - //fputs("exceeded internal buffer!\n", stderr); - return 0; - } - if (pattern[i+1] == 0) /* incomplete pattern, missing non-zero char after '\\' */ - { - return 0; - } - ccl_buf[ccl_bufidx++] = pattern[i++]; - } - else if (ccl_bufidx >= MAX_CHAR_CLASS_LEN) - { - //fputs("exceeded internal buffer!\n", stderr); - return 0; - } - ccl_buf[ccl_bufidx++] = pattern[i]; - } - if (ccl_bufidx >= MAX_CHAR_CLASS_LEN) - { - /* Catches cases such as [00000000000000000000000000000000000000][ */ - //fputs("exceeded internal buffer!\n", stderr); - return 0; - } - /* Null-terminate string end */ - ccl_buf[ccl_bufidx++] = 0; - re_compiled[j].u.ccl = &ccl_buf[buf_begin]; - } break; - - /* Other characters: */ - default: - { - re_compiled[j].type = CHAR; - re_compiled[j].u.ch = c; - } break; - } - /* no buffer-out-of-bounds access on invalid patterns - see https://github.com/kokke/tiny-regex-c/commit/1a279e04014b70b0695fba559a7c05d55e6ee90b */ - if (pattern[i] == 0) - { - return 0; - } - - i += 1; - j += 1; - } - /* 'UNUSED' is a sentinel used to indicate end-of-pattern */ - re_compiled[j].type = UNUSED; - - return (re_t) re_compiled; -} - -void re_print(regex_t* pattern) -{ - const char* types[] = { "UNUSED", "DOT", "BEGIN", "END", "QUESTIONMARK", "STAR", "PLUS", "CHAR", "CHAR_CLASS", "INV_CHAR_CLASS", "DIGIT", "NOT_DIGIT", "ALPHA", "NOT_ALPHA", "WHITESPACE", "NOT_WHITESPACE", "BRANCH" }; - - int i; - int j; - char c; - for (i = 0; i < MAX_REGEXP_OBJECTS; ++i) - { - if (pattern[i].type == UNUSED) - { - break; - } - - printf("type: %s", types[pattern[i].type]); - if (pattern[i].type == CHAR_CLASS || pattern[i].type == INV_CHAR_CLASS) - { - printf(" ["); - for (j = 0; j < MAX_CHAR_CLASS_LEN; ++j) - { - c = pattern[i].u.ccl[j]; - if ((c == '\0') || (c == ']')) - { - break; - } - printf("%c", c); - } - printf("]"); - } - else if (pattern[i].type == CHAR) - { - printf(" '%c'", pattern[i].u.ch); - } - printf("\n"); - } -} - - - -/* Private functions: */ -static int matchdigit(char c) -{ - return isdigit(c); -} -static int matchalpha(char c) -{ - return isalpha(c); -} -static int matchwhitespace(char c) -{ - return isspace(c); -} -static int matchalphanum(char c) -{ - return ((c == '_') || matchalpha(c) || matchdigit(c)); -} -static int matchrange(char c, const char* str) -{ - return ( (c != '-') - && (str[0] != '\0') - && (str[0] != '-') - && (str[1] == '-') - && (str[2] != '\0') - && ( (c >= str[0]) - && (c <= str[2]))); -} -static int matchdot(char c) -{ -#if defined(RE_DOT_MATCHES_NEWLINE) && (RE_DOT_MATCHES_NEWLINE == 1) - (void)c; - return 1; -#else - return c != '\n' && c != '\r'; -#endif -} -static int ismetachar(char c) -{ - return ((c == 's') || (c == 'S') || (c == 'w') || (c == 'W') || (c == 'd') || (c == 'D')); -} - -static int matchmetachar(char c, const char* str) -{ - switch (str[0]) - { - case 'd': return matchdigit(c); - case 'D': return !matchdigit(c); - case 'w': return matchalphanum(c); - case 'W': return !matchalphanum(c); - case 's': return matchwhitespace(c); - case 'S': return !matchwhitespace(c); - default: return (c == str[0]); - } -} - -static int matchcharclass(char c, const char* str) -{ - do - { - if (matchrange(c, str)) - { - return 1; - } - else if (str[0] == '\\') - { - /* Escape-char: increment str-ptr and match on next char */ - str += 1; - if (matchmetachar(c, str)) - { - return 1; - } - else if ((c == str[0]) && !ismetachar(c)) - { - return 1; - } - } - else if (c == str[0]) - { - if (c == '-') - { - return ((str[-1] == '\0') || (str[1] == '\0')); - } - else - { - return 1; - } - } - } - while (*str++ != '\0'); - - return 0; -} - -static int matchone(regex_t p, char c) -{ - switch (p.type) - { - case DOT: return matchdot(c); - case CHAR_CLASS: return matchcharclass(c, (const char*)p.u.ccl); - case INV_CHAR_CLASS: return !matchcharclass(c, (const char*)p.u.ccl); - case DIGIT: return matchdigit(c); - case NOT_DIGIT: return !matchdigit(c); - case ALPHA: return matchalphanum(c); - case NOT_ALPHA: return !matchalphanum(c); - case WHITESPACE: return matchwhitespace(c); - case NOT_WHITESPACE: return !matchwhitespace(c); - default: return (p.u.ch == c); - } -} - -static int matchstar(regex_t p, regex_t* pattern, const char* text, int* matchlength) -{ - int prelen = *matchlength; - const char* prepoint = text; - while ((text[0] != '\0') && matchone(p, *text)) - { - text++; - (*matchlength)++; - } - while (text >= prepoint) - { - if (matchpattern(pattern, text--, matchlength)) - return 1; - (*matchlength)--; - } - - *matchlength = prelen; - return 0; -} - -static int matchplus(regex_t p, regex_t* pattern, const char* text, int* matchlength) -{ - const char* prepoint = text; - while ((text[0] != '\0') && matchone(p, *text)) - { - text++; - (*matchlength)++; - } - while (text > prepoint) - { - if (matchpattern(pattern, text--, matchlength)) - return 1; - (*matchlength)--; - } - - return 0; -} - -static int matchquestion(regex_t p, regex_t* pattern, const char* text, int* matchlength) -{ - if (p.type == UNUSED) - return 1; - if (matchpattern(pattern, text, matchlength)) - return 1; - if (*text && matchone(p, *text++)) - { - if (matchpattern(pattern, text, matchlength)) - { - (*matchlength)++; - return 1; - } - } - return 0; -} - - -#if 0 - -/* Recursive matching */ -static int matchpattern(regex_t* pattern, const char* text, int *matchlength) -{ - int pre = *matchlength; - if ((pattern[0].type == UNUSED) || (pattern[1].type == QUESTIONMARK)) - { - return matchquestion(pattern[1], &pattern[2], text, matchlength); - } - else if (pattern[1].type == STAR) - { - return matchstar(pattern[0], &pattern[2], text, matchlength); - } - else if (pattern[1].type == PLUS) - { - return matchplus(pattern[0], &pattern[2], text, matchlength); - } - else if ((pattern[0].type == END) && pattern[1].type == UNUSED) - { - return text[0] == '\0'; - } - else if ((text[0] != '\0') && matchone(pattern[0], text[0])) - { - (*matchlength)++; - return matchpattern(&pattern[1], text+1); - } - else - { - *matchlength = pre; - return 0; - } -} - -#else - -/* Iterative matching */ -static int matchpattern(regex_t* pattern, const char* text, int* matchlength) -{ - int pre = *matchlength; - do - { - if ((pattern[0].type == UNUSED) || (pattern[1].type == QUESTIONMARK)) - { - return matchquestion(pattern[0], &pattern[2], text, matchlength); - } - else if (pattern[1].type == STAR) - { - return matchstar(pattern[0], &pattern[2], text, matchlength); - } - else if (pattern[1].type == PLUS) - { - return matchplus(pattern[0], &pattern[2], text, matchlength); - } - else if ((pattern[0].type == END) && pattern[1].type == UNUSED) - { - return (text[0] == '\0'); - } -/* Branching is not working properly - else if (pattern[1].type == BRANCH) - { - return (matchpattern(pattern, text) || matchpattern(&pattern[2], text)); - } -*/ - (*matchlength)++; - } - while ((text[0] != '\0') && matchone(*pattern++, *text++)); - - *matchlength = pre; - return 0; -} - -#endif diff --git a/src/re.h b/src/re.h deleted file mode 100644 index 69facc68..00000000 --- a/src/re.h +++ /dev/null @@ -1,65 +0,0 @@ -/* - * - * Mini regex-module inspired by Rob Pike's regex code described in: - * - * http://www.cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html - * - * - * - * Supports: - * --------- - * '.' Dot, matches any character - * '^' Start anchor, matches beginning of string - * '$' End anchor, matches end of string - * '*' Asterisk, match zero or more (greedy) - * '+' Plus, match one or more (greedy) - * '?' Question, match zero or one (non-greedy) - * '[abc]' Character class, match if one of {'a', 'b', 'c'} - * '[^abc]' Inverted class, match if NOT one of {'a', 'b', 'c'} -- NOTE: feature is currently broken! - * '[a-zA-Z]' Character ranges, the character set of the ranges { a-z | A-Z } - * '\s' Whitespace, \t \f \r \n \v and spaces - * '\S' Non-whitespace - * '\w' Alphanumeric, [a-zA-Z0-9_] - * '\W' Non-alphanumeric - * '\d' Digits, [0-9] - * '\D' Non-digits - * - * - */ - -#ifndef _TINY_REGEX_C -#define _TINY_REGEX_C - - -#ifndef RE_DOT_MATCHES_NEWLINE -/* Define to 0 if you DON'T want '.' to match '\r' + '\n' */ -#define RE_DOT_MATCHES_NEWLINE 1 -#endif - -#ifdef __cplusplus -extern "C"{ -#endif - - - -/* Typedef'd pointer to get abstract datatype. */ -typedef struct regex_t* re_t; - - -/* Compile regex string pattern to a regex_t-array. */ -re_t re_compile(const char* pattern); - - -/* Find matches of the compiled pattern inside text. */ -int re_matchp(re_t pattern, const char* text, int* matchlength); - - -/* Find matches of the txt pattern inside text (will compile automatically first). */ -int re_match(const char* pattern, const char* text, int* matchlength); - - -#ifdef __cplusplus -} -#endif - -#endif /* ifndef _TINY_REGEX_C */ diff --git a/src/registry.h b/src/registry.h index e05f00ad..ba8dd9ea 100644 --- a/src/registry.h +++ b/src/registry.h @@ -37,9 +37,9 @@ static __inline BOOL DeleteRegistryKey(HKEY key_root, const char* key_name) HKEY hSoftware = NULL; LONG s; - if_not_assert(key_root == REGKEY_HKCU) + if_assert_fails(key_root == REGKEY_HKCU) return FALSE; - if_not_assert(key_name != NULL) + if_assert_fails(key_name != NULL) return FALSE; if (RegOpenKeyExA(key_root, "SOFTWARE", 0, KEY_READ|KEY_CREATE_SUB_KEY, &hSoftware) != ERROR_SUCCESS) @@ -133,12 +133,12 @@ static __inline BOOL _SetRegistryKey(HKEY key_root, const char* key_name, DWORD HKEY hRoot = NULL, hApp = NULL; DWORD dwDisp, dwType = reg_type; - if_not_assert(key_name != NULL) + if_assert_fails(key_name != NULL) return FALSE; - if_not_assert(key_root == REGKEY_HKCU) + if_assert_fails(key_root == REGKEY_HKCU) return FALSE; // Validate that we are always dealing with a short key - if_not_assert(strchr(key_name, '\\') == NULL) + if_assert_fails(strchr(key_name, '\\') == NULL) return FALSE; if (RegOpenKeyExA(key_root, NULL, 0, KEY_READ|KEY_CREATE_SUB_KEY, &hRoot) != ERROR_SUCCESS) { diff --git a/src/resource.h b/src/resource.h index 9be19993..5b8b4d9f 100644 --- a/src/resource.h +++ b/src/resource.h @@ -173,25 +173,26 @@ #define IDC_SELECTION_CHOICE15 1092 #define IDC_SELECTION_CHOICEMAX 1093 #define IDC_SELECTION_USERNAME 1094 -#define IDC_LIST_ICON 1095 -#define IDC_LIST_TEXT 1096 -#define IDC_LIST_LINE 1097 -#define IDC_LIST_ITEM1 1098 -#define IDC_LIST_ITEM2 1099 -#define IDC_LIST_ITEM3 1100 -#define IDC_LIST_ITEM4 1101 -#define IDC_LIST_ITEM5 1102 -#define IDC_LIST_ITEM6 1103 -#define IDC_LIST_ITEM7 1104 -#define IDC_LIST_ITEM8 1105 -#define IDC_LIST_ITEM9 1106 -#define IDC_LIST_ITEM10 1107 -#define IDC_LIST_ITEM11 1108 -#define IDC_LIST_ITEM12 1109 -#define IDC_LIST_ITEM13 1110 -#define IDC_LIST_ITEM14 1111 -#define IDC_LIST_ITEM15 1112 -#define IDC_LIST_ITEMMAX 1113 +#define IDC_SELECTION_EDITION 1095 +#define IDC_LIST_ICON 1100 +#define IDC_LIST_TEXT 1101 +#define IDC_LIST_LINE 1102 +#define IDC_LIST_ITEM1 1103 +#define IDC_LIST_ITEM2 1104 +#define IDC_LIST_ITEM3 1105 +#define IDC_LIST_ITEM4 1106 +#define IDC_LIST_ITEM5 1107 +#define IDC_LIST_ITEM6 1108 +#define IDC_LIST_ITEM7 1109 +#define IDC_LIST_ITEM8 1110 +#define IDC_LIST_ITEM9 1111 +#define IDC_LIST_ITEM10 1112 +#define IDC_LIST_ITEM11 1113 +#define IDC_LIST_ITEM12 1114 +#define IDC_LIST_ITEM13 1115 +#define IDC_LIST_ITEM14 1116 +#define IDC_LIST_ITEM15 1117 +#define IDC_LIST_ITEMMAX 1118 #define IDS_DEVICE_TXT 2000 #define IDS_PARTITION_TYPE_TXT 2001 #define IDS_FILE_SYSTEM_TXT 2002 diff --git a/src/rufus.c b/src/rufus.c index 5f557573..83803ce3 100755 --- a/src/rufus.c +++ b/src/rufus.c @@ -1,6 +1,6 @@ /* * Rufus: The Reliable USB Formatting Utility - * Copyright © 2011-2025 Pete Batard + * Copyright © 2011-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -47,11 +47,12 @@ #include "localization.h" #include "ui.h" -#include "re.h" #include "vhd.h" #include "wue.h" #include "drive.h" +#include "cregex.h" #include "settings.h" +#include "darkmode.h" #include "bled/bled.h" #include "cdio/logging.h" #include "../res/grub/grub_version.h" @@ -92,10 +93,9 @@ static char uppercase_select[2][64], uppercase_start[64], uppercase_close[64], u extern HANDLE update_check_thread; extern HIMAGELIST hUpImageList, hDownImageList; -extern BOOL enable_iso, enable_joliet, enable_rockridge, enable_extra_hashes, is_bootloader_revoked; -extern BOOL validate_md5sum, cpu_has_sha1_accel, cpu_has_sha256_accel; +extern BOOL enable_iso, enable_joliet, enable_rockridge, enable_extra_hashes; +extern BOOL validate_md5sum, cpu_has_sha1_accel, cpu_has_sha256_accel, toggle_dark_mode; extern BYTE* fido_script; -extern HWND hFidoDlg; extern uint8_t* grub2_buf; extern long grub2_len; extern char* szStatusMessage; @@ -108,7 +108,7 @@ extern const char *bootmgr_efi_name, *efi_dirname, *efi_bootname[ARCH_MAX]; * Globals */ OPENED_LIBRARIES_VARS; -RUFUS_UPDATE update = { { 0,0,0 },{ 0,0 }, NULL, NULL }; +RUFUS_UPDATE update = { 0 }; HINSTANCE hMainInstance; HWND hMainDialog, hMultiToolbar, hSaveToolbar, hHashToolbar, hAdvancedDeviceToolbar, hAdvancedFormatToolbar, hUpdatesDlg = NULL; HFONT hInfoFont = NULL, hSectionHeaderFont = NULL; @@ -121,17 +121,17 @@ WORD selected_langid = MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT); DWORD MainThreadId; USHORT NativeMachine = IMAGE_FILE_MACHINE_UNKNOWN; HWND hDeviceList, hPartitionScheme, hTargetSystem, hFileSystem, hClusterSize, hLabel, hBootType, hNBPasses, hLog = NULL; -HWND hImageOption, hLogDialog = NULL, hProgress = NULL; +HWND hImageOption, hLogDialog = NULL, hProgress = NULL, hFidoDlg = NULL; HANDLE dialog_handle = NULL, format_thread = NULL; -BOOL is_x86_64, use_own_c32[NB_OLD_C32] = { FALSE, FALSE }, mbr_selected_by_user = FALSE, lock_drive = TRUE; +BOOL is_x86_64, use_own_c32[NB_OLD_C32] = { 0 }, mbr_selected_by_user = FALSE, lock_drive = TRUE; BOOL op_in_progress = TRUE, right_to_left_mode = FALSE, has_uefi_csm = FALSE, its_a_me_mario = FALSE; BOOL enable_HDDs = FALSE, enable_VHDs = TRUE, enable_ntfs_compression = FALSE, no_confirmation_on_cancel = FALSE; BOOL advanced_mode_device, advanced_mode_format, allow_dual_uefi_bios, detect_fakes, enable_vmdk, force_large_fat32; BOOL usb_debug, use_fake_units, preserve_timestamps = FALSE, fast_zeroing = FALSE, app_changed_size = FALSE; BOOL zero_drive = FALSE, list_non_usb_removable_drives = FALSE, enable_file_indexing, large_drive = FALSE; -BOOL write_as_image = FALSE, write_as_esp = FALSE, use_vds = FALSE, ignore_boot_marker = FALSE; +BOOL write_as_image = FALSE, write_as_esp = FALSE, use_vds = FALSE, ignore_boot_marker = FALSE, save_image = FALSE; BOOL appstore_version = FALSE, is_vds_available = TRUE, persistent_log = FALSE, has_ffu_support = FALSE; -BOOL expert_mode = FALSE, use_rufus_mbr = TRUE; +BOOL expert_mode = FALSE, use_rufus_mbr = TRUE, bcdboot_supports_ex = FALSE, append_silent = FALSE; float fScale = 1.0f; int dialog_showing = 0, selection_default = BT_IMAGE, persistence_unit_selection = -1, imop_win_sel = 0; int default_fs, fs_type, boot_type, partition_type, target_type; @@ -191,8 +191,13 @@ static void SetAllowedFileSystems(void) if ((image_path == NULL) || !HAS_NTFSLESS_GRUB(img_report)) allowed_filesystem[FS_NTFS] = TRUE; // Don't allow anything besides NTFS if the image is not compatible - if ((image_path != NULL) && !IS_FAT32_COMPAT(img_report)) - break; + if ((image_path != NULL) && !IS_FAT32_COMPAT(img_report)) { + // Only disable FAT32 if we have NTFS enabled + if (allowed_filesystem[FS_NTFS]) + break; + // Else, print a warning + uprintf("WARNING: FAT32 has been forcefully enabled, but this image may not work with FAT32."); + } if (!HAS_WINDOWS(img_report) || (target_type != TT_BIOS) || allow_dual_uefi_bios) { if (!HAS_WINTOGO(img_report) || (ComboBox_GetCurItemData(hImageOption) != IMOP_WIN_TO_GO)) { allowed_filesystem[FS_FAT16] = TRUE; @@ -531,7 +536,7 @@ static BOOL SetFileSystemAndClusterSize(char* fs_name) if (SelectedDrive.DiskSize < 256 * TB) { // NTFS - SelectedDrive.ClusterSize[FS_NTFS].Allowed = 0x0001FE00; + SelectedDrive.ClusterSize[FS_NTFS].Allowed = 0x0001F000; for (i = 16; i <= 256; i <<= 1) { // 7 MB -> 256 TB if (SelectedDrive.DiskSize < i * TB) { SelectedDrive.ClusterSize[FS_NTFS].Default = ((ULONG)i / 4) * KB; @@ -957,6 +962,7 @@ BOOL CALLBACK LogCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) EXT_DECL(log_ext, "rufus.log", __VA_GROUP__("*.log"), __VA_GROUP__("Rufus log")); switch (message) { case WM_INITDIALOG: + SetDarkModeForDlg(hDlg); apply_localization(IDD_LOG, hDlg); hLog = GetDlgItem(hDlg, IDC_LOG_EDIT); @@ -984,6 +990,7 @@ BOOL CALLBACK LogCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) style = GetWindowLongPtr(hLog, GWL_STYLE); style &= ~(ES_RIGHT); SetWindowLongPtr(hLog, GWL_STYLE, style); + SetDarkModeForChild(hDlg); break; case WM_NCDESTROY: safe_delete_object(hf); @@ -1064,8 +1071,7 @@ static void CALLBACK BlockingTimer(HWND hWnd, UINT uMsg, UINT_PTR idEvent, DWORD // A write or close operation hasn't made any progress since our last check user_notified = TRUE; uprintf("Blocking I/O operation detected\n"); - MessageBoxExU(hMainDialog, lmprintf(MSG_080), lmprintf(MSG_048), - MB_OK|MB_ICONINFORMATION|MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONINFORMATION, lmprintf(MSG_048), lmprintf(MSG_080)); } else { last_iso_blocking_status = iso_blocking_status; } @@ -1093,8 +1099,8 @@ static void DisplayISOProps(void) if (img_report.mismatch_size > 0) { uprintf(" ERROR: Detected that file on disk has been truncated by %s!", SizeToHumanReadable(img_report.mismatch_size, FALSE, FALSE)); - MessageBoxExU(hMainDialog, lmprintf(MSG_298, SizeToHumanReadable(img_report.mismatch_size, FALSE, FALSE)), - lmprintf(MSG_297), MB_ICONWARNING | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONWARNING, lmprintf(MSG_297), + lmprintf(MSG_298, SizeToHumanReadable(img_report.mismatch_size, FALSE, FALSE))); } else if (img_report.mismatch_size < 0) { // Not an error (ISOHybrid?), but we report it just in case uprintf(" Note: File on disk is larger than reported ISO size by %s...", @@ -1146,7 +1152,7 @@ static void DisplayISOProps(void) // Insert the image name into the Boot selection dropdown and (re)populate the Image option dropdown static void UpdateImage(BOOL update_image_option_only) { - if_not_assert(image_index != 0) + if_assert_fails(image_index != 0) return; if (!update_image_option_only) { @@ -1305,9 +1311,12 @@ DWORD WINAPI ImageScanThread(LPVOID param) "Install-LEAP", "openSUSE-Tumbleweed" }; - int i, len; + int i; uint8_t arch; char tmp_path[MAX_PATH], tmp_str[64]; + const char* matches[REGEX_VM_MAX_MATCHES]; + cregex_node_t* node = NULL; + cregex_program_t* program = NULL; // We may mount an ISO during the lookup of the Windows version, which // produces DBT_DEVNODES_CHANGED messages that lead to unwanted device @@ -1330,9 +1339,9 @@ DWORD WINAPI ImageScanThread(LPVOID param) (!img_report.is_iso && (img_report.is_bootable_img <= 0) && !img_report.is_windows_img)) { // Failed to scan image if (img_report.is_bootable_img < 0) - MessageBoxExU(hMainDialog, lmprintf(MSG_322, image_path), lmprintf(MSG_042), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_042), lmprintf(MSG_322, image_path)); else - MessageBoxExU(hMainDialog, lmprintf(MSG_082), lmprintf(MSG_081), MB_OK | MB_ICONINFORMATION | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONINFORMATION, lmprintf(MSG_081), lmprintf(MSG_082)); // Make sure to relinquish image_path before we call UpdateImage // otherwise the boot selection dropdown won't be properly reset. safe_free(image_path); @@ -1382,17 +1391,28 @@ DWORD WINAPI ImageScanThread(LPVOID param) (img_report.compression_type != BLED_COMPRESSION_NONE && img_report.compression_type < BLED_COMPRESSION_MAX) ? "compressed " : "", img_report.is_vhd ? "VHD" : "disk"); selection_default = BT_IMAGE; + if (img_report.projected_size > 0) + uprintf(" Size: %s (Projected)", SizeToHumanReadable(img_report.projected_size, FALSE, FALSE)); } if (img_report.is_iso) { GetBootladerInfo(); DisplayISOProps(); - for (i = 0; i < ARRAYSIZE(redhat8_derivative); i++) { - if (re_match(redhat8_derivative[i], img_report.label, &len) >= 0) { - img_report.rh8_derivative = TRUE; + for (i = 0; i < ARRAYSIZE(redhat8_derivative) && !img_report.rh8_derivative; i++) { + node = cregex_parse(redhat8_derivative[i]); + if (node != NULL) { + program = cregex_compile_node(node); + cregex_parse_free(node); + } + if (node == NULL || program == NULL) { + uprintf("Internal error: Failed to parse '%s'", redhat8_derivative[i]); break; } + if (cregex_program_run(program, img_report.label, matches, ARRAYSIZE(matches)) > 0) + img_report.rh8_derivative = TRUE; + cregex_compile_free(program); + program = NULL; } for (i = 0; i < ARRAYSIZE(suse_derivative); i++) { @@ -1412,8 +1432,7 @@ DWORD WINAPI ImageScanThread(LPVOID param) // If we have an ISOHybrid, but without an ISO method we support, disable ISO support altogether if (IS_DD_BOOTABLE(img_report) && (img_report.disable_iso || (!IS_BIOS_BOOTABLE(img_report) && !IS_EFI_BOOTABLE(img_report)))) { - MessageBoxExU(hMainDialog, lmprintf(MSG_321), lmprintf(MSG_274, "ISOHybrid"), - MB_OK | MB_ICONINFORMATION | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONINFORMATION, lmprintf(MSG_274, "ISOHybrid"), lmprintf(MSG_321)); uprintf("Note: DD image mode enforced since this ISOHybrid is not ISO mode compatible."); img_report.is_iso = FALSE; } @@ -1423,7 +1442,7 @@ DWORD WINAPI ImageScanThread(LPVOID param) // No boot method that we support PrintInfo(0, MSG_081); safe_free(image_path); - MessageBoxExU(hMainDialog, lmprintf(MSG_082), lmprintf(MSG_081), MB_OK | MB_ICONINFORMATION | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONINFORMATION, lmprintf(MSG_081), lmprintf(MSG_082)); PrintStatus(0, MSG_086); EnableControls(TRUE, FALSE); } else { @@ -1437,7 +1456,6 @@ DWORD WINAPI ImageScanThread(LPVOID param) } UpdateImage(dont_display_image_name); ToggleImageOptions(); - EnableControls(TRUE, FALSE); // Set Target and FS accordingly if (img_report.is_iso || img_report.is_windows_img) { IGNORE_RETVAL(ComboBox_SetCurSel(hBootType, image_index)); @@ -1450,6 +1468,7 @@ DWORD WINAPI ImageScanThread(LPVOID param) SendMessage(hMainDialog, WM_COMMAND, (CBN_SELCHANGE_INTERNAL << 16) | IDC_FILE_SYSTEM, ComboBox_GetCurSel(hFileSystem)); } + EnableControls(TRUE, FALSE); // Lose the focus on the select ISO (but place it on Close) SendMessage(hMainDialog, WM_NEXTDLGCTL, (WPARAM)FALSE, 0); // Lose the focus from Close and set it back to Start @@ -1472,7 +1491,7 @@ out: // Likewise, boot check will block message processing => use a thread static DWORD WINAPI BootCheckThread(LPVOID param) { - int i, r, username_index = -1; + int i, r; FILE *fd; uint32_t len; WPARAM ret = BOOTCHECK_CANCEL; @@ -1485,10 +1504,11 @@ static DWORD WINAPI BootCheckThread(LPVOID param) const char* syslinux = "syslinux"; const char* ldlinux_ext[3] = { "sys", "bss", "c32" }; char tmp[MAX_PATH], tmp2[MAX_PATH], c; + selection_dialog_options_t selection = { 0 }; syslinux_ldlinux_len[0] = 0; syslinux_ldlinux_len[1] = 0; - is_bootloader_revoked = FALSE; safe_free(grub2_buf); + append_silent = FALSE; if (ComboBox_GetCurSel(hDeviceList) == CB_ERR) goto out; @@ -1500,13 +1520,35 @@ static DWORD WINAPI BootCheckThread(LPVOID param) } if (boot_type == BT_IMAGE) { - if_not_assert(image_path != NULL) + if_assert_fails(image_path != NULL) goto out; - if ((size_check) && (img_report.projected_size > (uint64_t)SelectedDrive.DiskSize)) { - // This ISO image is too big for the selected target - MessageBoxExU(hMainDialog, lmprintf(MSG_089), lmprintf(MSG_088), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + if (IsSourceImageLocatedOnTargetDrive((DWORD)ComboBox_GetItemData(hDeviceList, ComboBox_GetCurSel(hDeviceList)))) { + // You cannot use an image that is located on the target drive + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_358), lmprintf(MSG_359)); goto out; } + /* Add 4 KB extra margin for VHD footers and so on */ + if ((size_check) && (img_report.projected_size > ((uint64_t)SelectedDrive.DiskSize + 4 * KB))) { + // This ISO image is too big for the selected target + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_088), lmprintf(MSG_089)); + goto out; + } + + // Display an alert if any of the UEFI bootloaders have been revoked + if (img_report.has_secureboot_bootloader & 0xfe) { + switch (img_report.has_secureboot_bootloader & 0xfe) { + case 4: + msg = lmprintf(MSG_341, "Error code: 0xc0000428"); + break; + default: + msg = lmprintf(MSG_340); + break; + } + r = Notification(MB_OKCANCEL | MB_ICONWARNING, lmprintf(MSG_338), lmprintf(MSG_339, msg)); + if (r == IDCANCEL) + goto out; + } + if (IS_DD_BOOTABLE(img_report)) { if (!img_report.is_iso) { // Pure DD images are fine at this stage @@ -1516,19 +1558,25 @@ static DWORD WINAPI BootCheckThread(LPVOID param) // but only do so if persistence has not been selected. char* iso_image = lmprintf(MSG_036); char* dd_image = lmprintf(MSG_095); + StrArrayCreate(&selection.choices, 4); // If the ISO is small enough to be written as an ESP and we are using GPT add the ISO → ESP option if ((img_report.projected_size < MAX_ISO_TO_ESP_SIZE) && HAS_REGULAR_EFI(img_report) && (partition_type == PARTITION_STYLE_GPT) && IS_FAT(fs_type)) { - char* choices[3] = { lmprintf(MSG_276, iso_image), lmprintf(MSG_277, "ISO → ESP"), lmprintf(MSG_277, dd_image) }; - i = SelectionDialog(lmprintf(MSG_274, "ISOHybrid"), lmprintf(MSG_275, iso_image, dd_image, iso_image, dd_image), choices, 3); + StrArrayAdd(&selection.choices, lmprintf(MSG_276, iso_image), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_277, "ISO → ESP"), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_277, dd_image), TRUE); + i = SelectionDialog(lmprintf(MSG_274, "ISOHybrid"), lmprintf(MSG_275, iso_image, dd_image, iso_image, dd_image), &selection); + StrArrayDestroy(&selection.choices); if (i < 0) // Cancel goto out; write_as_esp = (i & 2); write_as_image = (i & 4); esp_already_asked = TRUE; } else { - char* choices[2] = { lmprintf(MSG_276, iso_image), lmprintf(MSG_277, dd_image) }; - i = SelectionDialog(lmprintf(MSG_274, "ISOHybrid"), lmprintf(MSG_275, iso_image, dd_image, iso_image, dd_image), choices, 2); + StrArrayAdd(&selection.choices, lmprintf(MSG_276, iso_image), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_277, dd_image), TRUE); + i = SelectionDialog(lmprintf(MSG_274, "ISOHybrid"), lmprintf(MSG_275, iso_image, dd_image, iso_image, dd_image), &selection); + StrArrayDestroy(&selection.choices); if (i < 0) // Cancel goto out; write_as_image = (i & 2); @@ -1544,21 +1592,21 @@ static DWORD WINAPI BootCheckThread(LPVOID param) if (is_windows_to_go) { if (fs_type != FS_NTFS) { // Windows To Go only works for NTFS - MessageBoxExU(hMainDialog, lmprintf(MSG_097, "Windows To Go"), lmprintf(MSG_092), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_092), lmprintf(MSG_097, "Windows To Go")); goto out; } if (SelectedDrive.MediaType != FixedMedia) { if ((target_type == TT_UEFI) && (partition_type == PARTITION_STYLE_GPT) && (WindowsVersion.BuildNumber < 15000)) { // Up to Windows 10 Creators Update (1703), we were screwed, since we need access to 2 partitions at the same time. // Thankfully, the newer Windows allow mounting multiple partitions on the same REMOVABLE drive. - MessageBoxExU(hMainDialog, lmprintf(MSG_198), lmprintf(MSG_190), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_190), lmprintf(MSG_198)); goto out; } } // If multiple versions are available, asks the user to select one before we commit to format the drive switch(SetWinToGoIndex()) { case -1: - MessageBoxExU(hMainDialog, lmprintf(MSG_073), lmprintf(MSG_291), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_291), lmprintf(MSG_073)); // fall through case -2: goto out; @@ -1566,30 +1614,48 @@ static DWORD WINAPI BootCheckThread(LPVOID param) break; } if ((WindowsVersion.Version >= WINDOWS_8) && IS_WINDOWS_1X(img_report)) { - StrArray options; int arch = _log2(img_report.has_efi >> 1); uint16_t map[16] = { 0 }, b = 1; - StrArrayCreate(&options, 8); - StrArrayAdd(&options, lmprintf(MSG_332), TRUE); + StrArrayCreate(&selection.choices, 8); + StrArrayCreate(&selection.tooltips, 8); + StrArrayAdd(&selection.choices, lmprintf(MSG_332), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_363), TRUE); MAP_BIT(UNATTEND_OFFLINE_INTERNAL_DRIVES); if (img_report.win_version.build >= 22500) { - StrArrayAdd(&options, lmprintf(MSG_330), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_330), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_361), TRUE); MAP_BIT(UNATTEND_NO_ONLINE_ACCOUNT); } - StrArrayAdd(&options, lmprintf(MSG_333), TRUE); - username_index = _log2(b); + StrArrayAdd(&selection.choices, lmprintf(MSG_333), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_364), TRUE); + selection.username_index = _log2(b) + 1; MAP_BIT(UNATTEND_SET_USER); - StrArrayAdd(&options, lmprintf(MSG_334), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_334), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_365), TRUE); MAP_BIT(UNATTEND_DUPLICATE_LOCALE); - StrArrayAdd(&options, lmprintf(MSG_331), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_331), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_362), TRUE); MAP_BIT(UNATTEND_NO_DATA_COLLECTION); + if (IS_WINDOWS_11(img_report)) { + StrArrayAdd(&selection.choices, lmprintf(MSG_324), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_370), TRUE); + MAP_BIT(UNATTEND_QOL_ENHANCEMENTS); + if (img_report.win_version.build >= 26200 && bcdboot_supports_ex) { + StrArrayAdd(&selection.choices, lmprintf(MSG_350), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_368), TRUE); + MAP_BIT(UNATTEND_USE_MS2023_BOOTLOADERS); + } + } if (expert_mode) { - StrArrayAdd(&options, lmprintf(MSG_346), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_346), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_367), TRUE); MAP_BIT(UNATTEND_FORCE_S_MODE); } - i = CustomSelectionDialog(BS_AUTOCHECKBOX, lmprintf(MSG_327), lmprintf(MSG_328), - options.String, options.Index, remap16(unattend_xml_mask, map, FALSE), username_index); - StrArrayDestroy(&options); + selection.mask = remap16(unattend_xml_mask, map, FALSE); + selection.style = BS_AUTOCHECKBOX; + i = SelectionDialog(lmprintf(MSG_327), lmprintf(MSG_328), &selection); + StrArrayDestroy(&selection.choices); + StrArrayDestroy(&selection.tooltips); if (i < 0) goto out; // Remap i to the correct bit positions before calling CreateUnattendXml() @@ -1604,7 +1670,7 @@ static DWORD WINAPI BootCheckThread(LPVOID param) } else if (target_type == TT_UEFI) { if (!IS_EFI_BOOTABLE(img_report)) { // Unsupported ISO - MessageBoxExU(hMainDialog, lmprintf(MSG_091), lmprintf(MSG_090), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_090), lmprintf(MSG_091)); goto out; } } else if ( ((fs_type == FS_NTFS) && !HAS_WINDOWS(img_report) && !HAS_GRUB(img_report) && @@ -1613,16 +1679,16 @@ static DWORD WINAPI BootCheckThread(LPVOID param) (!HAS_REACTOS(img_report)) && !HAS_KOLIBRIOS(img_report) && (!HAS_GRUB(img_report))) || ((IS_FAT(fs_type)) && (HAS_WINDOWS(img_report) || HAS_WININST(img_report)) && (!allow_dual_uefi_bios)) ) { // Incompatible FS and ISO - MessageBoxExU(hMainDialog, lmprintf(MSG_096), lmprintf(MSG_092), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_092), lmprintf(MSG_096)); goto out; } else if ((fs_type == FS_FAT16) && HAS_KOLIBRIOS(img_report)) { // KolibriOS doesn't support FAT16 - MessageBoxExU(hMainDialog, lmprintf(MSG_189), lmprintf(MSG_099), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_099), lmprintf(MSG_189)); goto out; } - if (IS_FAT(fs_type) && !IS_FAT32_COMPAT(img_report)) { + if (IS_FAT(fs_type) && img_report.has_4GB_file != 0 && img_report.has_4GB_file != 0x11){ // This ISO image contains a file larger than 4GB file (FAT32) - MessageBoxExU(hMainDialog, lmprintf(MSG_100), lmprintf(MSG_099), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_099), lmprintf(MSG_100)); goto out; } if ((WindowsVersion.Version >= WINDOWS_8) && IS_WINDOWS_1X(img_report) && (!is_windows_to_go)) { @@ -1630,41 +1696,66 @@ static DWORD WINAPI BootCheckThread(LPVOID param) uprintf("NOTICE: A '/sources/$OEM$/$$/Panther/unattend.xml' was detected on the ISO."); uprintf("As a result, the 'Windows User Experience dialog' will not be displayed."); } else { - StrArray options; int arch = _log2(img_report.has_efi >> 1); uint16_t map[16] = { 0 }, b = 1; - StrArrayCreate(&options, 10); + StrArrayCreate(&selection.choices, 16); + StrArrayCreate(&selection.tooltips, 16); if (IS_WINDOWS_11(img_report)) { - StrArrayAdd(&options, lmprintf(MSG_329), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_329), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_360), TRUE); MAP_BIT(UNATTEND_SECUREBOOT_TPM_MINRAM); } if (img_report.win_version.build >= 22500) { - StrArrayAdd(&options, lmprintf(MSG_330), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_330), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_361), TRUE); MAP_BIT(UNATTEND_NO_ONLINE_ACCOUNT); } - StrArrayAdd(&options, lmprintf(MSG_333), TRUE); - username_index = _log2(b); + StrArrayAdd(&selection.choices, lmprintf(MSG_333), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_364), TRUE); + selection.username_index = _log2(b) + 1; MAP_BIT(UNATTEND_SET_USER); - StrArrayAdd(&options, lmprintf(MSG_334), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_334), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_365), TRUE); + selection.regional_index = _log2(b) + 1; MAP_BIT(UNATTEND_DUPLICATE_LOCALE); - StrArrayAdd(&options, lmprintf(MSG_331), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_331), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_362), TRUE); + selection.privacy_index = _log2(b) + 1; MAP_BIT(UNATTEND_NO_DATA_COLLECTION); - StrArrayAdd(&options, lmprintf(MSG_335), TRUE); - MAP_BIT(UNATTEND_DISABLE_BITLOCKER); - if (expert_mode) { - if (!appstore_version && img_report.win_version.build >= 26100) { - StrArrayAdd(&options, lmprintf(MSG_350), TRUE); + if (IS_WINDOWS_11(img_report)) { + StrArrayAdd(&selection.choices, lmprintf(MSG_355), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_371), TRUE); + selection.edition_index = _log2(b) + 1; + MAP_BIT(UNATTEND_SILENT_INSTALL); + StrArrayAdd(&selection.choices, lmprintf(MSG_335), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_366), TRUE); + MAP_BIT(UNATTEND_DISABLE_BITLOCKER); + StrArrayAdd(&selection.choices, lmprintf(MSG_324), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_370), TRUE); + MAP_BIT(UNATTEND_QOL_ENHANCEMENTS); + if (img_report.win_version.build >= 26200) { + StrArrayAdd(&selection.choices, lmprintf(MSG_350), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_368), TRUE); MAP_BIT(UNATTEND_USE_MS2023_BOOTLOADERS); + StrArrayAdd(&selection.choices, lmprintf(MSG_323), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_369), TRUE); + MAP_BIT(UNATTEND_APPLY_SKUSIPOLICY); } - StrArrayAdd(&options, lmprintf(MSG_346), TRUE); + } + if (expert_mode) { + StrArrayAdd(&selection.choices, lmprintf(MSG_346), TRUE); + StrArrayAdd(&selection.tooltips, lmprintf(MSG_367), TRUE); MAP_BIT(UNATTEND_FORCE_S_MODE); } - i = CustomSelectionDialog(BS_AUTOCHECKBOX, lmprintf(MSG_327), lmprintf(MSG_328), - options.String, options.Index, remap16(unattend_xml_mask, map, FALSE), username_index); - StrArrayDestroy(&options); + selection.mask = remap16(unattend_xml_mask, map, FALSE); + selection.style = BS_AUTOCHECKBOX; + i = SelectionDialog(lmprintf(MSG_327), lmprintf(MSG_328), &selection); + StrArrayDestroy(&selection.choices); + StrArrayDestroy(&selection.tooltips); if (i < 0) goto out; i = remap16(i, map, TRUE); + append_silent = (i & UNATTEND_SILENT_INSTALL); unattend_xml_path = CreateUnattendXml(arch, i); // Remember the user preferences for the current session. unattend_xml_mask &= ~(remap16(UNATTEND_FULL_MASK, map, TRUE)); @@ -1673,29 +1764,16 @@ static DWORD WINAPI BootCheckThread(LPVOID param) } } - // Display an alert if any of the UEFI bootloaders have been revoked - if (img_report.has_secureboot_bootloader & 0xfe) { - switch (img_report.has_secureboot_bootloader & 0xfe) { - case 4: - msg = lmprintf(MSG_341, "Error code: 0xc0000428"); - break; - default: - msg = lmprintf(MSG_340); - break; - } - r = MessageBoxExU(hMainDialog, lmprintf(MSG_339, msg), lmprintf(MSG_338), - MB_OKCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid); - if (r == IDCANCEL) - goto out; - } - if ((img_report.projected_size < MAX_ISO_TO_ESP_SIZE) && HAS_REGULAR_EFI(img_report) && (partition_type == PARTITION_STYLE_GPT) && IS_FAT(fs_type) && !esp_already_asked) { // The ISO is small enough to be written as an ESP and we are using GPT // so ask the users if they want to write it as an ESP. char* iso_image = lmprintf(MSG_036); - char* choices[2] = { lmprintf(MSG_276, iso_image), lmprintf(MSG_277, "ISO → ESP") }; - i = SelectionDialog(lmprintf(MSG_274, "ESP"), lmprintf(MSG_310), choices, 2); + StrArrayCreate(&selection.choices, 2); + StrArrayAdd(&selection.choices, lmprintf(MSG_276, iso_image), TRUE); + StrArrayAdd(&selection.choices, lmprintf(MSG_277, "ISO → ESP"), TRUE); + i = SelectionDialog(lmprintf(MSG_274, "ESP"), lmprintf(MSG_310), &selection); + StrArrayDestroy(&selection.choices); if (i < 0) // Cancel goto out; write_as_esp = (i & 2); @@ -1731,8 +1809,8 @@ static DWORD WINAPI BootCheckThread(LPVOID param) } fclose(fd); } else { - r = MessageBoxExU(hMainDialog, lmprintf(MSG_116, img_report.grub2_version, GRUB2_PACKAGE_VERSION), - lmprintf(MSG_115), MB_YESNOCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid); + r = Notification(MB_YESNOCANCEL | MB_ICONWARNING, lmprintf(MSG_115), + lmprintf(MSG_116, img_report.grub2_version, GRUB2_PACKAGE_VERSION)); if (r == IDCANCEL) goto out; else if (r == IDYES) { @@ -1788,8 +1866,8 @@ static DWORD WINAPI BootCheckThread(LPVOID param) use_own_c32[i] = TRUE; } else { PrintInfo(0, MSG_204, old_c32_name[i]); - if (MessageBoxExU(hMainDialog, lmprintf(MSG_084, old_c32_name[i], old_c32_name[i]), - lmprintf(MSG_083, old_c32_name[i]), MB_YESNO | MB_ICONWARNING | MB_IS_RTL, selected_langid) == IDYES) { + if (Notification(MB_YESNO | MB_ICONWARNING, lmprintf(MSG_083, old_c32_name[i]), + lmprintf(MSG_084, old_c32_name[i], old_c32_name[i])) == IDYES) { static_sprintf(tmp, "%s-%s", syslinux, embedded_sl_version_str[0]); IGNORE_RETVAL(_mkdir(tmp)); static_sprintf(tmp, "%s/%s-%s/%s", FILES_URL, syslinux, embedded_sl_version_str[0], old_c32_name[i]); @@ -1827,9 +1905,9 @@ static DWORD WINAPI BootCheckThread(LPVOID param) ldlinux, ldlinux_ext[0], ldlinux, ldlinux_ext[1], app_data_dir, FILES_DIR, syslinux, img_report.sl_version_str, img_report.sl_version_ext); } else { - r = MessageBoxExU(hMainDialog, lmprintf(MSG_114, img_report.sl_version_str, img_report.sl_version_ext, - embedded_sl_version_str[1], embedded_sl_version_ext[1]), - lmprintf(MSG_115), MB_YESNO | MB_ICONWARNING | MB_IS_RTL, selected_langid); + r = Notification(MB_YESNO | MB_ICONWARNING, lmprintf(MSG_115), + lmprintf(MSG_114, img_report.sl_version_str, img_report.sl_version_ext, + embedded_sl_version_str[1], embedded_sl_version_ext[1])); if (r != IDYES) goto out; for (i = 0; i < 2; i++) { @@ -1887,8 +1965,8 @@ static DWORD WINAPI BootCheckThread(LPVOID param) static_sprintf(tmp, "%s.%s", ldlinux, ldlinux_ext[2]); PrintInfo(0, MSG_206, tmp); // MSG_104: "Syslinux v5.0 or later requires a '%s' file to be installed" - r = MessageBoxExU(hMainDialog, lmprintf(MSG_104, "Syslinux v5.0", tmp, "Syslinux v5+", tmp), - lmprintf(MSG_103, tmp), MB_YESNOCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid); + r = Notification(MB_YESNOCANCEL | MB_ICONWARNING, lmprintf(MSG_103, tmp), + lmprintf(MSG_104, "Syslinux v5.0", tmp, "Syslinux v5+", tmp)); if (r == IDCANCEL) goto out; if (r == IDYES) { @@ -1904,16 +1982,14 @@ static DWORD WINAPI BootCheckThread(LPVOID param) } else if (boot_type == BT_MSDOS) { if ((size_check) && (ComboBox_GetCurItemData(hClusterSize) >= 65536)) { // MS-DOS cannot boot from a drive using a 64 kilobytes Cluster size - MessageBoxExU(hMainDialog, lmprintf(MSG_110), lmprintf(MSG_111), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_111), lmprintf(MSG_110)); goto out; } static_sprintf(tmp, "%s\\%s\\diskcopy.dll", app_data_dir, FILES_DIR); if (_accessU(tmp, 0) != -1) { uprintf("Will reuse '%s' for MS-DOS installation", tmp); } else { - r = MessageBoxExU(hMainDialog, lmprintf(MSG_337), lmprintf(MSG_115), - MB_YESNO | MB_ICONWARNING | MB_IS_RTL, selected_langid); - if (r != IDYES) + if (Notification(MB_YESNO | MB_ICONWARNING, lmprintf(MSG_115), lmprintf(MSG_337, "diskcopy.dll")) != IDYES) goto out; IGNORE_RETVAL(_chdirU(app_data_dir)); IGNORE_RETVAL(_mkdir(FILES_DIR)); @@ -1936,8 +2012,8 @@ static DWORD WINAPI BootCheckThread(LPVOID param) } else { static_sprintf(tmp, "grldr"); PrintInfo(0, MSG_206, tmp); - r = MessageBoxExU(hMainDialog, lmprintf(MSG_104, "Grub4DOS 0.4", tmp, "Grub4DOS", tmp), - lmprintf(MSG_103, tmp), MB_YESNOCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid); + r = Notification(MB_YESNOCANCEL | MB_ICONWARNING, lmprintf(MSG_103, tmp), + lmprintf(MSG_104, "Grub4DOS 0.4", tmp, "Grub4DOS", tmp)); if (r == IDCANCEL) goto out; if (r == IDYES) { @@ -1956,7 +2032,7 @@ uefi_target: if (boot_type == BT_UEFI_NTFS) { fs_type = (int)ComboBox_GetCurItemData(hFileSystem); if (fs_type != FS_NTFS && fs_type != FS_EXFAT) { - MessageBoxExU(hMainDialog, lmprintf(MSG_097, "UEFI:NTFS"), lmprintf(MSG_092), MB_OK|MB_ICONERROR|MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONERROR, lmprintf(MSG_092), lmprintf(MSG_097, "UEFI:NTFS")); goto out; } } @@ -2097,7 +2173,7 @@ static void InitDialog(HWND hDlg) len = 0; buf = (char*)GetResource(hMainInstance, resource[i], _RT_RCDATA, "ldlinux_sys", &len, TRUE); if (buf == NULL) { - uprintf("Warning: could not read embedded Syslinux v%d version", i + 4); + uprintf("WARNING: could not read embedded Syslinux v%d version", i + 4); } else { embedded_sl_version[i] = GetSyslinuxVersion(buf, len, &ext); static_sprintf(embedded_sl_version_str[i], "%d.%02d", SL_MAJOR(embedded_sl_version[i]), SL_MINOR(embedded_sl_version[i])); @@ -2268,8 +2344,8 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA case IDCANCEL: EnableWindow(GetDlgItem(hDlg, IDCANCEL), FALSE); if (format_thread != NULL) { - if ((no_confirmation_on_cancel) || (MessageBoxExU(hMainDialog, lmprintf(MSG_105), lmprintf(MSG_049), - MB_YESNO|MB_ICONWARNING|MB_IS_RTL, selected_langid) == IDYES)) { + if ((no_confirmation_on_cancel) || (Notification(MB_YESNO | MB_ICONWARNING, + lmprintf(MSG_049), lmprintf(MSG_105)) == IDYES)) { // Operation may have completed in the meantime if (format_thread != NULL) { ErrorStatus = RUFUS_ERROR(ERROR_CANCELLED); @@ -2323,7 +2399,7 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA DestroyAllTooltips(); DestroyWindow(hLogDialog); GetWindowRect(hDlg, &relaunch_rc); - EndDialog(hDlg, 0); + DestroyWindow(hDlg); break; case IDC_ABOUT: CreateAboutBox(); @@ -2511,6 +2587,8 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA case IDC_FILE_SYSTEM: if ((HIWORD(wParam) != CBN_SELCHANGE) && (HIWORD(wParam) != CBN_SELCHANGE_INTERNAL)) break; + if (!IsWindowEnabled(hFileSystem)) + break; set_selected_fs = (HIWORD(wParam) == CBN_SELCHANGE); fs_type = (int)ComboBox_GetCurItemData(hFileSystem); SetClusterSizes(fs_type); @@ -2640,7 +2718,6 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA MyDialogBox(hMainInstance, IDD_UPDATE_POLICY, hDlg, UpdateCallback); break; case IDC_HASH: - // TODO: Move this as a fn call in hash.c? if ((format_thread == NULL) && (image_path != NULL)) { ErrorStatus = 0; no_confirmation_on_cancel = TRUE; @@ -2662,7 +2739,15 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA } break; case IDC_SAVE: - VhdSaveImage(); + if (format_thread == NULL && (ComboBox_GetCurSel(hDeviceList) >= 0)) { + save_image = SaveImage(); + if (!save_image) { + uprintf("Unable to start image save thread"); + if (!IS_ERROR(ErrorStatus)) + ErrorStatus = RUFUS_ERROR(APPERR(ERROR_CANT_START_THREAD)); + PostMessage(hMainDialog, UM_FORMAT_COMPLETED, (WPARAM)FALSE, 0); + } + } break; case IDM_SELECT: case IDM_DOWNLOAD: @@ -2760,6 +2845,7 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA break; case WM_INITDIALOG: + InitAndSetDarkModeForMainDlg(hDlg); // Make sure fScale is set before the first call to apply localization, so that move/resize scale appropriately hDC = GetDC(hDlg); fScale = GetDeviceCaps(hDC, LOGPIXELSX) / 96.0f; @@ -2800,12 +2886,15 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA #if defined(ALPHA) // Add a VERY ANNOYING popup for Alpha releases, so that people don't start redistributing them MessageBoxA(NULL, "This is an Alpha version of " APPLICATION_NAME " - It is meant to be used for " - "testing ONLY and should NOT be distributed as a release.", "ALPHA VERSION", MSG_INFO); + "testing ONLY and should NOT be distributed as a release.", "ALPHA VERSION", MB_ICONINFORMATION); #elif defined(TEST) // Same thing for Test releases MessageBoxA(NULL, "This is a Test version of " APPLICATION_NAME " - It is meant to be used for " - "testing ONLY and should NOT be distributed as a release.", "TEST VERSION", MSG_INFO); + "testing ONLY and should NOT be distributed as a release.", "TEST VERSION", MB_ICONINFORMATION); #endif + SetDarkModeForChild(hDlg); + SubclassStatusBar(hStatus); + SetHyperLinkFont(GetDlgItem(hDlg, IDS_CSM_HELP_TXT), (HDC)wParam, &hHyperlinkFont, FALSE); // Let's not take any risk: Ask Windows to redraw the whole dialog before we exit init RedrawWindow(hMainDialog, NULL, NULL, RDW_ALLCHILDREN | RDW_UPDATENOW); InvalidateRect(hMainDialog, NULL, TRUE); @@ -2824,12 +2913,12 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA SetBkMode(pDI->hDC, TRANSPARENT); switch (pDI->itemID) { case SB_SECTION_LEFT: - SetTextColor(pDI->hDC, GetSysColor(COLOR_BTNTEXT)); + SetTextColor(pDI->hDC, is_darkmode_enabled ? DARKMODE_NORMAL_TEXT_COLOR : GetSysColor(COLOR_BTNTEXT)); DrawTextExU(pDI->hDC, szStatusMessage, -1, &pDI->rcItem, DT_LEFT | DT_END_ELLIPSIS | DT_PATH_ELLIPSIS, NULL); return (INT_PTR)TRUE; case SB_SECTION_RIGHT: - SetTextColor(pDI->hDC, GetSysColor(COLOR_3DSHADOW)); + SetTextColor(pDI->hDC, is_darkmode_enabled ? DARKMODE_DISABLED_TEXT_COLOR : GetSysColor(COLOR_3DSHADOW)); DrawTextExA(pDI->hDC, szTimer, -1, &pDI->rcItem, DT_LEFT, NULL); return (INT_PTR)TRUE; } @@ -2846,7 +2935,6 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA if ((HWND)lParam != GetDlgItem(hDlg, IDS_CSM_HELP_TXT)) return FALSE; SetBkMode((HDC)wParam, TRANSPARENT); - CreateStaticFont((HDC)wParam, &hHyperlinkFont, FALSE); SelectObject((HDC)wParam, hHyperlinkFont); SetTextColor((HDC)wParam, TOOLBAR_ICON_COLOR); return (INT_PTR)GetSysColorBrush(COLOR_BTNFACE); @@ -2937,6 +3025,8 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA img_provided = TRUE; // Simulate image selection click SendMessage(hDlg, WM_COMMAND, IDC_SELECT, 0); + } else { + EnableControls(TRUE, FALSE); } } break; @@ -2997,7 +3087,7 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA break; case UM_NO_UPDATE: - Notification(MSG_INFO, NULL, NULL, lmprintf(MSG_243), lmprintf(MSG_247)); + Notification(MB_ICONINFORMATION | MB_CLOSE, lmprintf(MSG_243), lmprintf(MSG_247)); // Need to manually set focus back to "Check Now" for tabbing to work SendMessage(hUpdatesDlg, WM_NEXTDLGCTL, (WPARAM)GetDlgItem(hUpdatesDlg, IDC_CHECK_NOW), TRUE); break; @@ -3007,10 +3097,11 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA goto aborted_start; // All subsequent aborts below translate to a user cancellation wParam = BOOTCHECK_CANCEL; + save_image = FALSE; if ((partition_type == PARTITION_STYLE_MBR) && (SelectedDrive.DiskSize > 2 * TB)) { - if (MessageBoxExU(hMainDialog, lmprintf(MSG_134, SizeToHumanReadable(SelectedDrive.DiskSize - 2 * TB, FALSE, FALSE)), - lmprintf(MSG_128, "MBR"), MB_YESNO | MB_ICONWARNING | MB_IS_RTL, selected_langid) != IDYES) + if (Notification(MB_YESNO | MB_ICONWARNING, lmprintf(MSG_128, "MBR"), + lmprintf(MSG_134, SizeToHumanReadable(SelectedDrive.DiskSize - 2 * TB, FALSE, FALSE))) != IDYES) goto aborted_start; } @@ -3020,8 +3111,7 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA if (dur_secs > UDF_FORMAT_WARN) { dur_mins = dur_secs / 60; dur_secs -= dur_mins * 60; - MessageBoxExU(hMainDialog, lmprintf(MSG_112, dur_mins, dur_secs), lmprintf(MSG_113), - MB_OK | MB_ICONASTERISK | MB_IS_RTL, selected_langid); + Notification(MB_OK | MB_ICONINFORMATION, lmprintf(MSG_113), lmprintf(MSG_112, dur_mins, dur_secs)); } else { dur_secs = 0; dur_mins = 0; @@ -3035,21 +3125,18 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA if (GetProcessSearch(SEARCH_PROCESS_TIMEOUT, 0x06, TRUE)) { char title[128]; ComboBox_GetTextU(hDeviceList, title, sizeof(title)); - if (!Notification(MSG_WARNING_QUESTION, NULL, NULL, title, lmprintf(MSG_132))) + if (Notification(MB_ICONWARNING | MB_YESNO, title, lmprintf(MSG_132)) != IDYES) goto aborted_start; } PrintStatus(0, MSG_142); GetWindowTextU(hDeviceList, tmp, ARRAYSIZE(tmp)); - if (MessageBoxExU(hMainDialog, lmprintf(MSG_003, tmp), - APPLICATION_NAME, MB_OKCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid) == IDCANCEL) + if (Notification(MB_OKCANCEL | MB_ICONWARNING, APPLICATION_NAME, lmprintf(MSG_003, tmp)) != IDOK) goto aborted_start; - if ((SelectedDrive.nPartitions > 1) && (MessageBoxExU(hMainDialog, lmprintf(MSG_093), - lmprintf(MSG_094), MB_OKCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid) == IDCANCEL)) + if ((SelectedDrive.nPartitions > 1) && (Notification(MB_OKCANCEL | MB_ICONWARNING, lmprintf(MSG_094), lmprintf(MSG_093)) != IDOK)) goto aborted_start; if ((!zero_drive) && (boot_type != BT_NON_BOOTABLE) && (SelectedDrive.SectorSize != 512) && - (MessageBoxExU(hMainDialog, lmprintf(MSG_196, SelectedDrive.SectorSize), - lmprintf(MSG_197), MB_OKCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid) == IDCANCEL)) + (Notification(MB_OKCANCEL | MB_ICONWARNING, lmprintf(MSG_197), lmprintf(MSG_196, SelectedDrive.SectorSize)) != IDOK)) goto aborted_start; nDeviceIndex = ComboBox_GetCurSel(hDeviceList); @@ -3101,10 +3188,11 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA SendMessage(FindWindowA(MAKEINTRESOURCEA(32770), lmprintf(MSG_049)), WM_COMMAND, IDYES, 0); EnableWindow(GetDlgItem(hMainDialog, IDCANCEL), TRUE); EnableControls(TRUE, FALSE); - if (wParam) { + if (wParam && !save_image) { uprintf("\r\n"); GetDevices(DeviceNum); } + save_image = FALSE; if (!IS_ERROR(ErrorStatus)) { SendMessage(hProgress, PBM_SETPOS, MAX_PROGRESS, 0); SetTaskbarProgressState(TASKBAR_NOPROGRESS); @@ -3115,14 +3203,15 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA SendMessage(hProgress, PBM_SETSTATE, (WPARAM)PBST_PAUSED, 0); SetTaskbarProgressState(TASKBAR_PAUSED); PrintInfo(0, MSG_211); - Notification(MSG_INFO, NULL, NULL, lmprintf(MSG_211), lmprintf(MSG_041)); + Notification(MB_ICONINFORMATION | MB_CLOSE, lmprintf(MSG_211), lmprintf(MSG_041)); } else { SendMessage(hProgress, PBM_SETSTATE, (WPARAM)PBST_ERROR, 0); SetTaskbarProgressState(TASKBAR_ERROR); PrintInfo(0, MSG_212); MessageBeep(MB_ICONERROR); FlashTaskbar(dialog_handle); - GetProcessSearch(0, 0x07, FALSE); + GetProcessSearch(0, 0x07, TRUE); + // TODO: Fix/Improve this if (BlockingProcessList.Index > 0) { ListDialog(lmprintf(MSG_042), lmprintf(MSG_055), BlockingProcessList.String, BlockingProcessList.Index); } else { @@ -3163,7 +3252,7 @@ static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPA CyclePort(index); } } - Notification(MSG_ERROR, NULL, NULL, lmprintf(MSG_042), lmprintf(MSG_043, StrError(ErrorStatus, FALSE))); + Notification(MB_ICONERROR | MB_CLOSE, lmprintf(MSG_042), lmprintf(MSG_043, StrError(ErrorStatus, FALSE))); } } ErrorStatus = 0; @@ -3329,7 +3418,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine is_x86_64 = (strcmp(APPLICATION_ARCH, "x64") == 0); // Retrieve various app & system directories. - if (GetCurrentDirectoryU(sizeof(app_dir), app_dir) == 0) { + if (GetAppDirectoryU(sizeof(app_dir), app_dir) == 0) { uprintf("Could not get application directory: %s", WindowsErrorString()); static_strcpy(app_dir, ".\\"); } else { @@ -3340,7 +3429,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine static_strcat(app_dir, "\\"); } - // In the wonderful world of Microsoft Windows, GetCurrentDirectory() returns the + // In the wonderful world of Microsoft Windows, GetCurrentDirectory() may return the // directory where the application resides, instead of the real current directory // so we need another method to resolve the *ACTUAL* current directory. static_strcpy(cur_dir, ".\\"); @@ -3561,9 +3650,19 @@ skip_args_processing: // Look for a .ini file in the current app directory static_sprintf(ini_path, "%srufus.ini", app_dir); fd = fopenU(ini_path, ini_flags); // Will create the file if portable mode is requested +#if !defined(ALPHA) // Using the string directly in safe_strcmp() would call GetSignatureName() twice - tmp = GetSignatureName(NULL, NULL, FALSE); + tmp = GetSignatureName(NULL, NULL, NULL, FALSE); vc |= (safe_strcmp(tmp, cert_name[0]) == 0); +#else + // So as not to multiply user prompts, as well as officialize our own GitHub builds, + // we sign ALPHAs using disposable (non Authenticode) self-signed credentials. + static const uint8_t github_thumbprint[SHA1_HASHSIZE] = + { 0xc9, 0x00, 0x1c, 0x67, 0x25, 0x16, 0x83, 0x2b, 0x1a, 0x61, 0xf4, 0x5f, 0x1a, 0x26, 0xd5, 0x76, 0xda, 0xab, 0x06, 0xdf }; + uint8_t thumbprint[SHA1_HASHSIZE] = { 0 }; + tmp = GetSignatureName(NULL, NULL, thumbprint, FALSE); + vc |= (safe_strcmp(tmp, "Rufus - GitHub Official Build") == 0) && (memcmp(thumbprint, github_thumbprint, SHA1_HASHSIZE) == 0); +#endif if (fd != NULL) { ini_file = ini_path; // In portable mode, use the app directory for all local storage @@ -3630,17 +3729,17 @@ skip_args_processing: // If we don't have a working temp API, forget it uprintf("FATAL: Unable to create temp loc file: %s", WindowsErrorString()); MessageBoxA(NULL, "Unable to create temporary localization file. This application will now exit.", - "Fatal error", MB_ICONSTOP | MB_SYSTEMMODAL); + "Fatal error", MB_ICONERROR | MB_SYSTEMMODAL); goto out; } - hFile = CreateFileU(loc_file, GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ, + hFile = CreateFileU(loc_file, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if ((hFile == INVALID_HANDLE_VALUE) || (!WriteFileWithRetry(hFile, loc_data, loc_size, &size, WRITE_RETRIES))) { uprintf("FATAL: Unable to extract loc file '%s': %s", loc_file, WindowsErrorString()); safe_closehandle(hFile); MessageBoxA(NULL, "Unable to extract localization file. This application will now exit.", - "Fatal error", MB_ICONSTOP | MB_SYSTEMMODAL); + "Fatal error", MB_ICONERROR | MB_SYSTEMMODAL); goto out; } uprintf("localization: extracted data to '%s'", loc_file); @@ -3652,10 +3751,11 @@ skip_args_processing: } if ( (!get_supported_locales(loc_file)) - || ((selected_locale = ((locale_name == NULL)?get_locale_from_lcid(lcid, TRUE):get_locale_from_name(locale_name, TRUE))) == NULL) ) { + || ((selected_locale = ((locale_name == NULL) ? + get_locale_from_lcid(lcid, TRUE) : get_locale_from_name(locale_name, TRUE))) == NULL) ) { uprintf("FATAL: Could not access locale!"); MessageBoxA(NULL, "The locale data is missing or invalid. This application will now exit.", - "Fatal error", MB_ICONSTOP|MB_SYSTEMMODAL); + "Fatal error", MB_ICONERROR | MB_SYSTEMMODAL); goto out; } selected_langid = get_language_id(selected_locale); @@ -3673,11 +3773,10 @@ skip_args_processing: get_loc_data_file(loc_file, selected_locale); right_to_left_mode = ((selected_locale->ctrl_id) & LOC_RIGHT_TO_LEFT); // Set MB_SYSTEMMODAL to prevent Far Manager from stealing focus... - MessageBoxExU(NULL, - lmprintf(MSG_294, + MessageBoxExU(NULL, lmprintf(MSG_294, (WindowsVersion.Version == WINDOWS_7) ? 3 : 2, (WindowsVersion.Version == WINDOWS_7) ? 22 : 18), - lmprintf(MSG_293), MB_ICONSTOP | MB_IS_RTL | MB_SYSTEMMODAL, selected_langid); + lmprintf(MSG_293), MB_ICONERROR | MB_IS_RTL | MB_SYSTEMMODAL, selected_langid); goto out; } @@ -3688,7 +3787,7 @@ skip_args_processing: // Load the translation before we print the error get_loc_data_file(loc_file, selected_locale); right_to_left_mode = ((selected_locale->ctrl_id) & LOC_RIGHT_TO_LEFT); - MessageBoxExU(NULL, lmprintf(MSG_289), lmprintf(MSG_288), MB_ICONSTOP | MB_IS_RTL | MB_SYSTEMMODAL, selected_langid); + MessageBoxExU(NULL, lmprintf(MSG_289), lmprintf(MSG_288), MB_ICONERROR | MB_IS_RTL | MB_SYSTEMMODAL, selected_langid); goto out; } @@ -3707,7 +3806,8 @@ skip_args_processing: get_loc_data_file(loc_file, selected_locale); right_to_left_mode = ((selected_locale->ctrl_id) & LOC_RIGHT_TO_LEFT); // Set MB_SYSTEMMODAL to prevent Far Manager from stealing focus... - MessageBoxExU(NULL, lmprintf(MSG_002), lmprintf(MSG_001), MB_ICONSTOP|MB_IS_RTL|MB_SYSTEMMODAL, selected_langid); + MessageBoxExU(NULL, lmprintf(MSG_002), lmprintf(MSG_001), + MB_ICONERROR | MB_IS_RTL | MB_SYSTEMMODAL, selected_langid); goto out; } @@ -3746,6 +3846,11 @@ skip_args_processing: static_sprintf(tmp_path, "%s\\dism\\FfuProvider.dll", sysnative_dir); has_ffu_support = (_accessU(tmp_path, 0) == 0); + // Detect if bcdboot supports the /offline /bootex options (v10.0.26100.0 or later) + static_sprintf(tmp_path, "%s\\bcdboot.exe", sysnative_dir); + bcdboot_supports_ex = (version_to_uint64(GetExecutableVersion(tmp_path)) >= 0x000A000065F40000); + uprintf("Detected bcdboot %s EX options", bcdboot_supports_ex ? "with" : "without"); + relaunch: ubprintf("Localization set to '%s'", selected_locale->txt[0]); right_to_left_mode = ((selected_locale->ctrl_id) & LOC_RIGHT_TO_LEFT); @@ -3774,7 +3879,7 @@ relaunch: hDlg = MyCreateDialog(hInstance, IDD_DIALOG, NULL, MainCallback); if (hDlg == NULL) { MessageBoxExU(NULL, "Could not create Window", "DialogBox failure", - MB_ICONSTOP|MB_IS_RTL|MB_SYSTEMMODAL, selected_langid); + MB_OK | MB_ICONERROR | MB_IS_RTL | MB_SYSTEMMODAL, selected_langid); goto out; } if ((relaunch_rc.left > -65536) && (relaunch_rc.top > -65536)) @@ -3789,7 +3894,7 @@ relaunch: // Set the hook to automatically close Windows' "You need to format the disk in drive..." prompt SetAlertPromptMessages(); if (!SetAlertPromptHook()) - uprintf("Warning: Could not set alert prompt hook"); + uprintf("WARNING: Could not set alert prompt hook"); ShowWindow(hDlg, SW_SHOWNORMAL); UpdateWindow(hDlg); @@ -4009,7 +4114,7 @@ extern int TestHashes(void); } // Alt-O => Save from Optical drive to ISO if ((msg.message == WM_SYSKEYDOWN) && (msg.wParam == 'O')) { - IsoSaveImage(); + OpticalDiscSaveImage(); continue; } // Alt-P => Toggle GPT ESP to and from Basic Data type (Windows 10 or later) @@ -4111,6 +4216,16 @@ extern int TestHashes(void); } // Other hazardous cheat modes require Ctrl + Alt + // Ctrl-Alt-D => Toggle dark mode and restart. Note that if you enable this, then + // unless you *MANUALLY* delete the registry key, Rufus always forces the mode. + if ((msg.message == WM_KEYDOWN) && (msg.wParam == 'D') && + (GetKeyState(VK_CONTROL) & 0x8000) && (GetKeyState(VK_MENU) & 0x8000)) { + WriteSetting32(SETTING_DARK_MODE, is_darkmode_enabled ? 2 : 1); + selected_fs = (int)ComboBox_GetCurItemData(hFileSystem); + relaunch = TRUE; + PostMessage(hDlg, WM_COMMAND, IDCANCEL, 0); + continue; + } // Ctrl-Alt-E => Expert Mode if ((msg.message == WM_KEYDOWN) && (msg.wParam == 'E') && (GetKeyState(VK_CONTROL) & 0x8000) && (GetKeyState(VK_MENU) & 0x8000)) { @@ -4189,6 +4304,7 @@ out: uprintf("Could not delete '%s': %s", loc_file, WindowsErrorString()); } DestroyAllTooltips(); + DestroyDarkModeGDIObjects(); ClrAlertPromptHook(); exit_localization(); safe_free(image_path); diff --git a/src/rufus.h b/src/rufus.h index 1a703f7f..b276ff86 100644 --- a/src/rufus.h +++ b/src/rufus.h @@ -1,6 +1,6 @@ /* * Rufus: The Reliable USB Formatting Utility - * Copyright © 2011-2025 Pete Batard + * Copyright © 2011-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -87,7 +87,7 @@ #define MAX_IGNORE_USB 8 // Maximum number of USB drives we want to ignore #define MAX_ISO_TO_ESP_SIZE (1 * GB) // Maximum size we allow for the ISO → ESP option #define MAX_DEFAULT_LIST_CARD_SIZE (500 * GB) // Size above which we don't list a card without enable HDD or Alt-F -#define MAX_SECTORS_TO_CLEAR 128 // nb sectors to zap when clearing the MBR/GPT (must be >34) +#define MAX_SECTORS_TO_CLEAR (8 * MB / 512) // Sectors to zap when clearing the MBR/GPT (must be >34) #define MAX_USERNAME_LENGTH 128 // Maximum size we'll accept for a WUE specified username #define MAX_WININST 4 // Max number of install[.wim|.esd] we can handle on an image #define MAX_MARKER 80.0f // Max number of '+' signs we display for progress @@ -129,14 +129,32 @@ #define FILES_DIR APPLICATION_NAME #define FIDO_VERSION "z1" #define WPPRECORDER_MORE_INFO_URL "https://github.com/pbatard/rufus/wiki/FAQ#bsods-with-windows-to-go-drives-created-from-windows-10-1809-isos" -#define SEVENZIP_URL "https://7-zip.org/" // Generated by following https://randomascii.wordpress.com/2013/03/09/symbols-the-microsoft-way/ #define DISKCOPY_URL "https://msdl.microsoft.com/download/symbols/diskcopy.dll/54505118173000/diskcopy.dll" +#define DISKCOPY_HASH "95fc0786f5bc0a6db5c0604b31ac18fbed0502a2c6858e5fb02a647983ae03c7" #define DISKCOPY_SIZE 0x16ee00 #define DISKCOPY_IMAGE_OFFSET 0x66d8 #define DISKCOPY_IMAGE_SIZE 0x168000 +#if defined(_M_AMD64) +#define OSCDIMG_URL "https://msdl.microsoft.com/download/symbols/oscdimg.exe/688CABB065000/oscdimg.exe" +#define OSCDIMG_HASH "2000160b2c5044691b2f9a0ac308e5207f273d4880a572457af16d05886ba861" +#elif defined(_M_IX86) +#define OSCDIMG_URL "https://msdl.microsoft.com/download/symbols/oscdimg.exe/704FD1B760000/oscdimg.exe" +#define OSCDIMG_HASH "cbd6872265d44e88897905bdc47f7035d64ad1775ab890ea59db13ec92d867eb" +#elif defined(_M_ARM64) +#define OSCDIMG_URL "https://msdl.microsoft.com/download/symbols/oscdimg.exe/02633D8D66000/oscdimg.exe" +#define OSCDIMG_HASH "80c059815d82fca009841143a821f79c8ac78dba12bb63dc07842f1a2a552666" +#elif defined(_M_ARM) +#define OSCDIMG_URL "https://msdl.microsoft.com/download/symbols/oscdimg.exe/9CD825745F000/oscdimg.exe" +#define OSCDIMG_HASH "5ecd9956da589baa65806c884a55f9303ec6c6c559bdeb8afe00c72614a24c7a" +#endif #define SYMBOL_SERVER_USER_AGENT "Microsoft-Symbol-Server/10.0.22621.755" #define DEFAULT_ESP_MOUNT_POINT "S:\\" +// Per https://learn.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/microsoft-windows-shell-setup-useraccounts-localaccounts-localaccount-name +// and https://learn.microsoft.com/en-us/previous-versions/cc722458(v=technet.10)#user-name-policies +// Add '.' to the list because some folks also reported an issue with local accounts that have dots. +// Also add '&', even as it could be escaped, as it's just not worth the trouble... +#define USERNAME_INVALID_CHARS "/\\[]:;|=.,+*?<>%@&\"" #define IS_POWER_OF_2(x) ((x != 0) && (((x) & ((x) - 1)) == 0)) #define IGNORE_RETVAL(expr) do { (void)(expr); } while(0) #ifndef ARRAYSIZE @@ -159,7 +177,7 @@ #define safe_mm_free(p) do { _mm_free((void*)p); p = NULL; } while(0) static __inline void safe_strcp(char* dst, const size_t dst_max, const char* src, const size_t count) { memmove(dst, src, min(count, dst_max)); - dst[min(count, dst_max) - 1] = 0; + if (dst != NULL) dst[min(count, dst_max) - 1] = 0; } #define safe_strcpy(dst, dst_max, src) safe_strcp(dst, dst_max, src, safe_strlen(src) + 1) #define static_strcpy(dst, src) safe_strcpy(dst, sizeof(dst), src) @@ -179,7 +197,7 @@ static __inline void safe_strcp(char* dst, const size_t dst_max, const char* src HIMAGELIST _hImageList = (HIMAGELIST)SendMessage(hToolbar, TB_GETIMAGELIST, (WPARAM)0, (LPARAM)0); \ safe_destroy_imagelist(_hImageList); } } while(0) #define safe_sprintf(dst, count, ...) do { size_t _count = count; char* _dst = dst; _snprintf_s(_dst, _count, _TRUNCATE, __VA_ARGS__); \ - _dst[(_count) - 1] = 0; } while(0) + if (_dst != NULL) _dst[(_count) - 1] = 0; } while(0) #define static_sprintf(dst, ...) safe_sprintf(dst, sizeof(dst), __VA_ARGS__) #define safe_atoi(str) ((((char*)(str))==NULL) ? 0 : atoi(str)) #define safe_strlen(str) ((((char*)(str))==NULL) ? 0 : strlen(str)) @@ -196,7 +214,8 @@ static __inline void static_repchr(char* p, char s, char r) { } #define to_unix_path(str) static_repchr(str, '\\', '/') #define to_windows_path(str) static_repchr(str, '/', '\\') -#define if_not_assert(cond) assert(cond); if (!(cond)) +#define if_assert_fails(cond) assert(cond); if (!(cond)) +#define if_assert_succeeds(cond) assert(cond); if ((cond)) extern void uprintf(const char *format, ...); extern void uprintfs(const char *str); @@ -234,13 +253,7 @@ enum user_message_type { }; /* Custom notifications */ -enum notification_type { - MSG_INFO, - MSG_WARNING, - MSG_ERROR, - MSG_QUESTION, - MSG_WARNING_QUESTION -}; +#define MB_CLOSE 0x0F typedef INT_PTR (CALLBACK *Callback_t)(HWND, UINT, WPARAM, LPARAM); typedef struct { WORD id; @@ -370,7 +383,7 @@ enum EFI_BOOT_TYPE { #define HAS_NTFSLESS_GRUB(r)((r.has_grub2 & 0x80) && !(r.has_grub2_fs & 0x4)) #define IS_WINDOWS_1X(r) (r.has_bootmgr_efi && (r.win_version.major >= 10)) #define IS_WINDOWS_11(r) (r.has_bootmgr_efi && (r.win_version.major >= 11)) -#define IS_FAT32_COMPAT(r) (((r.has_4GB_file == 0 && !HAS_FATLESS_GRUB(r)) || (r.has_4GB_file == 0x81 && allow_dual_uefi_bios)) && !r.needs_ntfs) +#define IS_FAT32_COMPAT(r) (((r.has_4GB_file == 0 && !HAS_FATLESS_GRUB(r)) || (r.has_4GB_file == 0x11 && allow_dual_uefi_bios)) && !r.needs_ntfs) #define HAS_EFI_IMG(r) (r.efi_img_path[0] != 0) #define IS_DD_BOOTABLE(r) (r.is_bootable_img > 0) #define IS_DD_ONLY(r) ((r.is_bootable_img > 0) && (!r.is_iso || r.disable_iso)) @@ -505,7 +518,7 @@ typedef struct { * EXT_DECL(my_extensions, "default.std", __VA_GROUP__("*.std", "*.other"), __VA_GROUP__("Standard type", "Other Type")); * to define an 'ext_t my_extensions' variable initialized with the relevant attributes. */ -typedef struct ext_t { +typedef struct { size_t count; const char* filename; const char** extension; @@ -650,11 +663,14 @@ enum WindowsVersion { }; typedef struct { - DWORD Major; - DWORD Minor; - DWORD Micro; - DWORD Nano; + WORD Major; + WORD Minor; + WORD Micro; + WORD Nano; } version_t; +static __inline uint64_t version_to_uint64(version_t* ver) { + return (uint64_t)ver->Major << 48 | (uint64_t)ver->Minor << 32 | (uint64_t)ver->Micro << 16 | ver->Nano; +} typedef struct { DWORD Version; @@ -677,15 +693,19 @@ typedef struct { #define UNATTEND_DISABLE_BITLOCKER 0x00080 #define UNATTEND_FORCE_S_MODE 0x00100 #define UNATTEND_USE_MS2023_BOOTLOADERS 0x00200 -#define UNATTEND_FULL_MASK 0x003FF -#define UNATTEND_DEFAULT_MASK 0x000FF +#define UNATTEND_APPLY_SKUSIPOLICY 0x00400 +#define UNATTEND_SILENT_INSTALL 0x00800 +#define UNATTEND_QOL_ENHANCEMENTS 0x01000 +#define UNATTEND_FULL_MASK 0x01FFF +#define UNATTEND_DEFAULT_MASK 0x016FF // Mask of values that are persisted #define UNATTEND_WINDOWS_TO_GO 0x10000 // Special flag for Windows To Go -#define UNATTEND_WINPE_SETUP_MASK (UNATTEND_SECUREBOOT_TPM_MINRAM) -#define UNATTEND_SPECIALIZE_DEPLOYMENT_MASK (UNATTEND_NO_ONLINE_ACCOUNT) -#define UNATTEND_OOBE_SHELL_SETUP_MASK (UNATTEND_NO_DATA_COLLECTION | UNATTEND_SET_USER | UNATTEND_DUPLICATE_LOCALE) +#define UNATTEND_WINPE_SETUP_MASK (UNATTEND_SECUREBOOT_TPM_MINRAM | UNATTEND_SILENT_INSTALL) +#define UNATTEND_SPECIALIZE_DEPLOYMENT_MASK (UNATTEND_NO_ONLINE_ACCOUNT | UNATTEND_QOL_ENHANCEMENTS) +#define UNATTEND_OOBE_SHELL_SETUP_MASK (UNATTEND_NO_DATA_COLLECTION | UNATTEND_SET_USER | UNATTEND_DUPLICATE_LOCALE | UNATTEND_SILENT_INSTALL) #define UNATTEND_OOBE_INTERNATIONAL_MASK (UNATTEND_DUPLICATE_LOCALE) -#define UNATTEND_OOBE_MASK (UNATTEND_OOBE_SHELL_SETUP_MASK | UNATTEND_OOBE_INTERNATIONAL_MASK | UNATTEND_DISABLE_BITLOCKER | UNATTEND_USE_MS2023_BOOTLOADERS) +#define UNATTEND_OOBE_MASK (UNATTEND_OOBE_SHELL_SETUP_MASK | UNATTEND_OOBE_INTERNATIONAL_MASK | UNATTEND_DISABLE_BITLOCKER | \ + UNATTEND_USE_MS2023_BOOTLOADERS | UNATTEND_APPLY_SKUSIPOLICY | UNATTEND_QOL_ENHANCEMENTS) #define UNATTEND_OFFLINE_SERVICING_MASK (UNATTEND_OFFLINE_INTERNAL_DRIVES | UNATTEND_FORCE_S_MODE) #define UNATTEND_DEFAULT_SELECTION_MASK (UNATTEND_SECUREBOOT_TPM_MINRAM | UNATTEND_NO_ONLINE_ACCOUNT | UNATTEND_OFFLINE_INTERNAL_DRIVES) @@ -716,7 +736,6 @@ typedef struct { uint32_t Index; // Current array size uint32_t Max; // Maximum array size } StrArray; -#define STRARRAY_EMPTY { NULL, 0, 0 }; extern void StrArrayCreate(StrArray* arr, uint32_t initial_size); extern int32_t StrArrayAdd(StrArray* arr, const char* str, BOOL); extern int32_t StrArrayAddUnique(StrArray* arr, const char* str, BOOL); @@ -725,6 +744,21 @@ extern void StrArrayClear(StrArray* arr); extern void StrArrayDestroy(StrArray* arr); #define IsStrArrayEmpty(arr) (arr.Index == 0) +// Options for the custom selection dialog +#define SELECTION_NEEDS_ALL_TO_PROCEED 1 +#define SELECTION_USE_WARNING_ICON 2 +typedef struct { + int style; + int mask; + int flags; + int username_index; + int edition_index; + int regional_index; + int privacy_index; + StrArray choices; + StrArray tooltips; +} selection_dialog_options_t; + /* * Globals */ @@ -760,6 +794,8 @@ extern StrArray modified_files; * Shared prototypes */ extern void GetWindowsVersion(windows_version_t* WindowsVersion); +extern const char* GetEditionName(DWORD ProductType); +extern int GetEditions(StrArray* version_name, StrArray* version_index); extern version_t* GetExecutableVersion(const char* path); extern const char* WindowsErrorString(void); extern void DumpBufferHex(void *buf, size_t size); @@ -776,7 +812,7 @@ extern void _UpdateProgressWithInfo(int op, int msg, uint64_t processed, uint64_ #define UpdateProgressWithInfoInit(hProgressDialog, bNoAltMode) UpdateProgressWithInfo(OP_INIT, (int)bNoAltMode, (uint64_t)(uintptr_t)hProgressDialog, 0); extern const char* StrError(DWORD error_code, BOOL use_default_locale); extern char* GuidToString(const GUID* guid, BOOL bDecorated); -extern GUID* StringToGuid(const char* str); +extern GUID StringToGuid(const char* str); extern char* SizeToHumanReadable(uint64_t size, BOOL copy_to_log, BOOL fake_units); extern char* TimestampToHumanReadable(uint64_t ts); extern HWND MyCreateDialog(HINSTANCE hInstance, int Dialog_ID, HWND hWndParent, DLGPROC lpDialogFunc); @@ -786,17 +822,20 @@ extern void ResizeMoveCtrl(HWND hDlg, HWND hCtrl, int dx, int dy, int dw, int dh extern void ResizeButtonHeight(HWND hDlg, int id); extern void CreateStatusBar(HFONT* hFont); extern void CreateStaticFont(HDC hDC, HFONT* hFont, BOOL underlined); +extern void SetHyperLinkFont(HWND hWnd, HDC hDC, HFONT* hFont, BOOL underlined); extern void SetTitleBarIcon(HWND hDlg); extern BOOL CreateTaskbarList(void); extern BOOL SetTaskbarProgressState(TASKBAR_PROGRESS_FLAGS tbpFlags); extern BOOL SetTaskbarProgressValue(ULONGLONG ullCompleted, ULONGLONG ullTotal); extern INT_PTR CreateAboutBox(void); -extern BOOL CreateTooltip(HWND hControl, const char* message, int duration); -extern void DestroyTooltip(HWND hWnd); +extern BOOL CreateTooltipEx(HWND hDlg, HWND hControl, const char* message, int duration); +#define CreateTooltip(hControl, message, duration) CreateTooltipEx(hMainDialog, hControl, message, duration) +extern void PopTooltip(HWND hControl); +extern void DestroyTooltip(HWND hControl); extern void DestroyAllTooltips(void); -extern BOOL Notification(int type, const char* dont_display_setting, const notification_info* more_info, char* title, char* format, ...); -extern int CustomSelectionDialog(int style, char* title, char* message, char** choices, int size, int mask, int username_index); -#define SelectionDialog(title, message, choices, size) CustomSelectionDialog(BS_AUTORADIOBUTTON, title, message, choices, size, 1, -1) +extern int NotificationEx(int type, const char* dont_display_setting, const notification_info* more_info, const char* title, const char* format, ...); +#define Notification(type, title, ...) NotificationEx(type, NULL, NULL, title, __VA_ARGS__) +extern int SelectionDialog(char* title, char* message, selection_dialog_options_t* options); extern void ListDialog(char* title, char* message, char** items, int size); extern SIZE GetTextSize(HWND hCtrl, char* txt); extern BOOL ExtractAppIcon(const char* filename, BOOL bSilent); @@ -805,9 +844,8 @@ extern BOOL ExtractISO(const char* src_iso, const char* dest_dir, BOOL scan); extern BOOL ExtractZip(const char* src_zip, const char* dest_dir); extern int64_t ExtractISOFile(const char* iso, const char* iso_file, const char* dest_file, DWORD attributes); extern uint32_t ReadISOFileToBuffer(const char* iso, const char* iso_file, uint8_t** buf); -extern BOOL CopySKUSiPolicy(const char* drive_name); -extern BOOL HasEfiImgBootLoaders(void); -extern BOOL DumpFatDir(const char* path, int32_t cluster); +extern BOOL HasEfiImgBootLoaders(void* iso); +extern BOOL DumpFatDir(void* iso, const char* path, int32_t cluster); extern BOOL InstallSyslinux(DWORD drive_index, char drive_letter, int fs); extern uint16_t GetSyslinuxVersion(char* buf, size_t buf_size, char** ext); extern BOOL SetAutorun(const char* path); @@ -815,8 +853,8 @@ extern char* FileDialog(BOOL save, char* path, const ext_t* ext, UINT* selected_ extern BOOL FileIO(enum file_io_type io_type, char* path, char** buffer, DWORD* size); extern uint8_t* GetResource(HMODULE module, char* name, char* type, const char* desc, DWORD* len, BOOL duplicate); extern DWORD GetResourceSize(HMODULE module, char* name, char* type, const char* desc); -extern DWORD RunCommandWithProgress(const char* cmdline, const char* dir, BOOL log, int msg); -#define RunCommand(cmd, dir, log) RunCommandWithProgress(cmd, dir, log, 0) +extern DWORD RunCommandWithProgress(const char* cmdline, const char* dir, BOOL log, int msg, const char* pattern); +#define RunCommand(cmd, dir, log) RunCommandWithProgress(cmd, dir, log, 0, NULL) extern BOOL CompareGUID(const GUID *guid1, const GUID *guid2); extern BOOL MountRegistryHive(const HKEY key, const char* pszHiveName, const char* pszHivePath); extern BOOL UnmountRegistryHive(const HKEY key, const char* pszHiveName); @@ -845,17 +883,18 @@ extern char* get_token_data_buffer(const char* token, unsigned int n, const char extern char* insert_section_data(const char* filename, const char* section, const char* data, BOOL dos2unix); extern char* replace_in_token_data(const char* filename, const char* token, const char* src, const char* rep, BOOL dos2unix); extern char* replace_char(const char* src, const char c, const char* rep); +extern void filter_chars(char* str, const char* rem, const char rep); +extern void trim(char* str); extern char* remove_substr(const char* src, const char* sub); extern void parse_update(char* buf, size_t len); extern void* get_data_from_asn1(const uint8_t* buf, size_t buf_len, const char* oid_str, uint8_t asn1_type, size_t* data_len); extern int sanitize_label(char* label); extern int IsHDD(DWORD DriveIndex, uint16_t vid, uint16_t pid, const char* strid); -extern char* GetSignatureName(const char* path, const char* country_code, BOOL bSilent); +extern char* GetSignatureName(const char* path, const char* country_code, uint8_t* thumbprint, BOOL bSilent); extern int GetIssuerCertificateInfo(uint8_t* cert, cert_info_t* info); extern uint64_t GetSignatureTimeStamp(const char* path); extern LONG ValidateSignature(HWND hDlg, const char* path); extern BOOL ValidateOpensslSignature(BYTE* pbBuffer, DWORD dwBufferLen, BYTE* pbSignature, DWORD dwSigLen); -extern BOOL ParseSKUSiPolicy(void); extern BOOL IsFontAvailable(const char* font_name); extern BOOL WriteFileWithRetry(HANDLE hFile, LPCVOID lpBuffer, DWORD nNumberOfBytesToWrite, LPDWORD lpNumberOfBytesWritten, DWORD nNumRetries); @@ -869,6 +908,9 @@ extern BOOL HashFile(const unsigned type, const char* path, uint8_t* sum); extern BOOL PE256Buffer(uint8_t* buf, uint32_t len, uint8_t* hash); extern void UpdateMD5Sum(const char* dest_dir, const char* md5sum_name); extern BOOL HashBuffer(const unsigned type, const uint8_t* buf, const size_t len, uint8_t* sum); +extern uint8_t* StringToHash(const char* str); +extern BOOL FileMatchesHash(const char* path, const char* str); +extern BOOL BufferMatchesHash(const uint8_t* buf, const size_t len, const char* str); extern BOOL IsFileInDB(const char* path); extern BOOL IsSignedBySecureBootAuthority(uint8_t* buf, uint32_t len); extern int IsBootloaderRevoked(uint8_t* buf, uint32_t len); @@ -955,9 +997,14 @@ out: #define PF_TYPE_DECL(api, ret, proc, args) PF_TYPE(api, ret, proc, args); PF_DECL(proc) #define PF_INIT(proc, name) if (pf##proc == NULL) pf##proc = \ (proc##_t) GetProcAddress(GetLibraryHandle(#name), #proc) +#define PF_INIT_ID(proc, name, id) if (pf##proc == NULL) pf##proc = \ + (proc##_t) GetProcAddress(GetLibraryHandle(#name), MAKEINTRESOURCEA(id)) #define PF_INIT_OR_OUT(proc, name) do {PF_INIT(proc, name); \ if (pf##proc == NULL) {uprintf("Unable to locate %s() in '%s.dll': %s", \ #proc, #name, WindowsErrorString()); goto out;} } while(0) +#define PF_INIT_ID_OR_OUT(proc, name, id) do {PF_INIT_ID(proc, name, id); \ + if (pf##proc == NULL) {uprintf("Unable to locate %s() in %s.dll: %s\n", \ + #proc, #name, WindowsErrorString()); goto out;} } while(0) #define PF_INIT_OR_SET_STATUS(proc, name) do {PF_INIT(proc, name); \ if ((pf##proc == NULL) && (NT_SUCCESS(status))) status = STATUS_PROCEDURE_NOT_FOUND; } while(0) #if defined(_MSC_VER) diff --git a/src/rufus.rc b/src/rufus.rc index 006d9117..abdf1754 100644 --- a/src/rufus.rc +++ b/src/rufus.rc @@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL IDD_DIALOG DIALOGEX 12, 12, 232, 326 STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_ACCEPTFILES -CAPTION "Rufus 4.8.2253" +CAPTION "Rufus 4.15.2396" FONT 9, "Segoe UI Symbol", 400, 0, 0x0 BEGIN LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP @@ -145,6 +145,7 @@ BEGIN PUSHBUTTON "Yes",IDYES,148,53,50,14,NOT WS_VISIBLE CONTROL "Do not show this message again",IDC_DONT_DISPLAY_AGAIN, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,8,39,248,10,WS_EX_TRANSPARENT + PUSHBUTTON "Abort",IDABORT,91,53,50,14,NOT WS_VISIBLE END IDD_SELECTION DIALOGEX 0, 0, 312, 71 @@ -175,6 +176,7 @@ BEGIN CONTROL "Choice 15",IDC_SELECTION_CHOICE15,"Button",BS_AUTORADIOBUTTON | NOT WS_VISIBLE | WS_TABSTOP,35,200,269,10,WS_EX_TRANSPARENT CONTROL "Choice 16",IDC_SELECTION_CHOICEMAX,"Button",BS_AUTORADIOBUTTON | NOT WS_VISIBLE | WS_TABSTOP,35,213,269,10,WS_EX_TRANSPARENT EDITTEXT IDC_SELECTION_USERNAME,197,57,0,9,ES_AUTOHSCROLL | NOT WS_VISIBLE | WS_TABSTOP | WS_BORDER + COMBOBOX IDC_SELECTION_EDITION,197,57,0,9,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP END IDD_LIST DIALOGEX 0, 0, 312, 59 @@ -211,7 +213,7 @@ CAPTION "Update policy and settings" FONT 9, "Segoe UI Symbol", 400, 0, 0x0 BEGIN ICON IDI_ICON,IDC_ABOUT_ICON,11,8,20,20 - CONTROL "",IDC_POLICY,"RichEdit20W",WS_VSCROLL | WS_TABSTOP | 0x804,46,8,235,132,WS_EX_STATICEDGE + CONTROL "",IDC_POLICY,"RichEdit20W",WS_VSCROLL | WS_TABSTOP | 0x804,45,8,236,132,WS_EX_STATICEDGE GROUPBOX "Settings",IDS_UPDATE_SETTINGS_GRP,45,145,165,46 LTEXT "Check for updates",IDS_UPDATE_FREQUENCY_TXT,51,158,80,10 COMBOBOX IDC_UPDATE_FREQUENCY,133,158,66,12,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP @@ -407,8 +409,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 4,8,2253,0 - PRODUCTVERSION 4,8,2253,0 + FILEVERSION 4,15,2396,0 + PRODUCTVERSION 4,15,2396,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -426,13 +428,13 @@ BEGIN VALUE "Comments", "https://rufus.ie" VALUE "CompanyName", "Akeo Consulting" VALUE "FileDescription", "Rufus" - VALUE "FileVersion", "4.8.2253" + VALUE "FileVersion", "4.15.2396" VALUE "InternalName", "Rufus" - VALUE "LegalCopyright", " 2011-2025 Pete Batard (GPL v3)" + VALUE "LegalCopyright", " 2011-2026 Pete Batard (GPL v3)" VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html" - VALUE "OriginalFilename", "rufus-4.8.exe" + VALUE "OriginalFilename", "rufus-4.15.exe" VALUE "ProductName", "Rufus" - VALUE "ProductVersion", "4.8.2253" + VALUE "ProductVersion", "4.15.2396" END END BLOCK "VarFileInfo" diff --git a/src/settings.h b/src/settings.h index 734a9584..b6bcf66a 100644 --- a/src/settings.h +++ b/src/settings.h @@ -33,6 +33,7 @@ extern char* ini_file; #define SETTING_ADVANCED_MODE_FORMAT "ShowAdvancedFormatOptions" #define SETTING_COMM_CHECK "CommCheck64" #define SETTING_DEFAULT_THREAD_PRIORITY "DefaultThreadPriority" +#define SETTING_DARK_MODE "DarkMode" #define SETTING_DISABLE_FAKE_DRIVES_CHECK "DisableFakeDrivesCheck" #define SETTING_DISABLE_LGP "DisableLGP" #define SETTING_DISABLE_RUFUS_MBR "DisableRufusMBR" diff --git a/src/stdfn.c b/src/stdfn.c index f42b5440..4014f777 100644 --- a/src/stdfn.c +++ b/src/stdfn.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Standard Windows function calls - * Copyright © 2013-2025 Pete Batard + * Copyright © 2013-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,8 +28,8 @@ #include #include -#include "re.h" #include "rufus.h" +#include "cregex.h" #include "missing.h" #include "resource.h" #include "msapi_utf8.h" @@ -82,8 +82,8 @@ BOOL htab_create(uint32_t nel, htab_table* htab) if (htab == NULL) { return FALSE; } - if_not_assert(htab->table == NULL) { - uprintf("Warning: htab_create() was called with a non empty table"); + if_assert_fails(htab->table == NULL) { + uprintf("WARNING: htab_create() was called with a non empty table"); return FALSE; } @@ -198,7 +198,7 @@ uint32_t htab_hash(char* str, htab_table* htab) // Not found => New entry // If the table is full return an error - if_not_assert(htab->filled < htab->size) { + if_assert_fails(htab->filled < htab->size) { uprintf("Hash table is full (%d entries)", htab->size); return 0; } @@ -216,109 +216,109 @@ uint32_t htab_hash(char* str, htab_table* htab) return idx; } -static const char* GetEdition(DWORD ProductType) +const char* GetEditionName(DWORD ProductType) { - static char unknown_edition_str[64]; + static char unknown_edition_str[64] = ""; // From: https://docs.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getproductinfo // These values can be found in the winnt.h header. switch (ProductType) { case 0x00000000: return ""; // Undefined - case 0x00000001: return "Ultimate"; - case 0x00000002: return "Home Basic"; - case 0x00000003: return "Home Premium"; - case 0x00000004: return "Enterprise"; - case 0x00000005: return "Home Basic N"; - case 0x00000006: return "Business"; - case 0x00000007: return "Server Standard"; - case 0x00000008: return "Server Datacenter"; - case 0x00000009: return "Smallbusiness Server"; - case 0x0000000A: return "Server Enterprise"; - case 0x0000000B: return "Starter"; - case 0x0000000C: return "Server Datacenter (Core)"; - case 0x0000000D: return "Server Standard (Core)"; - case 0x0000000E: return "Server Enterprise (Core)"; - case 0x00000010: return "Business N"; - case 0x00000011: return "Web Server"; - case 0x00000012: return "HPC Edition"; - case 0x00000013: return "Storage Server (Essentials)"; - case 0x0000001A: return "Home Premium N"; - case 0x0000001B: return "Enterprise N"; - case 0x0000001C: return "Ultimate N"; - case 0x00000022: return "Home Server"; - case 0x00000024: return "Server Standard without Hyper-V"; - case 0x00000025: return "Server Datacenter without Hyper-V"; - case 0x00000026: return "Server Enterprise without Hyper-V"; - case 0x00000027: return "Server Datacenter without Hyper-V (Core)"; - case 0x00000028: return "Server Standard without Hyper-V (Core)"; - case 0x00000029: return "Server Enterprise without Hyper-V (Core)"; - case 0x0000002A: return "Hyper-V Server"; - case 0x0000002F: return "Starter N"; - case 0x00000030: return "Pro"; - case 0x00000031: return "Pro N"; - case 0x00000034: return "Server Solutions Premium"; - case 0x00000035: return "Server Solutions Premium (Core)"; - case 0x00000040: return "Server Hyper Core V"; - case 0x00000042: return "Starter E"; - case 0x00000043: return "Home Basic E"; - case 0x00000044: return "Premium E"; - case 0x00000045: return "Pro E"; - case 0x00000046: return "Enterprise E"; - case 0x00000047: return "Ultimate E"; - case 0x00000048: return "Enterprise (Eval)"; - case 0x0000004F: return "Server Standard (Eval)"; - case 0x00000050: return "Server Datacenter (Eval)"; - case 0x00000054: return "Enterprise N (Eval)"; - case 0x00000057: return "Thin PC"; + case 0x00000001: return " Ultimate"; + case 0x00000002: return " Home Basic"; + case 0x00000003: return " Home Premium"; + case 0x00000004: return " Enterprise"; + case 0x00000005: return " Home Basic N"; + case 0x00000006: return " Business"; + case 0x00000007: return " Server Standard"; + case 0x00000008: return " Server Datacenter"; + case 0x00000009: return " Smallbusiness Server"; + case 0x0000000A: return " Server Enterprise"; + case 0x0000000B: return " Starter"; + case 0x0000000C: return " Server Datacenter (Core)"; + case 0x0000000D: return " Server Standard (Core)"; + case 0x0000000E: return " Server Enterprise (Core)"; + case 0x00000010: return " Business N"; + case 0x00000011: return " Web Server"; + case 0x00000012: return " HPC Edition"; + case 0x00000013: return " Storage Server (Essentials)"; + case 0x0000001A: return " Home Premium N"; + case 0x0000001B: return " Enterprise N"; + case 0x0000001C: return " Ultimate N"; + case 0x00000022: return " Home Server"; + case 0x00000024: return " Server Standard without Hyper-V"; + case 0x00000025: return " Server Datacenter without Hyper-V"; + case 0x00000026: return " Server Enterprise without Hyper-V"; + case 0x00000027: return " Server Datacenter without Hyper-V (Core)"; + case 0x00000028: return " Server Standard without Hyper-V (Core)"; + case 0x00000029: return " Server Enterprise without Hyper-V (Core)"; + case 0x0000002A: return " Hyper-V Server"; + case 0x0000002F: return " Starter N"; + case 0x00000030: return " Pro"; + case 0x00000031: return " Pro N"; + case 0x00000034: return " Server Solutions Premium"; + case 0x00000035: return " Server Solutions Premium (Core)"; + case 0x00000040: return " Server Hyper Core V"; + case 0x00000042: return " Starter E"; + case 0x00000043: return " Home Basic E"; + case 0x00000044: return " Premium E"; + case 0x00000045: return " Pro E"; + case 0x00000046: return " Enterprise E"; + case 0x00000047: return " Ultimate E"; + case 0x00000048: return " Enterprise (Eval)"; + case 0x0000004F: return " Server Standard (Eval)"; + case 0x00000050: return " Server Datacenter (Eval)"; + case 0x00000054: return " Enterprise N (Eval)"; + case 0x00000057: return " Thin PC"; case 0x00000058: case 0x00000059: case 0x0000005A: case 0x0000005B: case 0x0000005C: return "Embedded"; - case 0x00000062: return "Home N"; - case 0x00000063: return "Home China"; - case 0x00000064: return "Home Single Language"; - case 0x00000065: return "Home"; - case 0x00000067: return "Pro with Media Center"; + case 0x00000062: return " Home N"; + case 0x00000063: return " Home China"; + case 0x00000064: return " Home Single Language"; + case 0x00000065: return " Home"; + case 0x00000067: return " Pro with Media Center"; case 0x00000069: case 0x0000006A: case 0x0000006B: case 0x0000006C: return "Embedded"; - case 0x0000006F: return "Home Connected"; - case 0x00000070: return "Pro Student"; - case 0x00000071: return "Home Connected N"; - case 0x00000072: return "Pro Student N"; - case 0x00000073: return "Home Connected Single Language"; - case 0x00000074: return "Home Connected China"; - case 0x00000079: return "Education"; - case 0x0000007A: return "Education N"; - case 0x0000007D: return "Enterprise LTSB"; - case 0x0000007E: return "Enterprise LTSB N"; - case 0x0000007F: return "Pro S"; - case 0x00000080: return "Pro S N"; - case 0x00000081: return "Enterprise LTSB (Eval)"; - case 0x00000082: return "Enterprise LTSB N (Eval)"; - case 0x0000008A: return "Pro Single Language"; - case 0x0000008B: return "Pro China"; - case 0x0000008C: return "Enterprise Subscription"; - case 0x0000008D: return "Enterprise Subscription N"; - case 0x00000091: return "Server Datacenter SA (Core)"; - case 0x00000092: return "Server Standard SA (Core)"; - case 0x00000095: return "Utility VM"; - case 0x000000A1: return "Pro for Workstations"; - case 0x000000A2: return "Pro for Workstations N"; - case 0x000000A4: return "Pro for Education"; - case 0x000000A5: return "Pro for Education N"; - case 0x000000AB: return "Enterprise G"; // I swear Microsoft are just making up editions... - case 0x000000AC: return "Enterprise G N"; - case 0x000000B2: return "Cloud"; - case 0x000000B3: return "Cloud N"; - case 0x000000B6: return "Home OS"; + case 0x0000006F: return " Home Connected"; + case 0x00000070: return " Pro Student"; + case 0x00000071: return " Home Connected N"; + case 0x00000072: return " Pro Student N"; + case 0x00000073: return " Home Connected Single Language"; + case 0x00000074: return " Home Connected China"; + case 0x00000079: return " Education"; + case 0x0000007A: return " Education N"; + case 0x0000007D: return " Enterprise LTSB"; + case 0x0000007E: return " Enterprise LTSB N"; + case 0x0000007F: return " Pro S"; + case 0x00000080: return " Pro S N"; + case 0x00000081: return " Enterprise LTSB (Eval)"; + case 0x00000082: return " Enterprise LTSB N (Eval)"; + case 0x0000008A: return " Pro Single Language"; + case 0x0000008B: return " Pro China"; + case 0x0000008C: return " Enterprise Subscription"; + case 0x0000008D: return " Enterprise Subscription N"; + case 0x00000091: return " Server Datacenter SA (Core)"; + case 0x00000092: return " Server Standard SA (Core)"; + case 0x00000095: return " Utility VM"; + case 0x000000A1: return " Pro for Workstations"; + case 0x000000A2: return " Pro for Workstations N"; + case 0x000000A4: return " Pro for Education"; + case 0x000000A5: return " Pro for Education N"; + case 0x000000AB: return " Enterprise G"; // I swear Microsoft are just making up editions... + case 0x000000AC: return " Enterprise G N"; + case 0x000000B2: return " Cloud"; + case 0x000000B3: return " Cloud N"; + case 0x000000B6: return " Home OS"; case 0x000000B7: case 0x000000CB: return "Cloud E"; - case 0x000000B9: return "IoT OS"; + case 0x000000B9: return " IoT OS"; case 0x000000BA: case 0x000000CA: return "Cloud E N"; - case 0x000000BB: return "IoT Edge OS"; - case 0x000000BC: return "IoT Enterprise"; - case 0x000000BD: return "Lite"; - case 0x000000BF: return "IoT Enterprise S"; + case 0x000000BB: return " IoT Edge OS"; + case 0x000000BC: return " IoT Enterprise"; + case 0x000000BD: return " Lite"; + case 0x000000BF: return " IoT Enterprise S"; case 0x000000C0: case 0x000000C2: case 0x000000C3: case 0x000000C4: case 0x000000C5: case 0x000000C6: return "XBox"; case 0x000000C7: case 0x000000C8: case 0x00000196: case 0x00000197: case 0x00000198: return "Azure Server"; - case 0xABCDABCD: return "(Unlicensed)"; + case 0xABCDABCD: return " (Unlicensed)"; default: - static_sprintf(unknown_edition_str, "(Unknown Edition 0x%02X)", (uint32_t)ProductType); + static_sprintf(unknown_edition_str, " (Unknown Edition 0x%02X)", (uint32_t)ProductType); return unknown_edition_str; } } @@ -475,10 +475,9 @@ void GetWindowsVersion(windows_version_t* windows_version) else if (vi.wServicePackMajor) safe_sprintf(vptr, vlen, "%s SP%u %s", w, vi.wServicePackMajor, arch_name); else - safe_sprintf(vptr, vlen, "%s%s%s %s", - w, (dwProductType != 0) ? " " : "", GetEdition(dwProductType), arch_name); + safe_sprintf(vptr, vlen, "%s%s %s", w, GetEditionName(dwProductType), arch_name); - windows_version->Edition = (int)dwProductType; + windows_version->Edition = dwProductType; // Add the build number (including UBR if available) windows_version->BuildNumber = vi.dwBuildNumber; @@ -796,21 +795,20 @@ DWORD GetResourceSize(HMODULE module, char* name, char* type, const char* desc) // Run a console command, with optional redirection of stdout and stderr to our log // as well as optional progress reporting if msg is not 0. -DWORD RunCommandWithProgress(const char* cmd, const char* dir, BOOL log, int msg) +DWORD RunCommandWithProgress(const char* cmd, const char* dir, BOOL log, int msg, const char* pattern) { - DWORD i, ret, dwRead, dwAvail, dwPipeSize = 4096; + DWORD ret, dwRead, dwAvail, dwPipeSize = 4096; STARTUPINFOA si = { 0 }; PROCESS_INFORMATION pi = { 0 }; SECURITY_ATTRIBUTES sa = { sizeof(SECURITY_ATTRIBUTES), NULL, TRUE }; HANDLE hOutputRead = INVALID_HANDLE_VALUE, hOutputWrite = INVALID_HANDLE_VALUE; - int match_length; - static char* output; - // For detecting typical dism.exe commandline progress report of type: - // "\r[==== 8.0% ]\r\n" - re_t pattern = re_compile("\\s*\\[[= ]+[\\d\\.]+%[= ]+\\]\\s*"); + static char *output, *p; + cregex_node_t* node = NULL; + cregex_program_t* program = NULL; + char* matches[REGEX_VM_MAX_MATCHES]; si.cb = sizeof(si); - if (log) { + if (msg != 0 || log) { // NB: The size of a pipe is a suggestion, NOT an absolute guarantee // This means that you may get a pipe of 4K even if you requested 1K if (!CreatePipe(&hOutputRead, &hOutputWrite, &sa, dwPipeSize)) { @@ -831,8 +829,18 @@ DWORD RunCommandWithProgress(const char* cmd, const char* dir, BOOL log, int msg goto out; } - if (log || msg != 0) { - if (msg != 0) + if (msg != 0) { + node = cregex_parse(pattern); + if (node != NULL) { + program = cregex_compile_node(node); + cregex_parse_free(node); + } + if (node == NULL || program == NULL) + uprintf("Internal error: Failed to parse '%s'", pattern); + } + + if (program != NULL || log) { + if (program != NULL) UpdateProgressWithInfoInit(NULL, FALSE); while (1) { // Check for user cancel @@ -859,27 +867,21 @@ DWORD RunCommandWithProgress(const char* cmd, const char* dir, BOOL log, int msg output = malloc(dwAvail + 1); if ((output != NULL) && (ReadFile(hOutputRead, output, dwAvail, &dwRead, NULL)) && (dwRead != 0)) { output[dwAvail] = 0; - // Process a commandline progress bar into a percentage - if ((msg != 0) && (re_matchp(pattern, output, &match_length) != -1)) { + // Process a commandline progress into a percentage + if (program != NULL && cregex_program_run(program, output, (const char**)matches, ARRAYSIZE(matches)) > 0 && + matches[2] != NULL && matches[3] != NULL) { + // matches[2] is for the first group + // matches[3] is for the end of the first group + matches[3][0] = '\0'; float f = 0.0f; - i = 0; -next_progress_line: - for (; (i < dwAvail) && (output[i] < '0' || output[i] > '9'); i++); - IGNORE_RETVAL(sscanf(&output[i], "%f*", &f)); + IGNORE_RETVAL(sscanf(matches[2], "%f", &f)); UpdateProgressWithInfo(OP_FORMAT, msg, (uint64_t)(f * 100.0f), 100 * 100ULL); - // Go to next line - while ((++i < dwAvail) && (output[i] != '\n') && (output[i] != '\r')); - while ((++i < dwAvail) && ((output[i] == '\n') || (output[i] == '\r'))); - // Print additional lines, if any - if (i < dwAvail) { - // Might have two consecutive progress lines in our buffer - if (re_matchp(pattern, &output[i], &match_length) != -1) - goto next_progress_line; - uprintf("%s", &output[i]); - } } else if (log) { // output may contain a '%' so don't feed it as a naked format string uprintf("%s", output); + } else if ((p = strstr(output, "ERROR:")) != NULL) { + // Mostly for oscdimg.exe errors + uprintf("%s", p); } } free(output); @@ -890,13 +892,13 @@ next_progress_line: Sleep(100); }; } else { - // TODO: Detect user cancellation here? switch (WaitForSingleObject(pi.hProcess, 1800000)) { case WAIT_TIMEOUT: uprintf("Command did not terminate within timeout duration"); break; case WAIT_OBJECT_0: - uprintf("Command was terminated by user"); + if (IS_ERROR(ErrorStatus) && (SCODE_CODE(ErrorStatus) == ERROR_CANCELLED)) + uprintf("Command was terminated by user"); break; default: uprintf("Error while waiting for command to be terminated: %s", WindowsErrorString()); @@ -910,6 +912,7 @@ next_progress_line: CloseHandle(pi.hThread); out: + cregex_compile_free(program); safe_closehandle(hOutputWrite); safe_closehandle(hOutputRead); return ret; @@ -1115,10 +1118,10 @@ BOOL SetThreadAffinity(DWORD_PTR* thread_affinity, size_t num_threads) thread_affinity[i] |= affinity & (-1LL * affinity); affinity ^= affinity & (-1LL * affinity); } - uuprintf(" thr_%d:\t%s", i, printbitslz(thread_affinity[i])); + uuprintf(" thr_%llu:\t%s", i, printbitslz(thread_affinity[i])); thread_affinity[num_threads - 1] ^= thread_affinity[i]; } - uuprintf(" thr_%d:\t%s", i, printbitslz(thread_affinity[i])); + uuprintf(" thr_%llu:\t%s", i, printbitslz(thread_affinity[i])); return TRUE; } @@ -1215,7 +1218,7 @@ BOOL MountRegistryHive(const HKEY key, const char* pszHiveName, const char* pszH LSTATUS status; HANDLE token = INVALID_HANDLE_VALUE; - if_not_assert((key == HKEY_LOCAL_MACHINE) || (key == HKEY_USERS)) + if_assert_fails((key == HKEY_LOCAL_MACHINE) || (key == HKEY_USERS)) return FALSE; if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES, &token)) { @@ -1247,7 +1250,7 @@ BOOL UnmountRegistryHive(const HKEY key, const char* pszHiveName) { LSTATUS status; - if_not_assert((key == HKEY_LOCAL_MACHINE) || (key == HKEY_USERS)) + if_assert_fails((key == HKEY_LOCAL_MACHINE) || (key == HKEY_USERS)) return FALSE; status = RegUnLoadKeyA(key, pszHiveName); diff --git a/src/stdio.c b/src/stdio.c index e4270114..cc13d283 100644 --- a/src/stdio.c +++ b/src/stdio.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Standard User I/O Routines (logging, status, error, etc.) - * Copyright © 2011-2025 Pete Batard + * Copyright © 2011-2026 Pete Batard * Copyright © 2020 Mattiwatti * * This program is free software: you can redistribute it and/or modify @@ -36,6 +36,7 @@ #include "rufus.h" #include "ntdll.h" +#include "winio.h" #include "missing.h" #include "settings.h" #include "resource.h" @@ -365,18 +366,25 @@ char* GuidToString(const GUID* guid, BOOL bDecorated) return guid_string; } -GUID* StringToGuid(const char* str) +GUID StringToGuid(const char* str) { - static GUID guid; - - if (str == NULL) return NULL; - if (sscanf(str, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}", - (uint32_t*)&guid.Data1, (uint32_t*)&guid.Data2, (uint32_t*)&guid.Data3, - (uint32_t*)&guid.Data4[0], (uint32_t*)&guid.Data4[1], (uint32_t*)&guid.Data4[2], - (uint32_t*)&guid.Data4[3], (uint32_t*)&guid.Data4[4], (uint32_t*)&guid.Data4[5], - (uint32_t*)&guid.Data4[6], (uint32_t*)&guid.Data4[7]) != 11) - return NULL; - return &guid; + GUID guid = { 0 }; + uint32_t d1, d2, d3, b0, b1, b2, b3, b4, b5, b6, b7; + if (str != NULL && sscanf(str[0] == '{' ? &str[1] : str, "%8x-%4x-%4x-%2x%2x-%2x%2x%2x%2x%2x%2x", + &d1, &d2, &d3, &b0, &b1, &b2, &b3, &b4, &b5, &b6, &b7) == 11) { + guid.Data1 = d1; + guid.Data2 = (uint16_t)d2; + guid.Data3 = (uint16_t)d3; + guid.Data4[0] = (uint8_t)b0; + guid.Data4[1] = (uint8_t)b1; + guid.Data4[2] = (uint8_t)b2; + guid.Data4[3] = (uint8_t)b3; + guid.Data4[4] = (uint8_t)b4; + guid.Data4[5] = (uint8_t)b5; + guid.Data4[6] = (uint8_t)b6; + guid.Data4[7] = (uint8_t)b7; + } + return guid; } // Find upper power of 2 @@ -582,13 +590,13 @@ HANDLE CreateFileWithTimeout(LPCSTR lpFileName, DWORD dwDesiredAccess, DWORD dwS CancelSynchronousIo(hThread); switch (WaitForSingleObject(hThread, 30000)) { case WAIT_TIMEOUT: - uprintf("File was not created within timeout duration"); + uprintf("Could not open file or device within timeout duration"); break; case WAIT_OBJECT_0: - uprintf("File creation aborted by user"); + uprintf("Operation aborted by user"); break; default: - uprintf("Error while waiting for file to ne created: %s", WindowsErrorString()); + uprintf("Error while waiting for file or device to be opened: %s", WindowsErrorString()); break; } params.dwError = WAIT_TIMEOUT; @@ -607,51 +615,44 @@ HANDLE CreateFileWithTimeout(LPCSTR lpFileName, DWORD dwDesiredAccess, DWORD dwS BOOL WriteFileWithRetry(HANDLE hFile, LPCVOID lpBuffer, DWORD nNumberOfBytesToWrite, LPDWORD lpNumberOfBytesWritten, DWORD nNumRetries) { - DWORD nTry; - BOOL readFilePointer; - LARGE_INTEGER liFilePointer, liZero = { { 0,0 } }; - DWORD NumberOfBytesWritten; + static const LARGE_INTEGER liZero = { { 0,0 } }; + DWORD nTry, NumberOfBytesWritten; + NOW_THATS_WHAT_I_CALL_AN_OVERLAPPED overlapped = { 0 }; if (lpNumberOfBytesWritten == NULL) lpNumberOfBytesWritten = &NumberOfBytesWritten; - // Need to get the current file pointer in case we need to retry - readFilePointer = SetFilePointerEx(hFile, liZero, &liFilePointer, FILE_CURRENT); - if (!readFilePointer) - uprintf("Warning: Could not read file pointer %s", WindowsErrorString()); + // Need to get the current file pointer for retry + if (!SetFilePointerEx(hFile, liZero, (PLARGE_INTEGER)&overlapped.Offset, FILE_CURRENT)) { + uprintf("ERROR: Could not set file offset %s", WindowsErrorString()); + return FALSE; + } if (nNumRetries == 0) nNumRetries = 1; - for (nTry = 1; nTry <= nNumRetries; nTry++) { - // Need to rewind our file position on retry - if we can't even do that, just give up - if ((nTry > 1) && (!SetFilePointerEx(hFile, liFilePointer, NULL, FILE_BEGIN))) { - uprintf("Could not set file pointer - Aborting"); - break; - } - if (WriteFile(hFile, lpBuffer, nNumberOfBytesToWrite, lpNumberOfBytesWritten, NULL)) { + for (nTry = 1; nTry <= nNumRetries && (HRESULT_CODE(ErrorStatus) != ERROR_CANCELLED); nTry++) { + if (WriteFile(hFile, lpBuffer, nNumberOfBytesToWrite, lpNumberOfBytesWritten, (LPOVERLAPPED)&overlapped)) { LastWriteError = 0; if (nNumberOfBytesToWrite == *lpNumberOfBytesWritten) return TRUE; // Some large drives return 0, even though all the data was written - See github #787 */ if (large_drive && (*lpNumberOfBytesWritten == 0)) { - uprintf("Warning: Possible short write"); + uprintf("WARNING: Possible short write"); return TRUE; } uprintf("Wrote %d bytes but requested %d", *lpNumberOfBytesWritten, nNumberOfBytesToWrite); } else { uprintf("Write error %s", WindowsErrorString()); LastWriteError = RUFUS_ERROR(GetLastError()); + if (LastWriteError == RUFUS_ERROR(ERROR_DISK_FULL) || HRESULT_CODE(ErrorStatus) == ERROR_CANCELLED) + break; } - // If we can't reposition for the next run, just abort - if (!readFilePointer) - break; if (nTry < nNumRetries) { uprintf("Retrying in %d seconds...", WRITE_TIMEOUT / 1000); - // TODO: Call GetProcessSearch() here? Sleep(WRITE_TIMEOUT); } } - if (SCODE_CODE(GetLastError()) == ERROR_SUCCESS) + if (SCODE_CODE(GetLastError()) == ERROR_SUCCESS && HRESULT_CODE(ErrorStatus) != ERROR_CANCELLED) SetLastError(RUFUS_ERROR(ERROR_WRITE_FAULT)); return FALSE; } @@ -908,8 +909,7 @@ uint32_t ResolveDllAddress(dll_resolver_t* resolver) } // Download the PDB from Microsoft's symbol servers - if (MessageBoxExU(hMainDialog, lmprintf(MSG_345), lmprintf(MSG_115), - MB_YESNO | MB_ICONWARNING | MB_IS_RTL, selected_langid) != IDYES) + if (Notification(MB_YESNO | MB_ICONWARNING, lmprintf(MSG_115), lmprintf(MSG_345)) != IDYES) goto out; static_sprintf(path, "%s\\%s", temp_dir, info->PdbName); static_sprintf(url, "http://msdl.microsoft.com/download/symbols/%s/%s%x/%s", @@ -924,7 +924,7 @@ uint32_t ResolveDllAddress(dll_resolver_t* resolver) // NB: SymLoadModuleEx() does not load a PDB unless the file has an explicit '.pdb' extension base_address = pfSymLoadModuleEx(hRufus, NULL, path, NULL, DEFAULT_BASE_ADDRESS, 0, NULL, 0); - if_not_assert(base_address == DEFAULT_BASE_ADDRESS) + if_assert_fails(base_address == DEFAULT_BASE_ADDRESS) goto out; // On Windows 11 ARM64 the following call will return *TWO* different addresses for the same // call, because most Windows DLL's are ARM64X, which means that they are an unholy union of @@ -967,9 +967,15 @@ static void print_extracted_file(const char* file_path, uint64_t file_length) PrintStatus(0, MSG_000, str); // MSG_000 is "%s" } -static void update_progress(const uint64_t processed_bytes) +static void update_progress(const int64_t processed_bytes) { - UpdateProgressWithInfo(OP_EXTRACT_ZIP, MSG_348, processed_bytes, archive_size); + static uint64_t total_bytes = 0; + + if (processed_bytes < 0) { + total_bytes = -processed_bytes; + UpdateProgressWithInfo(OP_EXTRACT_ZIP, MSG_348, 0, total_bytes); + } else + UpdateProgressWithInfo(OP_EXTRACT_ZIP, MSG_348, processed_bytes, total_bytes); } // Extract content from a zip archive onto the designated directory or drive diff --git a/src/stdlg.c b/src/stdlg.c index ad2605a5..74dc7efe 100644 --- a/src/stdlg.c +++ b/src/stdlg.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Standard Dialog Routines (Browse for folder, About, etc) - * Copyright © 2011-2025 Pete Batard + * Copyright © 2011-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -43,26 +43,41 @@ #include "registry.h" #include "settings.h" #include "license.h" +#include "darkmode.h" /* Globals */ extern BOOL is_x86_64, appstore_version; extern char unattend_username[MAX_USERNAME_LENGTH], *sbat_level_txt, *sb_active_txt, *sb_revoked_txt; +extern int unattend_edition_index; extern HICON hSmallIcon, hBigIcon; -static HICON hMessageIcon = (HICON)INVALID_HANDLE_VALUE; -static char* szMessageText = NULL; -static char* szMessageTitle = NULL; -static char **szDialogItem; -static int nDialogItems; -static HWND hUpdatesDlg; -static const SETTEXTEX friggin_microsoft_unicode_amateurs = { ST_DEFAULT, CP_UTF8 }; -static BOOL notification_is_question; -static const notification_info* notification_more_info; -static const char* notification_dont_display_setting; -static WNDPROC update_original_proc = NULL; -static HWINEVENTHOOK ap_weh = NULL; -static char title_str[2][128], button_str[128]; -HWND hFidoDlg = NULL; +extern HWND hFidoDlg; +static struct { + char* szMessageText; + char* szMessageTitle; + char **szDialogItem; + int nDialogItems; +} list_data = { 0 }; +// The selection dialog can be re-entered so we need multiple instances + an index +static struct { + char* szMessageText; + char* szMessageTitle; + selection_dialog_options_t* options; +} selection_data[3] = { 0 }; +static int s = -1; +static struct { + HICON hMessageIcon; + char* szMessageText; + char* szMessageTitle; + int type; + const notification_info* more_info; + const char* dont_display_setting; +} notification_data = { 0 }; +static struct { + char title_str[2][128]; + char button_str[128]; + HWINEVENTHOOK weh; +} alert_data = { 0 }; static int update_settings_reposition_ids[] = { IDI_ICON, IDC_POLICY, @@ -75,6 +90,14 @@ static int update_settings_reposition_ids[] = { IDC_CHECK_NOW, IDCANCEL, }; +static const SETTEXTEX friggin_microsoft_unicode_amateurs = { ST_DEFAULT, CP_UTF8 }; +static WNDPROC update_original_proc = NULL; +static struct { + HWND hTip; // Tooltip handle + HWND hCtrl; // Handle of the control the tooltip belongs to + WNDPROC original_proc; + LPWSTR wstring; +} ttlist[MAX_TOOLTIPS] = { 0 }; /* * https://blogs.msdn.microsoft.com/oldnewthing/20040802-00/?p=38283/ @@ -329,6 +352,7 @@ INT_PTR CALLBACK LicenseCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM HWND hLicense; switch (message) { case WM_INITDIALOG: + SetDarkModeForDlg(hDlg); hLicense = GetDlgItem(hDlg, IDC_LICENSE_TEXT); apply_localization(IDD_LICENSE, hDlg); CenterDialog(hDlg, NULL); @@ -341,6 +365,7 @@ INT_PTR CALLBACK LicenseCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM style &= ~(ES_RIGHT); SetWindowLongPtr(hLicense, GWL_STYLE, style); SetDlgItemTextA(hDlg, IDC_LICENSE_TEXT, gplv3); + SetDarkModeForChild(hDlg); break; case WM_COMMAND: switch (LOWORD(wParam)) { @@ -373,6 +398,7 @@ INT_PTR CALLBACK AboutCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lP switch (message) { case WM_INITDIALOG: + SetDarkModeForDlg(hDlg); resized_already = FALSE; // Execute dialog localization apply_localization(IDD_ABOUTBOX, hDlg); @@ -390,7 +416,7 @@ INT_PTR CALLBACK AboutCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lP ResizeButtonHeight(hDlg, IDOK); static_sprintf(about_blurb, about_blurb_format, lmprintf(MSG_174|MSG_RTF), lmprintf(MSG_175|MSG_RTF, rufus_version[0], rufus_version[1], rufus_version[2]), - "Copyright © 2011-2025 Pete Batard", + "Copyright © 2011-2026 Pete Batard", lmprintf(MSG_176|MSG_RTF), lmprintf(MSG_177|MSG_RTF), lmprintf(MSG_178|MSG_RTF)); for (i = 0; i < ARRAYSIZE(hEdit); i++) { hEdit[i] = GetDlgItem(hDlg, edit_id[i]); @@ -407,6 +433,7 @@ INT_PTR CALLBACK AboutCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lP // Need to send an explicit SetSel to avoid being positioned at the end of richedit control when tabstop is used SendMessage(hEdit[1], EM_SETSEL, 0, 0); SendMessage(hEdit[0], EM_REQUESTRESIZE, 0, 0); + SetDarkModeForChild(hDlg); break; case WM_NOTIFY: switch (((LPNMHDR)lParam)->code) { @@ -459,6 +486,59 @@ INT_PTR CreateAboutBox(void) return r; } +// The warning icon from the OS is *BROKEN* in dark mode at 200% scaling (one of the +// pixels that should be transparent is set to white), so we fix it. Thanks Microsoft! +HICON FixWarningIcon(HICON hIcon) +{ + void* bits = NULL; + ICONINFO info, new_info; + BITMAP bmp; + BITMAPINFO bmi = { 0 }; + HBITMAP dib, src_obj, dst_obj; + HDC hdc, src_dc, dst_dc; + DWORD* pixels; + + GetIconInfo(hIcon, &info); + GetObject(info.hbmColor, sizeof(bmp), &bmp); + bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); + bmi.bmiHeader.biWidth = bmp.bmWidth; + bmi.bmiHeader.biHeight = -bmp.bmHeight; + bmi.bmiHeader.biPlanes = 1; + bmi.bmiHeader.biBitCount = 32; + bmi.bmiHeader.biCompression = BI_RGB; + + hdc = GetDC(NULL); + dib = CreateDIBSection(hdc, &bmi, DIB_RGB_COLORS, &bits, NULL, 0); + ReleaseDC(NULL, hdc); + if (dib == NULL) + return hIcon; + src_dc = CreateCompatibleDC(NULL); + dst_dc = CreateCompatibleDC(NULL); + src_obj = SelectObject(src_dc, info.hbmColor); + dst_obj = SelectObject(dst_dc, dib); + + BitBlt(dst_dc, 0, 0, bmp.bmWidth, bmp.bmHeight, src_dc, 0, 0, SRCCOPY); + + SelectObject(src_dc, src_obj); + SelectObject(dst_dc, dst_obj); + DeleteDC(src_dc); + DeleteDC(dst_dc); + pixels = (DWORD*)bits; + // Set the problematic pixel, at (13,2), to transparent + pixels[2 * bmp.bmWidth + 13] = 0x00000000; + + new_info.fIcon = TRUE; + new_info.xHotspot = info.xHotspot; + new_info.yHotspot = info.yHotspot; + new_info.hbmMask = info.hbmMask; + new_info.hbmColor = dib; + + hIcon = CreateIconIndirect(&new_info); + DeleteObject(info.hbmColor); + DeleteObject(info.hbmMask); + return hIcon; +} + /* * We use our own MessageBox for notifications to have greater control (center, no close button, etc) */ @@ -479,6 +559,7 @@ INT_PTR CALLBACK NotificationCallback(HWND hDlg, UINT message, WPARAM wParam, LP switch (message) { case WM_INITDIALOG: + SetDarkModeForDlg(hDlg); // Get the system message box font. See http://stackoverflow.com/a/6057761 ncm.cbSize = sizeof(ncm); // If we're compiling with the Vista SDK or later, the NONCLIENTMETRICS struct @@ -498,6 +579,7 @@ INT_PTR CALLBACK NotificationCallback(HWND hDlg, UINT message, WPARAM wParam, LP SendMessage(GetDlgItem(hDlg, IDNO), WM_SETFONT, (WPARAM)hDlgFont, MAKELPARAM(TRUE, 0)); if (bh != 0) { ResizeButtonHeight(hDlg, IDC_MORE_INFO); + ResizeButtonHeight(hDlg, IDABORT); ResizeButtonHeight(hDlg, IDYES); ResizeButtonHeight(hDlg, IDNO); } @@ -506,24 +588,78 @@ INT_PTR CALLBACK NotificationCallback(HWND hDlg, UINT message, WPARAM wParam, LP background_brush = GetSysColorBrush(COLOR_WINDOW); separator_brush = GetSysColorBrush(COLOR_3DLIGHT); buttonface_brush = GetSysColorBrush(COLOR_BTNFACE); - SetTitleBarIcon(hDlg); CenterDialog(hDlg, NULL); - // Change the default icon - if (Static_SetIcon(GetDlgItem(hDlg, IDC_NOTIFICATION_ICON), hMessageIcon) == 0) { - uprintf("Could not set dialog icon\n"); + // Change the default message icon + switch (notification_data.type & 0xF0) { + case MB_ICONERROR: + notification_data.hMessageIcon = LoadIcon(NULL, IDI_ERROR); + break; + case MB_ICONWARNING: + notification_data.hMessageIcon = LoadIcon(NULL, IDI_WARNING); + // I really have no idea at what scaling factors Microsoft switches icons. + // However, the 200% icon has a jarring white pixel in dark mode, because + // Microsoft forgot to set that pixel to transparent, that we need to fix. + if (fScale > 1.75f && fScale < 2.5f) + notification_data.hMessageIcon = FixWarningIcon(notification_data.hMessageIcon); + break; + case MB_ICONQUESTION: + notification_data.hMessageIcon = LoadIcon(NULL, IDI_QUESTION); + break; + default: + notification_data.hMessageIcon = LoadIcon(NULL, IDI_INFORMATION); + break; } + if (Static_SetIcon(GetDlgItem(hDlg, IDC_NOTIFICATION_ICON), notification_data.hMessageIcon) == 0) + uprintf("Could not set the notification dialog icon"); // Set the dialog title - if (szMessageTitle != NULL) { - SetWindowTextU(hDlg, szMessageTitle); - } + if (notification_data.szMessageTitle != NULL) + SetWindowTextU(hDlg, notification_data.szMessageTitle); // Enable/disable the buttons and set text - if (!notification_is_question) { - SetWindowTextU(GetDlgItem(hDlg, IDNO), lmprintf(MSG_006)); - } else { + switch (notification_data.type & 0x0F) { + case MB_OKCANCEL: + SetWindowTextU(GetDlgItem(hDlg, IDYES), "OK"); + SetWindowTextU(GetDlgItem(hDlg, IDNO), lmprintf(MSG_007)); ShowWindow(GetDlgItem(hDlg, IDYES), SW_SHOW); + break; + case MB_YESNO: + SetWindowTextU(GetDlgItem(hDlg, IDYES), lmprintf(MSG_008)); + SetWindowTextU(GetDlgItem(hDlg, IDNO), lmprintf(MSG_009)); + ShowWindow(GetDlgItem(hDlg, IDYES), SW_SHOW); + break; + case MB_YESNOCANCEL: + SetWindowTextU(GetDlgItem(hDlg, IDABORT), lmprintf(MSG_008)); + SetWindowTextU(GetDlgItem(hDlg, IDYES), lmprintf(MSG_009)); + SetWindowTextU(GetDlgItem(hDlg, IDNO), lmprintf(MSG_007)); + ShowWindow(GetDlgItem(hDlg, IDYES), SW_SHOW); + ShowWindow(GetDlgItem(hDlg, IDABORT), SW_SHOW); + break; + case MB_OK: + SetWindowTextU(GetDlgItem(hDlg, IDNO), "OK"); + break; + case MB_ABORTRETRYIGNORE: + HMODULE hMui; + char mui_path[MAX_PATH], button[3][64] = { "&Abort", "&Retry", "&Ignore" }; + // Load the localized button text from user32.dll.mui. 802 = Abort, 803 = Retry, 804 = Ignore + static_sprintf(mui_path, "%s\\%s\\user32.dll.mui", sysnative_dir, ToLocaleName(GetUserDefaultUILanguage())); + hMui = LoadLibraryU(mui_path); + if (hMui != NULL) { + LoadStringU(hMui, 802, button[0], sizeof(button[0])); + LoadStringU(hMui, 803, button[1], sizeof(button[1])); + LoadStringU(hMui, 804, button[2], sizeof(button[2])); + FreeLibrary(hMui); + } + SetWindowTextU(GetDlgItem(hDlg, IDABORT), button[0]); + SetWindowTextU(GetDlgItem(hDlg, IDYES), button[1]); + SetWindowTextU(GetDlgItem(hDlg, IDNO), button[2]); + ShowWindow(GetDlgItem(hDlg, IDABORT), SW_SHOW); + ShowWindow(GetDlgItem(hDlg, IDYES), SW_SHOW); + break; + default: // One single 'Close' button + SetWindowTextU(GetDlgItem(hDlg, IDNO), lmprintf(MSG_006)); + break; } hCtrl = GetDlgItem(hDlg, IDC_DONT_DISPLAY_AGAIN); - if (notification_dont_display_setting != NULL) { + if (notification_data.dont_display_setting != NULL) { SetWindowTextU(hCtrl, lmprintf(MSG_127)); } else { // Remove the "Don't display again" checkbox @@ -532,7 +668,7 @@ INT_PTR CALLBACK NotificationCallback(HWND hDlg, UINT message, WPARAM wParam, LP MapWindowPoints(NULL, hDlg, (POINT*)&rc, 2); cbh = rc.bottom - rc.top; } - if ((notification_more_info != NULL) && (notification_more_info->callback != NULL)) { + if ((notification_data.more_info != NULL) && (notification_data.more_info->callback != NULL)) { hCtrl = GetDlgItem(hDlg, IDC_MORE_INFO); // Resize the 'More information' button GetWindowRect(hCtrl, &rc); @@ -542,14 +678,14 @@ INT_PTR CALLBACK NotificationCallback(HWND hDlg, UINT message, WPARAM wParam, LP ShowWindow(hCtrl, SW_SHOW); } // Set the control text and resize the dialog if needed - if (szMessageText != NULL) { + if (notification_data.szMessageText != NULL) { hCtrl = GetDlgItem(hDlg, IDC_NOTIFICATION_TEXT); - SetWindowTextU(hCtrl, szMessageText); + SetWindowTextU(hCtrl, notification_data.szMessageText); hDC = GetDC(hCtrl); SelectFont(hDC, hDlgFont); // Yes, you *MUST* reapply the font to the DC, even after SetWindowText! GetWindowRect(hCtrl, &rc); dh = rc.bottom - rc.top; - DrawTextU(hDC, szMessageText, -1, &rc, DT_CALCRECT | DT_WORDBREAK); + DrawTextU(hDC, notification_data.szMessageText, -1, &rc, DT_CALCRECT | DT_WORDBREAK); dh = max(rc.bottom - rc.top - dh + (int)(8.0f * fScale), 0); safe_release_dc(hCtrl, hDC); ResizeMoveCtrl(hDlg, hCtrl, 0, 0, 0, dh, 1.0f); @@ -558,19 +694,19 @@ INT_PTR CALLBACK NotificationCallback(HWND hDlg, UINT message, WPARAM wParam, LP ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDC_SELECTION_LINE), 0, dh, 0, 0, 1.0f); ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDC_DONT_DISPLAY_AGAIN), 0, dh, 0, 0, 1.0f); ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDC_MORE_INFO), 0, dh - cbh, 0, 0, 1.0f); + ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDABORT), 0, dh - cbh, 0, 0, 1.0f); ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDYES), 0, dh -cbh, 0, 0, 1.0f); ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDNO), 0, dh -cbh, 0, 0, 1.0f); } + SetDarkModeForChild(hDlg); return (INT_PTR)TRUE; case WM_CTLCOLORSTATIC: // Change the background colour for static text and icon SetBkMode((HDC)wParam, TRANSPARENT); - if ((HWND)lParam == GetDlgItem(hDlg, IDC_NOTIFICATION_LINE)) { + if ((HWND)lParam == GetDlgItem(hDlg, IDC_NOTIFICATION_LINE)) return (INT_PTR)separator_brush; - } - if ((HWND)lParam == GetDlgItem(hDlg, IDC_DONT_DISPLAY_AGAIN)) { + if ((HWND)lParam == GetDlgItem(hDlg, IDC_DONT_DISPLAY_AGAIN)) return (INT_PTR)buttonface_brush; - } return (INT_PTR)background_brush; case WM_NCHITTEST: // Check coordinates to prevent resize actions @@ -585,24 +721,56 @@ INT_PTR CALLBACK NotificationCallback(HWND hDlg, UINT message, WPARAM wParam, LP safe_delete_object(hDlgFont); break; case WM_COMMAND: + // TODO: This is brittle... and I don't think we use it anyway + if (LOWORD(wParam) != IDC_MORE_INFO && IsDlgButtonChecked(hDlg, IDC_DONT_DISPLAY_AGAIN) == BST_CHECKED) + WriteSettingBool(SETTING_DISABLE_SECURE_BOOT_NOTICE, TRUE); switch (LOWORD(wParam)) { - case IDOK: - case IDCANCEL: case IDYES: - case IDNO: - if (IsDlgButtonChecked(hDlg, IDC_DONT_DISPLAY_AGAIN) == BST_CHECKED) { - WriteSettingBool(SETTING_DISABLE_SECURE_BOOT_NOTICE, TRUE); + // Return IDOK/IDRETRY for calls that expect it + switch (notification_data.type & 0x0F) { + case MB_OKCANCEL: + wParam = IDOK; + break; + case MB_ABORTRETRYIGNORE: + wParam = IDRETRY; + break; + case MB_YESNOCANCEL: + wParam = IDNO; + break; } EndDialog(hDlg, LOWORD(wParam)); return (INT_PTR)TRUE; + case IDNO: + // Return IDCANCEL/IDOK/IDIGNORE for calls that expect it + switch (notification_data.type & 0x0F) { + case MB_OKCANCEL: + wParam = IDCANCEL; + break; + case MB_OK: + wParam = IDOK; + break; + case MB_ABORTRETRYIGNORE: + wParam = IDIGNORE; + break; + case MB_YESNOCANCEL: + wParam = IDCANCEL; + break; + } + EndDialog(hDlg, LOWORD(wParam)); + return (INT_PTR)TRUE; + case IDABORT: + if ((notification_data.type & 0x0F) == MB_YESNOCANCEL) + wParam = IDYES; + EndDialog(hDlg, LOWORD(wParam)); + return (INT_PTR)TRUE; case IDC_MORE_INFO: - if (notification_more_info != NULL) { - if_not_assert(notification_more_info->callback != NULL) + if (notification_data.more_info != NULL) { + if_assert_fails(notification_data.more_info->callback != NULL) return (INT_PTR)FALSE; - if (notification_more_info->id == MORE_INFO_URL) { - ShellExecuteA(hDlg, "open", notification_more_info->url, NULL, NULL, SW_SHOWNORMAL); + if (notification_data.more_info->id == MORE_INFO_URL) { + ShellExecuteA(hDlg, "open", notification_data.more_info->url, NULL, NULL, SW_SHOWNORMAL); } else { - MyDialogBox(hMainInstance, notification_more_info->id, hDlg, notification_more_info->callback); + MyDialogBox(hMainInstance, notification_data.more_info->id, hDlg, notification_data.more_info->callback); } } break; @@ -615,90 +783,117 @@ INT_PTR CALLBACK NotificationCallback(HWND hDlg, UINT message, WPARAM wParam, LP /* * Display a custom notification */ -BOOL Notification(int type, const char* dont_display_setting, const notification_info* more_info, char* title, char* format, ...) +int NotificationEx(int type, const char* dont_display_setting, const notification_info* more_info, const char* title, const char* format, ...) { - BOOL ret; + INT_PTR ret; va_list args; dialog_showing++; - szMessageText = (char*)malloc(LOC_MESSAGE_SIZE); - if (szMessageText == NULL) + notification_data.szMessageText = (char*)malloc(LOC_MESSAGE_SIZE); + if (notification_data.szMessageText == NULL) return FALSE; - szMessageTitle = safe_strdup(title); - if (szMessageTitle == NULL) + notification_data.szMessageTitle = safe_strdup(title); + if (notification_data.szMessageTitle == NULL) return FALSE; va_start(args, format); - safe_vsnprintf(szMessageText, LOC_MESSAGE_SIZE - 1, format, args); + safe_vsnprintf(notification_data.szMessageText, LOC_MESSAGE_SIZE - 1, format, args); va_end(args); - szMessageText[LOC_MESSAGE_SIZE - 1] = 0; - notification_more_info = more_info; - notification_is_question = FALSE; - notification_dont_display_setting = dont_display_setting; - - switch(type) { - case MSG_WARNING_QUESTION: - notification_is_question = TRUE; - // Fall through - case MSG_WARNING: - hMessageIcon = LoadIcon(NULL, IDI_WARNING); - break; - case MSG_ERROR: - hMessageIcon = LoadIcon(NULL, IDI_ERROR); - break; - case MSG_QUESTION: - hMessageIcon = LoadIcon(NULL, IDI_QUESTION); - notification_is_question = TRUE; - break; - case MSG_INFO: - default: - hMessageIcon = LoadIcon(NULL, IDI_INFORMATION); - break; - } - ret = (MyDialogBox(hMainInstance, IDD_NOTIFICATION, hMainDialog, NotificationCallback) == IDYES); - safe_free(szMessageText); - safe_free(szMessageTitle); + notification_data.szMessageText[LOC_MESSAGE_SIZE - 1] = 0; + notification_data.more_info = more_info; + notification_data.type = type; + notification_data.dont_display_setting = dont_display_setting; + ret = MyDialogBox(hMainInstance, IDD_NOTIFICATION, hMainDialog, NotificationCallback); + safe_free(notification_data.szMessageText); + safe_free(notification_data.szMessageTitle); dialog_showing--; - return ret; + return (int)ret; } -// We only ever display one selection dialog, so set some params as globals -static int selection_dialog_style, selection_dialog_mask, selection_dialog_username_index; +static int GetComboBoxMinWidth(HWND hCtrl, StrArray* array) +{ + HDC hDC = GetDC(hCtrl); + HFONT hFont = (HFONT)SendMessage(hCtrl, WM_GETFONT, 0, 0); + HFONT hOldFont = (HFONT)SelectObject(hDC, hFont); + SIZE size; + uint32_t i; + int max_width = 0, arrow_width, padding; + + if (array == NULL || array->String == NULL) { + ReleaseDC(hCtrl, hDC); + return 0; + } + + for (i = 0; i < array->Index; i++) { + GetTextExtentPoint32A(hDC, array->String[i], (int)strlen(array->String[i]), &size); + if (size.cx > max_width) + max_width = size.cx; + } + SelectObject(hDC, hOldFont); + ReleaseDC(hCtrl, hDC); + + // Add the dropdown arrow button width + some padding + arrow_width = GetSystemMetrics(SM_CXVSCROLL); + padding = GetSystemMetrics(SM_CXEDGE) * 4 + 8; + + return max_width + arrow_width + padding; +} + +static VOID ShowSilentOption(HWND hDlg, int index, BOOL show) +{ + int i, dh; + RECT rc1, rc2; + + ShowWindow(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[index].options->edition_index - 1), show ? SW_SHOW : SW_HIDE); + ShowWindow(GetDlgItem(hDlg, IDC_SELECTION_EDITION), show ? SW_SHOW : SW_HIDE); + GetWindowRect(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1), &rc1); + GetWindowRect(GetDlgItem(hDlg, IDC_SELECTION_CHOICE2), &rc2); + dh = show ? (rc2.top - rc1.top) : (rc1.top - rc2.top); + for (i = selection_data[index].options->edition_index; i < (int)selection_data[index].options->choices.Index; i++) + ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i), 0, dh, 0, 0, 1.0f); + ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDOK), 0, dh, 0, 0, 1.0f); + ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDCANCEL), 0, dh, 0, 0, 1.0f); + ResizeMoveCtrl(hDlg, hDlg, 0, 0, 0, dh, 1.0f); +} /* * Custom dialog for radio button selection dialog */ -static INT_PTR CALLBACK CustomSelectionCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) +static INT_PTR CALLBACK SelectionCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { // This "Mooo" is designed to give us enough space for a regular username length static const char* base_username = "MOOOOOOOOOOO"; // 🐮 - // https://learn.microsoft.com/en-us/previous-versions/cc722458(v=technet.10)#user-name-policies - static const char* username_invalid_chars = "/\\[]:;|=,+*?<>\""; + static const char* username_invalid_chars = USERNAME_INVALID_CHARS; // Prevent resizing - static LRESULT disabled[9] = { HTLEFT, HTRIGHT, HTTOP, HTBOTTOM, HTSIZE, + static const LRESULT disabled[9] = { HTLEFT, HTRIGHT, HTTOP, HTBOTTOM, HTSIZE, HTTOPLEFT, HTTOPRIGHT, HTBOTTOMLEFT, HTBOTTOMRIGHT }; - static HBRUSH background_brush, separator_brush; - char username[128] = { 0 }; + static HFONT hDlgFont = NULL; + char username[128] = { 0 }, str[MAX_PATH]; int i, m, dw, dh, r = -1, mw; DWORD size = sizeof(username); LRESULT loc; - // To use the system message font - NONCLIENTMETRICS ncm; + NONCLIENTMETRICS ncm; // To use the system message font RECT rc, rc2; - static HFONT hDlgFont = NULL; HWND hCtrl; HDC hDC; + assert(s < ARRAYSIZE(selection_data)); + assert(selection_data[s].options != NULL); + int nDialogItems = selection_data[s].options->choices.Index; switch (message) { case WM_INITDIALOG: + StrArray edition_name = { 0 }, edition_index = { 0 }; + StrArrayCreate(&edition_name, 16); + StrArrayCreate(&edition_index, 16); + SetDarkModeForDlg(hDlg); // Don't overflow our max radio button if (nDialogItems > (IDC_SELECTION_CHOICEMAX - IDC_SELECTION_CHOICE1 + 1)) { - uprintf("Warning: Too many options requested for Selection (%d vs %d)", + uprintf("WARNING: Too many options requested for Selection (%d vs %d)", nDialogItems, IDC_SELECTION_CHOICEMAX - IDC_SELECTION_CHOICE1); nDialogItems = IDC_SELECTION_CHOICEMAX - IDC_SELECTION_CHOICE1; } // Switch to checkboxes or some other style if requested for (i = 0; i < nDialogItems; i++) - Button_SetStyle(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i), selection_dialog_style, TRUE); + Button_SetStyle(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i), selection_data[s].options->style, TRUE); // Get the system message box font. See http://stackoverflow.com/a/6057761 if (hDlgFont == NULL) { ncm.cbSize = sizeof(ncm); @@ -714,8 +909,6 @@ static INT_PTR CALLBACK CustomSelectionCallback(HWND hDlg, UINT message, WPARAM SendMessage(GetDlgItem(hDlg, IDNO), WM_SETFONT, (WPARAM)hDlgFont, MAKELPARAM(TRUE, 0)); apply_localization(IDD_SELECTION, hDlg); - background_brush = GetSysColorBrush(COLOR_WINDOW); - separator_brush = GetSysColorBrush(COLOR_3DLIGHT); SetTitleBarIcon(hDlg); CenterDialog(hDlg, NULL); @@ -725,23 +918,34 @@ static INT_PTR CALLBACK CustomSelectionCallback(HWND hDlg, UINT message, WPARAM mw = rc.right - rc.left - ddw; // ddw seems to work okay as a fudge dw = mw; + // NB: GetEdition() may cause SelectionDialog() to be re-entered! + if (selection_data[s].options->edition_index > 0) + r = GetEditions(&edition_name, &edition_index); + // Change the default icon and set the text - Static_SetIcon(GetDlgItem(hDlg, IDC_SELECTION_ICON), LoadIcon(NULL, IDI_QUESTION)); - SetWindowTextU(hDlg, szMessageTitle); + Static_SetIcon(GetDlgItem(hDlg, IDC_SELECTION_ICON), (selection_data[s].options->flags & SELECTION_USE_WARNING_ICON) ? + FixWarningIcon(LoadIcon(NULL, IDI_WARNING)) : LoadIcon(NULL, IDI_QUESTION)); + SetWindowTextU(hDlg, selection_data[s].szMessageTitle); SetWindowTextU(GetDlgItem(hDlg, IDCANCEL), lmprintf(MSG_007)); - SetWindowTextU(GetDlgItem(hDlg, IDC_SELECTION_TEXT), szMessageText); + SetWindowTextU(GetDlgItem(hDlg, IDC_SELECTION_TEXT), selection_data[s].szMessageText); for (i = 0; i < nDialogItems; i++) { - char* str = szDialogItem[i]; - SetWindowTextU(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i), str); - ShowWindow(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i), SW_SHOW); - // Compute the maximum line's width (with some extra for the username field if needed) - if (i == selection_dialog_username_index) { - str = calloc(strlen(szDialogItem[i]) + strlen(base_username) + 8, 1); - sprintf(str, "%s __%s__", szDialogItem[i], base_username); + hCtrl = GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i); + static_strcpy(str, selection_data[s].options->choices.String[i]); + SetWindowTextU(hCtrl, str); + ShowWindow(hCtrl, SW_SHOW); + // Compute the maximum line's width (with some extra for the username and edition fields) + if (i == selection_data[s].options->username_index - 1) { + static_sprintf(str, "%s __%s__", selection_data[s].options->choices.String[i], base_username); + mw = max(mw, GetTextSize(hCtrl, str).cx); + } else if (i == selection_data[s].options->edition_index - 1) { + mw = max(mw, GetTextSize(hCtrl, str).cx + + GetComboBoxMinWidth(GetDlgItem(hDlg, IDC_SELECTION_EDITION), &edition_name)); + } else { + mw = max(mw, GetTextSize(hCtrl, str).cx); } - mw = max(mw, GetTextSize(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i), str).cx); - if (i == selection_dialog_username_index) - free(str); + // Set tooltips, if any + if (i < (int)selection_data[s].options->tooltips.Index) + CreateTooltipEx(hDlg, hCtrl, selection_data[s].options->tooltips.String[i], -1); } // If our maximum line's width is greater than the default, set a nonzero delta width dw = (mw <= dw) ? 0 : mw - dw; @@ -752,7 +956,7 @@ static INT_PTR CALLBACK CustomSelectionCallback(HWND hDlg, UINT message, WPARAM SelectFont(hDC, hDlgFont); // Yes, you *MUST* reapply the font to the DC, even after SetWindowText! GetWindowRect(hCtrl, &rc); dh = rc.bottom - rc.top; - DrawTextU(hDC, szMessageText, -1, &rc, DT_CALCRECT | DT_WORDBREAK); + DrawTextU(hDC, selection_data[s].szMessageText, -1, &rc, DT_CALCRECT | DT_WORDBREAK); dh = rc.bottom - rc.top - dh; safe_release_dc(hCtrl, hDC); ResizeMoveCtrl(hDlg, hCtrl, 0, 0, 0, dh, 1.0f); @@ -760,12 +964,12 @@ static INT_PTR CALLBACK CustomSelectionCallback(HWND hDlg, UINT message, WPARAM ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i), 0, dh, dw, 0, 1.0f); // If required, set up the the username edit box - if (selection_dialog_username_index != -1) { + if (selection_data[s].options->username_index > 0) { unattend_username[0] = 0; - hCtrl = GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_dialog_username_index); + hCtrl = GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[s].options->username_index - 1); GetClientRect(hCtrl, &rc); ResizeMoveCtrl(hDlg, hCtrl, 0, 0, - (rc.left - rc.right) + GetTextSize(hCtrl, szDialogItem[selection_dialog_username_index]).cx + ddw, 0, 1.0f); + (rc.left - rc.right) + GetTextSize(hCtrl, selection_data[s].options->choices.String[selection_data[s].options->username_index - 1]).cx + ddw, 0, 1.0f); GetWindowRect(hCtrl, &rc); SetWindowPos(GetDlgItem(hDlg, IDC_SELECTION_USERNAME), hCtrl, rc.left, rc.top, 0, 0, SWP_NOMOVE | SWP_NOSIZE); hCtrl = GetDlgItem(hDlg, IDC_SELECTION_USERNAME); @@ -778,6 +982,25 @@ static INT_PTR CALLBACK CustomSelectionCallback(HWND hDlg, UINT message, WPARAM ShowWindow(hCtrl, SW_SHOW); } + // If required, set up the the edition combo box + if (selection_data[s].options->edition_index > 0 && edition_name.String != NULL && edition_name.Index > 0) { + hCtrl = GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[s].options->edition_index - 1); + GetClientRect(hCtrl, &rc); + ResizeMoveCtrl(hDlg, hCtrl, 0, 0, + (rc.left - rc.right) + GetTextSize(hCtrl, selection_data[s].options->choices.String[selection_data[s].options->edition_index - 1]).cx + ddw, 0, 1.0f); + GetWindowRect(hCtrl, &rc); + SetWindowPos(GetDlgItem(hDlg, IDC_SELECTION_EDITION), hCtrl, rc.left, rc.top, 0, 0, SWP_NOMOVE | SWP_NOSIZE); + hCtrl = GetDlgItem(hDlg, IDC_SELECTION_EDITION); + GetWindowRect(hCtrl, &rc2); + ResizeMoveCtrl(hDlg, hCtrl, right_to_left_mode ? rc2.right - rc.left : rc.right - rc2.left, rc.top - rc2.top, + GetComboBoxMinWidth(hCtrl, &edition_name), 0, 1.0f); + for (i = 0; i < (int)edition_name.Index; i++) + IGNORE_RETVAL(ComboBox_SetItemData(hCtrl, ComboBox_AddStringU(hCtrl, edition_name.String[i]), + (LPARAM)atoi(edition_index.String[i]))); + IGNORE_RETVAL(ComboBox_SetCurSel(hCtrl, unattend_edition_index)); + ShowWindow(hCtrl, SW_SHOW); + } + if (nDialogItems > 2) { GetWindowRect(GetDlgItem(hDlg, IDC_SELECTION_CHOICE2), &rc); GetWindowRect(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + nDialogItems - 1), &rc2); @@ -791,45 +1014,101 @@ static INT_PTR CALLBACK CustomSelectionCallback(HWND hDlg, UINT message, WPARAM ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDOK), dw, dh, 0, 0, 1.0f); ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDCANCEL), dw, dh, 0, 0, 1.0f); ResizeButtonHeight(hDlg, IDOK); + if (selection_data[s].options->flags & SELECTION_NEEDS_ALL_TO_PROCEED) + EnableWindow(GetDlgItem(hDlg, IDOK), FALSE); ResizeButtonHeight(hDlg, IDCANCEL); // Set the default selection for (i = 0, m = 1; i < nDialogItems; i++, m <<= 1) - Button_SetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i), (m & selection_dialog_mask) ? BST_CHECKED : BST_UNCHECKED); + Button_SetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i), + (selection_data[s].options->style == BS_AUTORADIOBUTTON && selection_data[s].options->mask == 0 && i == 0) || + (selection_data[s].options->mask != 0 && (m & selection_data[s].options->mask) ? BST_CHECKED : BST_UNCHECKED)); + // Hide the silent option if any of the username/regional/privacy checkboxes are unchecked + if (selection_data[s].options->edition_index > 0) { + if (!Button_GetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[s].options->username_index - 1)) || + !Button_GetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[s].options->regional_index - 1)) || + !Button_GetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[s].options->privacy_index - 1))) + ShowSilentOption(hDlg, s, FALSE); + } + + SetDarkModeForChild(hDlg); + StrArrayDestroy(&edition_name); + StrArrayDestroy(&edition_index); return (INT_PTR)TRUE; case WM_CTLCOLORSTATIC: // Change the background colour for static text and icon SetBkMode((HDC)wParam, TRANSPARENT); - if ((HWND)lParam == GetDlgItem(hDlg, IDC_NOTIFICATION_LINE)) { - return (INT_PTR)separator_brush; - } - return (INT_PTR)background_brush; + if ((HWND)lParam == GetDlgItem(hDlg, IDC_NOTIFICATION_LINE)) + return (INT_PTR)GetSysColorBrush(COLOR_3DLIGHT); + return (INT_PTR)GetSysColorBrush(COLOR_WINDOW); case WM_NCHITTEST: // Check coordinates to prevent resize actions loc = DefWindowProc(hDlg, message, wParam, lParam); for (i = 0; i < 9; i++) { - if (loc == disabled[i]) { + if (loc == disabled[i]) return (INT_PTR)TRUE; - } } return (INT_PTR)FALSE; case WM_NCDESTROY: - safe_delete_object(hDlgFont); + if (s == 0) + safe_delete_object(hDlgFont); break; case WM_COMMAND: - switch (LOWORD(wParam)) { + BOOL enable = TRUE; + WORD command = LOWORD(wParam); + if (command >= IDC_SELECTION_CHOICE1 && command < IDC_SELECTION_CHOICEMAX) { + if (selection_data[s].options->flags & SELECTION_NEEDS_ALL_TO_PROCEED) { + // Check if all the currently displayed checkboxes are displayed to enable/disable the OK button + for (i = 0; i < nDialogItems; i++) + enable = enable && Button_GetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i)); + EnableWindow(GetDlgItem(hDlg, IDOK), enable); + } else if (selection_data[s].options->edition_index > 0 && selection_data[s].options->username_index > 0 && + // Check if local account + regional settings + data collection checkboxes are clicked and show/hide the silent install option + selection_data[s].options->edition_index > 0 && selection_data[s].options->regional_index > 0 && + (command - IDC_SELECTION_CHOICE1 == selection_data[s].options->username_index - 1 || + command - IDC_SELECTION_CHOICE1 == selection_data[s].options->regional_index - 1 || + command - IDC_SELECTION_CHOICE1 == selection_data[s].options->privacy_index - 1)) { + enable = Button_GetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[s].options->username_index - 1)) && + Button_GetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[s].options->regional_index - 1)) && + Button_GetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[s].options->privacy_index - 1)); + hCtrl = GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[s].options->edition_index - 1); + if (enable && !IsWindowVisible(hCtrl)) + ShowSilentOption(hDlg, s, TRUE); + else if (!enable && IsWindowVisible(hCtrl)) + ShowSilentOption(hDlg, s, FALSE); + } + } else switch (LOWORD(wParam)) { case IDOK: + // Produce a big scary warning if the silent install option was selected + if (selection_data[s].options->edition_index > 0 && + Button_GetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + selection_data[s].options->edition_index - 1))) { + selection_dialog_options_t selection = { 0 }; + selection.style = BS_AUTOCHECKBOX; + selection.flags = SELECTION_NEEDS_ALL_TO_PROCEED | SELECTION_USE_WARNING_ICON; + StrArrayCreate(&selection.choices, 4); + StrArrayAdd(&selection.choices, lmprintf(MSG_372), FALSE); + StrArrayAdd(&selection.choices, lmprintf(MSG_373), FALSE); + StrArrayAdd(&selection.choices, lmprintf(MSG_374), FALSE); + i = SelectionDialog(APPLICATION_NAME, lmprintf(MSG_356), &selection); + safe_free(selection.choices.String); + if (i != 7) + break; + } for (r = 0, i = 0, m = 1; i < nDialogItems; i++, m <<= 1) if (Button_GetCheck(GetDlgItem(hDlg, IDC_SELECTION_CHOICE1 + i)) == BST_CHECKED) r += m; - if (selection_dialog_username_index != -1) { + if (selection_data[s].options->username_index > 0) { GetWindowTextU(GetDlgItem(hDlg, IDC_SELECTION_USERNAME), unattend_username, MAX_USERNAME_LENGTH); // Perform string sanitization (NB: GetWindowTextU always terminates the string) for (i = 0; unattend_username[i] != 0; i++) { if (strchr(username_invalid_chars, unattend_username[i]) != NULL) unattend_username[i] = '_'; } + // Also remove leading and trailing whitespaces (https://github.com/pbatard/rufus/issues/2950) + trim(unattend_username); } + if (selection_data[s].options->edition_index > 0) + unattend_edition_index = (int)ComboBox_GetCurItemData(GetDlgItem(hDlg, IDC_SELECTION_EDITION)); // Fall through case IDNO: case IDCANCEL: @@ -841,23 +1120,49 @@ static INT_PTR CALLBACK CustomSelectionCallback(HWND hDlg, UINT message, WPARAM return (INT_PTR)FALSE; } +/* + * Because we're not in the main dialog thread, we must handle our own tooltip popping + * when the mouse switches to a different control, else we get overlapping tooltips due + * to Windows not automatically forwarding mouse events to child dialogs. + */ +LRESULT CALLBACK SelectionTooltipPopper(int nCode, WPARAM wParam, LPARAM lParam) +{ + static HWND hPreviousCtrl = NULL; + MOUSEHOOKSTRUCT* mhs; + + // Get the control over which the mouse resides and check if it changed. + if (nCode == HC_ACTION && wParam == WM_MOUSEMOVE) { + mhs = (MOUSEHOOKSTRUCT*)lParam; + if (hPreviousCtrl != mhs->hwnd) { + PopTooltip(hPreviousCtrl); + hPreviousCtrl = mhs->hwnd; + } + + } + return CallNextHookEx(NULL, nCode, wParam, lParam); +} + /* * Display an item selection dialog */ -int CustomSelectionDialog(int style, char* title, char* message, char** choices, int size, int mask, int username_index) +int SelectionDialog(char* title, char* message, selection_dialog_options_t* options) { + HHOOK hook; int ret; + assert(options != NULL); dialog_showing++; - szMessageTitle = title; - szMessageText = message; - szDialogItem = choices; - nDialogItems = size; - selection_dialog_style = style; - selection_dialog_mask = mask; - selection_dialog_username_index = username_index; - assert(selection_dialog_style == BS_AUTORADIOBUTTON || selection_dialog_style == BS_AUTOCHECKBOX); - ret = (int)MyDialogBox(hMainInstance, IDD_SELECTION, hMainDialog, CustomSelectionCallback); + s++; + selection_data[s].szMessageTitle = title; + selection_data[s].szMessageText = message; + selection_data[s].options = options; + if (options->style == 0) + options->style = BS_AUTORADIOBUTTON; + assert ((options->style == BS_AUTORADIOBUTTON || options->style == BS_AUTOCHECKBOX)); + hook = SetWindowsHookEx(WH_MOUSE, SelectionTooltipPopper, NULL, GetCurrentThreadId()); + ret = (int)MyDialogBox(hMainInstance, IDD_SELECTION, hMainDialog, SelectionCallback); + UnhookWindowsHookEx(hook); + s--; dialog_showing--; return ret; @@ -871,7 +1176,7 @@ INT_PTR CALLBACK ListCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa LRESULT loc; int i, dh, r = -1; // Prevent resizing - static LRESULT disabled[9] = { HTLEFT, HTRIGHT, HTTOP, HTBOTTOM, HTSIZE, + static LRESULT disabled[] = { HTLEFT, HTRIGHT, HTTOP, HTBOTTOM, HTSIZE, HTTOPLEFT, HTTOPRIGHT, HTBOTTOMLEFT, HTBOTTOMRIGHT }; static HBRUSH background_brush, separator_brush; // To use the system message font @@ -883,11 +1188,12 @@ INT_PTR CALLBACK ListCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa switch (message) { case WM_INITDIALOG: + SetDarkModeForDlg(hDlg); // Don't overflow our max radio button - if (nDialogItems > (IDC_LIST_ITEMMAX - IDC_LIST_ITEM1 + 1)) { - uprintf("Warning: Too many items requested for List (%d vs %d)", - nDialogItems, IDC_LIST_ITEMMAX - IDC_LIST_ITEM1); - nDialogItems = IDC_LIST_ITEMMAX - IDC_LIST_ITEM1; + if (list_data.nDialogItems > (IDC_LIST_ITEMMAX - IDC_LIST_ITEM1 + 1)) { + uprintf("WARNING: Too many items requested for List (%d vs %d)", + list_data.nDialogItems, IDC_LIST_ITEMMAX - IDC_LIST_ITEM1); + list_data.nDialogItems = IDC_LIST_ITEMMAX - IDC_LIST_ITEM1; } // Get the system message box font. See http://stackoverflow.com/a/6057761 if (hDlgFont == NULL) { @@ -898,7 +1204,7 @@ INT_PTR CALLBACK ListCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa // Set the dialog to use the system message box font SendMessage(hDlg, WM_SETFONT, (WPARAM)hDlgFont, MAKELPARAM(TRUE, 0)); SendMessage(GetDlgItem(hDlg, IDC_LIST_TEXT), WM_SETFONT, (WPARAM)hDlgFont, MAKELPARAM(TRUE, 0)); - for (i = 0; i < nDialogItems; i++) + for (i = 0; i < list_data.nDialogItems; i++) SendMessage(GetDlgItem(hDlg, IDC_LIST_ITEM1 + i), WM_SETFONT, (WPARAM)hDlgFont, MAKELPARAM(TRUE, 0)); SendMessage(GetDlgItem(hDlg, IDYES), WM_SETFONT, (WPARAM)hDlgFont, MAKELPARAM(TRUE, 0)); SendMessage(GetDlgItem(hDlg, IDNO), WM_SETFONT, (WPARAM)hDlgFont, MAKELPARAM(TRUE, 0)); @@ -910,11 +1216,11 @@ INT_PTR CALLBACK ListCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa CenterDialog(hDlg, NULL); // Change the default icon and set the text Static_SetIcon(GetDlgItem(hDlg, IDC_LIST_ICON), LoadIcon(NULL, IDI_EXCLAMATION)); - SetWindowTextU(hDlg, szMessageTitle); + SetWindowTextU(hDlg, list_data.szMessageTitle); SetWindowTextU(GetDlgItem(hDlg, IDCANCEL), lmprintf(MSG_007)); - SetWindowTextU(GetDlgItem(hDlg, IDC_LIST_TEXT), szMessageText); - for (i = 0; i < nDialogItems; i++) { - SetWindowTextU(GetDlgItem(hDlg, IDC_LIST_ITEM1 + i), szDialogItem[i]); + SetWindowTextU(GetDlgItem(hDlg, IDC_LIST_TEXT), list_data.szMessageText); + for (i = 0; i < list_data.nDialogItems; i++) { + SetWindowTextU(GetDlgItem(hDlg, IDC_LIST_ITEM1 + i), list_data.szDialogItem[i]); ShowWindow(GetDlgItem(hDlg, IDC_LIST_ITEM1 + i), SW_SHOW); } // Move/Resize the controls as needed to fit our text @@ -923,15 +1229,15 @@ INT_PTR CALLBACK ListCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa SelectFont(hDC, hDlgFont); // Yes, you *MUST* reapply the font to the DC, even after SetWindowText! GetWindowRect(hCtrl, &rc); dh = rc.bottom - rc.top; - DrawTextU(hDC, szMessageText, -1, &rc, DT_CALCRECT | DT_WORDBREAK); + DrawTextU(hDC, list_data.szMessageText, -1, &rc, DT_CALCRECT | DT_WORDBREAK); dh = rc.bottom - rc.top - dh; safe_release_dc(hCtrl, hDC); ResizeMoveCtrl(hDlg, hCtrl, 0, 0, 0, dh, 1.0f); - for (i = 0; i < nDialogItems; i++) + for (i = 0; i < list_data.nDialogItems; i++) ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDC_LIST_ITEM1 + i), 0, dh, 0, 0, 1.0f); - if (nDialogItems > 1) { + if (list_data.nDialogItems > 1) { GetWindowRect(GetDlgItem(hDlg, IDC_LIST_ITEM1), &rc); - GetWindowRect(GetDlgItem(hDlg, IDC_LIST_ITEM1 + nDialogItems - 1), &rc2); + GetWindowRect(GetDlgItem(hDlg, IDC_LIST_ITEM1 + list_data.nDialogItems - 1), &rc2); dh += rc2.top - rc.top; } ResizeMoveCtrl(hDlg, hDlg, 0, 0, 0, dh, 1.0f); @@ -941,21 +1247,20 @@ INT_PTR CALLBACK ListCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDCANCEL), 0, dh, 0, 0, 1.0f); ResizeButtonHeight(hDlg, IDOK); ResizeButtonHeight(hDlg, IDCANCEL); + SetDarkModeForChild(hDlg); return (INT_PTR)TRUE; case WM_CTLCOLORSTATIC: // Change the background colour for static text and icon SetBkMode((HDC)wParam, TRANSPARENT); - if ((HWND)lParam == GetDlgItem(hDlg, IDC_NOTIFICATION_LINE)) { + if ((HWND)lParam == GetDlgItem(hDlg, IDC_NOTIFICATION_LINE)) return (INT_PTR)separator_brush; - } return (INT_PTR)background_brush; case WM_NCHITTEST: // Check coordinates to prevent resize actions loc = DefWindowProc(hDlg, message, wParam, lParam); - for (i = 0; i < 9; i++) { - if (loc == disabled[i]) { + for (i = 0; i < ARRAYSIZE(disabled); i++) { + if (loc == disabled[i]) return (INT_PTR)TRUE; - } } return (INT_PTR)FALSE; case WM_NCDESTROY: @@ -980,31 +1285,22 @@ INT_PTR CALLBACK ListCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lPa void ListDialog(char* title, char* message, char** items, int size) { dialog_showing++; - szMessageTitle = title; - szMessageText = message; - szDialogItem = items; - nDialogItems = size; + list_data.szMessageTitle = title; + list_data.szMessageText = message; + list_data.szDialogItem = items; + list_data.nDialogItems = size; MyDialogBox(hMainInstance, IDD_LIST, hMainDialog, ListCallback); dialog_showing--; } -static struct { - HWND hTip; // Tooltip handle - HWND hCtrl; // Handle of the control the tooltip belongs to - WNDPROC original_proc; - LPWSTR wstring; -} ttlist[MAX_TOOLTIPS] = { {0} }; - -INT_PTR CALLBACK TooltipCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) +INT_PTR CALLBACK TooltipCallback(HWND hControl, UINT message, WPARAM wParam, LPARAM lParam) { LPNMTTDISPINFOW lpnmtdi; int i = MAX_TOOLTIPS; // Make sure we have an original proc - for (i=0; i= MAX_TOOLTIPS) return (INT_PTR)FALSE; switch (message) { @@ -1015,17 +1311,18 @@ INT_PTR CALLBACK TooltipCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lpnmtdi->lpszText = ttlist[i].wstring; // Don't ask me WHY we need to clear RTLREADING for RTL multiline text to look good lpnmtdi->uFlags &= ~TTF_RTLREADING; - SendMessage(hDlg, TTM_SETMAXTIPWIDTH, 0, (LPARAM)(int)(150.0f * fScale)); + SendMessage(hControl, TTM_SETMAXTIPWIDTH, 0, (LPARAM)(int)(150.0f * fScale)); return (INT_PTR)TRUE; } break; } #ifdef _DEBUG - // comctl32 causes issues if the tooltips are not being manipulated from the same thread as their parent controls - if (GetCurrentThreadId() != MainThreadId) - uprintf("Warning: Tooltip callback is being called from wrong thread"); + // comctl32 causes issues if the tooltips are not being manipulated from the same thread as + // their parent controls. See https://github.com/pbatard/rufus/issues/764. + if (GetCurrentThreadId() != GetWindowThreadProcessId(hControl, NULL)) + uprintf("WARNING: Tooltip callback is being called from wrong thread"); #endif - return CallWindowProc(ttlist[i].original_proc, hDlg, message, wParam, lParam); + return CallWindowProc(ttlist[i].original_proc, hControl, message, wParam, lParam); } /* @@ -1033,22 +1330,19 @@ INT_PTR CALLBACK TooltipCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM * duration sets the duration in ms. Use -1 for default * message is an UTF-8 string */ -BOOL CreateTooltip(HWND hControl, const char* message, int duration) +BOOL CreateTooltipEx(HWND hDialog, HWND hControl, const char* message, int duration) { - TOOLINFOW toolInfo = {0}; + TOOLINFOW toolInfo = { 0 }; int i; - if ( (hControl == NULL) || (message == NULL) ) { + if ( (hControl == NULL) || (message == NULL) ) return FALSE; - } // Destroy existing tooltip if any DestroyTooltip(hControl); // Find an empty slot - for (i=0; i= MAX_TOOLTIPS) { uprintf("Maximum number of tooltips reached (%d)\n", MAX_TOOLTIPS); return FALSE; @@ -1057,12 +1351,12 @@ BOOL CreateTooltip(HWND hControl, const char* message, int duration) // Create the tooltip window ttlist[i].hTip = CreateWindowEx(right_to_left_mode ? WS_EX_LAYOUTRTL : 0, TOOLTIPS_CLASS, NULL, WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP, - CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, hMainDialog, NULL, + CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, hDialog, NULL, hMainInstance, NULL); - if (ttlist[i].hTip == NULL) { + if (ttlist[i].hTip == NULL) return FALSE; - } + SetDarkTheme(ttlist[i].hTip); ttlist[i].hCtrl = hControl; // Subclass the tooltip to handle multiline @@ -1077,7 +1371,7 @@ BOOL CreateTooltip(HWND hControl, const char* message, int duration) // Associate the tooltip to the control toolInfo.cbSize = sizeof(toolInfo); toolInfo.hwnd = ttlist[i].hTip; // Set to the tooltip itself to ease up subclassing - toolInfo.uFlags = TTF_IDISHWND | TTF_SUBCLASS | ((right_to_left_mode)?TTF_RTLREADING:0); + toolInfo.uFlags = TTF_IDISHWND | TTF_SUBCLASS | ((right_to_left_mode) ? TTF_RTLREADING : 0); // set TTF_NOTBUTTON and TTF_CENTERTIP if it isn't a button if (!(SendMessage(hControl, WM_GETDLGCODE, 0, 0) & DLGC_BUTTON)) toolInfo.uFlags |= 0x80000000L | TTF_CENTERTIP; @@ -1089,16 +1383,30 @@ BOOL CreateTooltip(HWND hControl, const char* message, int duration) return TRUE; } -/* Destroy a tooltip. hCtrl = handle of the control the tooltip is associated with */ +/* + * "Pop" (stop displaying) the tooltip associated with a specific control. + * Does nothing if the control i NULL or doesn't have an associated tooltip. + */ +void PopTooltip(HWND hControl) +{ + int i; + if (hControl == NULL) + return; + for (i = 0; i < MAX_TOOLTIPS && ttlist[i].hCtrl != hControl; i++); + if (i < MAX_TOOLTIPS) + SendMessage(ttlist[i].hTip, TTM_POP, 0, 0); +} + +/* Destroy a tooltip. hControl = handle of the control the tooltip is associated with */ void DestroyTooltip(HWND hControl) { int i; - if (hControl == NULL) return; - for (i=0; i= MAX_TOOLTIPS) return; + if (hControl == NULL) + return; + for (i = 0; i < MAX_TOOLTIPS && ttlist[i].hCtrl != hControl; i++); + if (i >= MAX_TOOLTIPS) + return; DestroyWindow(ttlist[i].hTip); safe_free(ttlist[i].wstring); ttlist[i].original_proc = NULL; @@ -1108,11 +1416,11 @@ void DestroyTooltip(HWND hControl) void DestroyAllTooltips(void) { - int i, j; + int i; - for (i=0, j=0; icode == EN_REQUESTRESIZE) && (!resized_already)) { @@ -1359,7 +1668,6 @@ INT_PTR CALLBACK UpdateCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM l case IDCANCEL: reset_localization(IDD_UPDATE_POLICY); EndDialog(hDlg, LOWORD(wParam)); - hUpdatesDlg = NULL; return (INT_PTR)TRUE; case IDC_CHECK_NOW: CheckForUpdates(TRUE); @@ -1519,7 +1827,7 @@ BOOL SetUpdateCheck(void) #endif more_info.id = IDD_UPDATE_POLICY; more_info.callback = UpdateCallback; - enable_updates = Notification(MSG_QUESTION, NULL, &more_info, lmprintf(MSG_004), lmprintf(MSG_005)); + enable_updates = (NotificationEx(MB_ICONQUESTION | MB_YESNO, NULL, &more_info, lmprintf(MSG_004), lmprintf(MSG_005)) == IDYES); #if !defined(_DEBUG) } #endif @@ -1561,6 +1869,37 @@ void CreateStaticFont(HDC hDC, HFONT* hFont, BOOL underlined) *hFont = CreateFontIndirect(&lf); } +void SetHyperLinkFont(HWND hWnd, HDC hDC, HFONT* hFont, BOOL underlined) +{ + static BOOL use_static_font = FALSE; + LOGFONT lf = { 0 }; + HFONT hFontTmp = NULL; + + if (*hFont == NULL) { + hFontTmp = (HFONT)SendMessage(hWnd, WM_GETFONT, 0, 0); + if (hFontTmp != NULL) { + GetObject(hFontTmp, sizeof(LOGFONT), &lf); + use_static_font = FALSE; + } else { + NONCLIENTMETRICS ncm = { 0 }; + ncm.cbSize = sizeof(NONCLIENTMETRICS); + if (SystemParametersInfo(SPI_GETNONCLIENTMETRICS, sizeof(NONCLIENTMETRICS), &ncm, 0)) { + lf = ncm.lfStatusFont; + use_static_font = FALSE; + } else { + CreateStaticFont(hDC, hFont, underlined); + use_static_font = TRUE; + } + } + if (!use_static_font) { + lf.lfUnderline = underlined; + *hFont = CreateFontIndirect(&lf); + } + } + if (!use_static_font) + SendMessage(hWnd, WM_SETFONT, (WPARAM)*hFont, TRUE); +} + /* * Work around the limitations of edit control, to display a hand cursor for hyperlinks * NB: The LTEXT control must have SS_NOTIFY attribute for this to work @@ -1587,7 +1926,7 @@ INT_PTR CALLBACK NewVersionCallback(HWND hDlg, UINT message, WPARAM wParam, LPAR char cmdline[] = APPLICATION_NAME " -w 150"; static char* filepath = NULL; static int download_status = 0; - static HFONT hyperlink_font = NULL; + static HFONT hHyperlinkFont = NULL; static HANDLE hThread = NULL; HWND hNotes; LONG err; @@ -1598,6 +1937,7 @@ INT_PTR CALLBACK NewVersionCallback(HWND hDlg, UINT message, WPARAM wParam, LPAR switch (message) { case WM_INITDIALOG: + SetDarkModeForDlg(hDlg); apply_localization(IDD_NEW_VERSION, hDlg); download_status = 0; SetTitleBarIcon(hDlg); @@ -1618,18 +1958,20 @@ INT_PTR CALLBACK NewVersionCallback(HWND hDlg, UINT message, WPARAM wParam, LPAR if (update.download_url == NULL) EnableWindow(GetDlgItem(hDlg, IDC_DOWNLOAD), FALSE); ResizeButtonHeight(hDlg, IDCANCEL); + SetDarkModeForChild(hDlg); + SubclassProgressBarControl(GetDlgItem(hDlg, IDC_PROGRESS)); + SetHyperLinkFont(GetDlgItem(hDlg, IDC_WEBSITE), (HDC)wParam, &hHyperlinkFont, TRUE); break; case WM_CTLCOLORSTATIC: if ((HWND)lParam != GetDlgItem(hDlg, IDC_WEBSITE)) return FALSE; // Change the font for the hyperlink SetBkMode((HDC)wParam, TRANSPARENT); - CreateStaticFont((HDC)wParam, &hyperlink_font, TRUE); - SelectObject((HDC)wParam, hyperlink_font); - SetTextColor((HDC)wParam, RGB(0,0,125)); // DARK_BLUE + SelectObject((HDC)wParam, hHyperlinkFont); + SetTextColor((HDC)wParam, GetSysColor(COLOR_HOTLIGHT)); return (INT_PTR)GetSysColorBrush(COLOR_BTNFACE); case WM_NCDESTROY: - safe_delete_object(hyperlink_font); + safe_delete_object(hHyperlinkFont); break; case WM_COMMAND: switch (LOWORD(wParam)) { @@ -1854,7 +2196,7 @@ LPCDLGTEMPLATE GetDialogTemplate(int Dialog_ID) wBuf = (WCHAR*)rcTemplate; wBuf = &wBuf[14]; // Move to class name // Skip class name and title - for (i = 0; i<2; i++) { + for (i = 0; i < 2; i++) { if (*wBuf == 0xFFFF) wBuf = &wBuf[2]; // Ordinal else @@ -1929,7 +2271,7 @@ static BOOL CALLBACK AlertPromptCallback(HWND hWnd, LPARAM lParam) if (GetWindowTextU(hWnd, str, sizeof(str)) == 0) return TRUE; - if (strcmp(str, button_str) == 0) + if (strcmp(str, alert_data.button_str) == 0) *found = TRUE; return TRUE; } @@ -1943,14 +2285,14 @@ static void CALLBACK AlertPromptHook(HWINEVENTHOOK hWinEventHook, DWORD Event, H if (GetWindowLongPtr(hWnd, GWL_STYLE) & WS_POPUPWINDOW) { str[0] = 0; GetWindowTextU(hWnd, str, sizeof(str)); - if (strcmp(str, title_str[0]) == 0) { + if (strcmp(str, alert_data.title_str[0]) == 0) { found = FALSE; EnumChildWindows(hWnd, AlertPromptCallback, (LPARAM)&found); if (found) { SendMessage(hWnd, WM_COMMAND, (WPARAM)IDCANCEL, (LPARAM)0); uprintf("Closed Windows format prompt"); } - } else if ((strcmp(str, title_str[1]) == 0) && (hWnd != hFidoDlg)) { + } else if ((strcmp(str, alert_data.title_str[1]) == 0) && (hWnd != hFidoDlg)) { // A wild Fido dialog appeared! => Keep track of its handle and center it hFidoDlg = hWnd; CenterDialog(hWnd, hMainDialog); @@ -1973,31 +2315,31 @@ void SetAlertPromptMessages(void) // 4097 = "You need to format the disk in drive %c: before you can use it." (dialog text) // 4125 = "Microsoft Windows" (dialog title) // 4126 = "Format disk" (button) - if (LoadStringU(hMui, 4125, title_str[0], sizeof(title_str[0])) <= 0) { - static_strcpy(title_str[0], "Microsoft Windows"); - uprintf("Warning: Could not locate localized format prompt title string in '%s': %s", mui_path, WindowsErrorString()); + if (LoadStringU(hMui, 4125, alert_data.title_str[0], sizeof(alert_data.title_str[0])) <= 0) { + static_strcpy(alert_data.title_str[0], "Microsoft Windows"); + uprintf("WARNING: Could not locate localized format prompt title string in '%s': %s", mui_path, WindowsErrorString()); } - if (LoadStringU(hMui, 4126, button_str, sizeof(button_str)) <= 0) { - static_strcpy(button_str, "Format disk"); - uprintf("Warning: Could not locate localized format prompt button string in '%s': %s", mui_path, WindowsErrorString()); + if (LoadStringU(hMui, 4126, alert_data.button_str, sizeof(alert_data.button_str)) <= 0) { + static_strcpy(alert_data.button_str, "Format disk"); + uprintf("WARNING: Could not locate localized format prompt button string in '%s': %s", mui_path, WindowsErrorString()); } FreeLibrary(hMui); } - static_strcpy(title_str[1], lmprintf(MSG_149)); + static_strcpy(alert_data.title_str[1], lmprintf(MSG_149)); } BOOL SetAlertPromptHook(void) { - if (ap_weh != NULL) + if (alert_data.weh != NULL) return TRUE; // No need to set again if active - ap_weh = SetWinEventHook(EVENT_SYSTEM_FOREGROUND, EVENT_SYSTEM_FOREGROUND, NULL, + alert_data.weh = SetWinEventHook(EVENT_SYSTEM_FOREGROUND, EVENT_SYSTEM_FOREGROUND, NULL, AlertPromptHook, 0, 0, WINEVENT_OUTOFCONTEXT | WINEVENT_SKIPOWNPROCESS); - return (ap_weh != NULL); + return (alert_data.weh != NULL); } void ClrAlertPromptHook(void) { - UnhookWinEvent(ap_weh); - ap_weh = NULL; + UnhookWinEvent(alert_data.weh); + alert_data.weh = NULL; } void FlashTaskbar(HANDLE handle) diff --git a/src/syslinux.c b/src/syslinux.c index 8203586c..b5b3f550 100644 --- a/src/syslinux.c +++ b/src/syslinux.c @@ -294,8 +294,8 @@ BOOL InstallSyslinux(DWORD drive_index, char drive_letter, int file_system) if (i > 0) img_report.cfg_path[i] = '/'; if (w < 0) { - uprintf("Could not patch Syslinux files."); - uprintf("WARNING: This could be caused by your firewall having modified downloaded content, such as 'ldlinux.sys'..."); + uprintf("WARNING: Could not patch Syslinux files."); + uprintf("This could be caused by your firewall having modified downloaded content, such as 'ldlinux.sys'..."); goto out; } diff --git a/src/ui.c b/src/ui.c index 27eac88d..ec2e5c7b 100644 --- a/src/ui.c +++ b/src/ui.c @@ -36,6 +36,7 @@ #include "drive.h" #include "missing.h" #include "resource.h" +#include "darkmode.h" #include "msapi_utf8.h" #include "localization.h" @@ -578,7 +579,7 @@ void SetSectionHeaders(HWND hDlg, HFONT* hFont) memset(wtmp, 0, sizeof(wtmp)); GetWindowTextW(hCtrl, wtmp, ARRAYSIZE(wtmp) - 4); wlen = wcslen(wtmp); - if_not_assert(wlen < ARRAYSIZE(wtmp) - 2) + if_assert_fails(wlen < ARRAYSIZE(wtmp) - 2) break; wtmp[wlen++] = L' '; wtmp[wlen++] = L' '; @@ -857,6 +858,7 @@ void CreateSmallButtons(HWND hDlg) hSaveImageList = ImageList_Create(i16, i16, ILC_COLOR32 | ILC_HIGHQUALITYSCALE | ILC_MIRROR, 1, 0); buffer = GetResource(hMainInstance, MAKEINTRESOURCEA(IDI_SAVE_16 + icon_offset), _RT_RCDATA, "save icon", &bufsize, FALSE); hIconSave = CreateIconFromResourceEx(buffer, bufsize, TRUE, 0x30000, 0, 0, 0); + ChangeIconColor(&hIconSave, 0); ImageList_AddIcon(hSaveImageList, hIconSave); DestroyIcon(hIconSave); SendMessage(hSaveToolbar, TB_SETIMAGELIST, (WPARAM)0, (LPARAM)hSaveImageList); @@ -874,6 +876,7 @@ void CreateSmallButtons(HWND hDlg) hHashImageList = ImageList_Create(i16, i16, ILC_COLOR32 | ILC_HIGHQUALITYSCALE | ILC_MIRROR, 1, 0); buffer = GetResource(hMainInstance, MAKEINTRESOURCEA(IDI_HASH_16 + icon_offset), _RT_RCDATA, "hash icon", &bufsize, FALSE); hIconHash = CreateIconFromResourceEx(buffer, bufsize, TRUE, 0x30000, 0, 0, 0); + ChangeIconColor(&hIconHash, 0); ImageList_AddIcon(hHashImageList, hIconHash); DestroyIcon(hIconHash); SendMessage(hHashToolbar, TB_SETIMAGELIST, (WPARAM)0, (LPARAM)hHashImageList); @@ -898,6 +901,7 @@ static INT_PTR CALLBACK ProgressCallback(HWND hCtrl, UINT message, WPARAM wParam SIZE size; LONG full_right; wchar_t winfo[128]; + COLORREF background_color, text_color, inverted_text_color, border_color; static BOOL marquee_mode = FALSE; static uint32_t pos = 0, min = 0, max = 0xFFFF; static COLORREF color = PROGRESS_BAR_NORMAL_COLOR; @@ -960,6 +964,10 @@ static INT_PTR CALLBACK ProgressCallback(HWND hCtrl, UINT message, WPARAM wParam case WM_PAINT: hDC = BeginPaint(hCtrl, &ps); + background_color = is_darkmode_enabled ? DARKMODE_NORMAL_CONTROL_BACKGROUND_COLOR : PROGRESS_BAR_BACKGROUND_COLOR; + text_color = is_darkmode_enabled ? PROGRESS_BAR_INVERTED_TEXT_COLOR : PROGRESS_BAR_NORMAL_TEXT_COLOR; + inverted_text_color = is_darkmode_enabled ? PROGRESS_BAR_NORMAL_TEXT_COLOR : PROGRESS_BAR_INVERTED_TEXT_COLOR; + border_color = is_darkmode_enabled ? DARKMODE_NORMAL_CONTROL_EDGE_COLOR : PROGRESS_BAR_BOX_COLOR; GetClientRect(hCtrl, &rc); rc2 = rc; InflateRect(&rc, -1, -1); @@ -978,7 +986,7 @@ static INT_PTR CALLBACK ProgressCallback(HWND hCtrl, UINT message, WPARAM wParam // Optional first segment if (pos + ((max - min) / 5) > max) { rc.right = MulDiv(pos + ((max - min) / 5) - max, rc.right, max - min); - SetTextColor(hDC, PROGRESS_BAR_INVERTED_TEXT_COLOR); + SetTextColor(hDC, inverted_text_color); SetBkColor(hDC, color); ExtTextOut(hDC, (full_right - size.cx) / 2, (rc.bottom - size.cy) / 2, ETO_CLIPPED | ETO_OPAQUE | ETO_NUMERICSLOCAL, &rc, winfo, (int)wcslen(winfo), NULL); @@ -988,8 +996,8 @@ static INT_PTR CALLBACK ProgressCallback(HWND hCtrl, UINT message, WPARAM wParam // Optional second segment if (pos > min) { rc.right = MulDiv(pos - min, rc.right, max - min); - SetTextColor(hDC, PROGRESS_BAR_NORMAL_TEXT_COLOR); - SetBkColor(hDC, PROGRESS_BAR_BACKGROUND_COLOR); + SetTextColor(hDC, text_color); + SetBkColor(hDC, background_color); ExtTextOut(hDC, (full_right - size.cx) / 2, (rc.bottom - size.cy) / 2, ETO_CLIPPED | ETO_OPAQUE | ETO_NUMERICSLOCAL, &rc, winfo, (int)wcslen(winfo), NULL); rc.left = rc.right; @@ -997,14 +1005,14 @@ static INT_PTR CALLBACK ProgressCallback(HWND hCtrl, UINT message, WPARAM wParam } // Second to last segment rc.right = MulDiv(pos - min + ((max - min) / 5), rc.right, max - min); - SetTextColor(hDC, PROGRESS_BAR_INVERTED_TEXT_COLOR); + SetTextColor(hDC, inverted_text_color); SetBkColor(hDC, color); ExtTextOut(hDC, (full_right - size.cx) / 2, (rc.bottom - size.cy) / 2, ETO_CLIPPED | ETO_OPAQUE | ETO_NUMERICSLOCAL, &rc, winfo, (int)wcslen(winfo), NULL); } else { // First segment rc.right = (pos > min) ? MulDiv(pos - min, rc.right, max - min) : rc.left; - SetTextColor(hDC, PROGRESS_BAR_INVERTED_TEXT_COLOR); + SetTextColor(hDC, inverted_text_color); SetBkColor(hDC, color); ExtTextOut(hDC, (full_right - size.cx) / 2, (rc.bottom - size.cy) / 2, ETO_CLIPPED | ETO_OPAQUE | ETO_NUMERICSLOCAL, &rc, winfo, (int)wcslen(winfo), NULL); @@ -1012,12 +1020,12 @@ static INT_PTR CALLBACK ProgressCallback(HWND hCtrl, UINT message, WPARAM wParam // Last segment rc.left = rc.right; rc.right = full_right; - SetTextColor(hDC, PROGRESS_BAR_NORMAL_TEXT_COLOR); - SetBkColor(hDC, PROGRESS_BAR_BACKGROUND_COLOR); + SetTextColor(hDC, text_color); + SetBkColor(hDC, background_color); ExtTextOut(hDC, (full_right - size.cx) / 2, (rc.bottom - size.cy) / 2, ETO_CLIPPED | ETO_OPAQUE | ETO_NUMERICSLOCAL, &rc, winfo, (int)wcslen(winfo), NULL); // Bounding rectangle - SetDCPenColor(hDC, PROGRESS_BAR_BOX_COLOR); + SetDCPenColor(hDC, border_color); Rectangle(hDC, rc2.left, rc2.top, rc2.right, rc2.bottom); if (hOldFont != NULL) SelectObject(hDC, hOldFont); @@ -1061,8 +1069,8 @@ void CreateAdditionalControls(HWND hDlg) // Fetch the up and down expand icons for the advanced options toolbar hDll = GetLibraryHandle("ComDlg32"); - hIconDown = (HICON)LoadImage(hDll, MAKEINTRESOURCE(577), IMAGE_ICON, s16, s16, LR_DEFAULTCOLOR | LR_SHARED); - hIconUp = (HICON)LoadImage(hDll, MAKEINTRESOURCE(578), IMAGE_ICON, s16, s16, LR_DEFAULTCOLOR | LR_SHARED); + hIconDown = (HICON)LoadImage(hDll, MAKEINTRESOURCE(is_darkmode_enabled ? 579 : 577), IMAGE_ICON, s16, s16, LR_DEFAULTCOLOR | LR_SHARED); + hIconUp = (HICON)LoadImage(hDll, MAKEINTRESOURCE(is_darkmode_enabled ? 580 : 578), IMAGE_ICON, s16, s16, LR_DEFAULTCOLOR | LR_SHARED); // Fallback to using Shell32 if we can't locate the icons we want in ComDlg32 (Windows 8) hDll = GetLibraryHandle("Shell32"); if (hIconUp == NULL) @@ -1122,6 +1130,7 @@ void CreateAdditionalControls(HWND hDlg) buffer = GetResource(hMainInstance, MAKEINTRESOURCEA(multitoolbar_icons[i] + icon_offset), _RT_RCDATA, "toolbar icon", &bufsize, FALSE); hIcon = CreateIconFromResourceEx(buffer, bufsize, TRUE, 0x30000, 0, 0, 0); + ChangeIconColor(&hIcon, 0); // Mirror the "world" icon on RTL since we can't use an ImageList mirroring flag for that... if (right_to_left_mode && (i == 0)) hIcon = CreateMirroredIcon(hIcon); @@ -1596,7 +1605,7 @@ void SetBootTypeDropdownWidth(void) void OnPaint(HDC hdc) { int i; - COLORREF cp = GetSysColor(COLOR_WINDOWTEXT); + COLORREF cp = is_darkmode_enabled ? DARKMODE_NORMAL_CONTROL_EDGE_COLOR : GetSysColor(COLOR_WINDOWTEXT); HPEN hp = CreatePen(0, (fScale < 1.5f) ? 2 : 3, cp); HPEN hop = (HPEN)SelectObject(hdc, hp); for (i = 0; i < ARRAYSIZE(section_vpos); i++) { diff --git a/src/ui.h b/src/ui.h index 446bbbe3..193bffda 100644 --- a/src/ui.h +++ b/src/ui.h @@ -25,16 +25,26 @@ #pragma once // Progress bar colors -#define PROGRESS_BAR_NORMAL_TEXT_COLOR RGB(0x00, 0x00, 0x00) -#define PROGRESS_BAR_INVERTED_TEXT_COLOR RGB(0xFF, 0xFF, 0xFF) -#define PROGRESS_BAR_BACKGROUND_COLOR RGB(0xE6, 0xE6, 0xE6) -#define PROGRESS_BAR_BOX_COLOR RGB(0xBC, 0xBC, 0xBC) -#define PROGRESS_BAR_NORMAL_COLOR RGB(0x06, 0xB0, 0x25) -#define PROGRESS_BAR_PAUSED_COLOR RGB(0xDA, 0xCB, 0x26) -#define PROGRESS_BAR_ERROR_COLOR RGB(0xDA, 0x26, 0x26) +#define PROGRESS_BAR_NORMAL_TEXT_COLOR RGB(0x00, 0x00, 0x00) +#define PROGRESS_BAR_INVERTED_TEXT_COLOR RGB(0xFF, 0xFF, 0xFF) +#define PROGRESS_BAR_BACKGROUND_COLOR RGB(0xE6, 0xE6, 0xE6) +#define PROGRESS_BAR_BOX_COLOR RGB(0xBC, 0xBC, 0xBC) +#define PROGRESS_BAR_NORMAL_COLOR RGB(0x06, 0xB0, 0x25) +#define PROGRESS_BAR_PAUSED_COLOR RGB(0xDA, 0xCB, 0x26) +#define PROGRESS_BAR_ERROR_COLOR RGB(0xDA, 0x26, 0x26) // Toolbar icons main color -#define TOOLBAR_ICON_COLOR RGB(0x29, 0x80, 0xB9) +#define TOOLBAR_ICON_COLOR RGB(0x29, 0x80, 0xB9) + +// Dark Mode Colors +#define DARKMODE_TOOLBAR_ICON_COLOR RGB(0xFF, 0xD7, 0x00) +#define DARKMODE_NORMAL_TEXT_COLOR RGB(0xE0, 0xE0, 0xE0) +#define DARKMODE_DISABLED_TEXT_COLOR RGB(0x80, 0x80, 0x80) +#define DARKMODE_NORMAL_DIALOG_BACKGROUND_COLOR RGB(0x20, 0x20, 0x20) +#define DARKMODE_NORMAL_CONTROL_BACKGROUND_COLOR RGB(0x38, 0x38, 0x38) +#define DARKMODE_HOT_CONTROL_BACKGROUND_COLOR RGB(0x45, 0x45, 0x45) +#define DARKMODE_NORMAL_CONTROL_EDGE_COLOR RGB(0x64, 0x64, 0x64) +#define DARKMODE_HOT_CONTROL_EDGE_COLOR RGB(0x9B, 0x9B, 0x9B) // Toolbar default style #define TOOLBAR_STYLE ( WS_CHILD | WS_TABSTOP | WS_VISIBLE | \ diff --git a/src/vhd.c b/src/vhd.c index 40db6880..7444ee17 100644 --- a/src/vhd.c +++ b/src/vhd.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Virtual Disk Handling functions - * Copyright © 2013-2025 Pete Batard + * Copyright © 2013-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -99,6 +99,9 @@ static int8_t IsCompressedBootableImage(const char* path) ErrorStatus = 0; if (img_report.compression_type < BLED_COMPRESSION_MAX) { bled_init(0, uprintf, NULL, NULL, NULL, NULL, &ErrorStatus); + dc = bled_get_uncompressed_size(path, file_assoc[i].type); + if (dc > 0) + img_report.projected_size = dc; dc = bled_uncompress_to_buffer(path, (char*)buf, MBR_SIZE, file_assoc[i].type); bled_exit(); } else if (img_report.compression_type == BLED_COMPRESSION_MAX) { @@ -476,9 +479,9 @@ static DWORD WINAPI VhdSaveImageThread(void* param) STOPGAP_CREATE_VIRTUAL_DISK_PARAMETERS vparams = { 0 }; VIRTUAL_DISK_PROGRESS vprogress = { 0 }; OVERLAPPED overlapped = { 0 }; - DWORD r = ERROR_NOT_FOUND, flags; + DWORD r = ERROR_NOT_FOUND, flags, bytes_read = 0; - if_not_assert(img_save->Type == VIRTUAL_STORAGE_TYPE_DEVICE_VHD || + if_assert_fails(img_save->Type == VIRTUAL_STORAGE_TYPE_DEVICE_VHD || img_save->Type == VIRTUAL_STORAGE_TYPE_DEVICE_VHDX) return ERROR_INVALID_PARAMETER; @@ -499,7 +502,6 @@ static DWORD WINAPI VhdSaveImageThread(void* param) // be used as DD images. if (img_save->Type == VIRTUAL_STORAGE_TYPE_DEVICE_VHD) flags |= CREATE_VIRTUAL_DISK_FLAG_FULL_PHYSICAL_ALLOCATION; - // TODO: Use CREATE_VIRTUAL_DISK_FLAG_PREVENT_WRITES_TO_SOURCE_DISK? overlapped.hEvent = CreateEventA(NULL, TRUE, FALSE, NULL); @@ -531,6 +533,12 @@ static DWORD WINAPI VhdSaveImageThread(void* param) } } + if (!GetOverlappedResult(handle, &overlapped, &bytes_read, FALSE)) { + r = GetLastError(); + uprintf("Could not save virtual disk: %s", WindowsErrorString()); + goto out; + } + r = 0; UpdateProgressWithInfo(OP_FORMAT, MSG_261, SelectedDrive.DiskSize, SelectedDrive.DiskSize); uprintf("Saved '%s'", img_save->ImagePath); @@ -543,6 +551,8 @@ out: safe_free(img_save->DevicePath); safe_free(img_save->ImagePath); PostMessage(hMainDialog, UM_FORMAT_COMPLETED, (WPARAM)TRUE, 0); + if (r != 0 && !IS_ERROR(ErrorStatus)) + ErrorStatus = RUFUS_ERROR(SCODE_CODE(r)); ExitThread(r); } @@ -556,70 +566,105 @@ static DWORD WINAPI FfuSaveImageThread(void* param) { DWORD r; IMG_SAVE* img_save = (IMG_SAVE*)param; - char cmd[MAX_PATH + 128], letters[27], *label; + char cmd[2 * KB], letters[27], *label; GetDriveLabel(SelectedDrive.DeviceNumber, letters, &label, TRUE); - static_sprintf(cmd, "dism /Capture-Ffu /CaptureDrive:%s /ImageFile:\"%s\" " - "/Name:\"%s\" /Description:\"Created by %s (%s)\"", + static_sprintf(cmd, "%s\\dism.exe /Capture-Ffu /CaptureDrive:%s /ImageFile:\"%s\" " + "/Name:\"%s\" /Description:\"Created by %s (%s)\"", sysnative_dir, img_save->DevicePath, img_save->ImagePath, label, APPLICATION_NAME, RUFUS_URL); - uprintf("Running command: '%s", cmd); - r = RunCommandWithProgress(cmd, sysnative_dir, TRUE, MSG_261); + uprintf("Running command: '%s'", cmd); + // For detecting typical dism.exe commandline progress report of type: + // "\r[==== 8.0% ]" + r = RunCommandWithProgress(cmd, sysnative_dir, TRUE, MSG_261, ".*\r\\[[= ]+([0-9\\.]+)%[= ]+\\].*"); if (r != 0 && !IS_ERROR(ErrorStatus)) { SetLastError(r); uprintf("Failed to capture FFU image: %s", WindowsErrorString()); ErrorStatus = RUFUS_ERROR(SCODE_CODE(r)); } - safe_free(img_save->DevicePath); - safe_free(img_save->ImagePath); PostMessage(hMainDialog, UM_FORMAT_COMPLETED, (WPARAM)TRUE, 0); if (!IS_ERROR(ErrorStatus)) uprintf("Saved '%s'", img_save->ImagePath); + safe_free(img_save->DevicePath); + safe_free(img_save->ImagePath); ExitThread(r); } -void VhdSaveImage(void) +BOOL SaveImage(void) { UINT i; static IMG_SAVE img_save; - char filename[128]; - char path[MAX_PATH]; + char filename[128], letters[27], path[MAX_PATH]; int DriveIndex = ComboBox_GetCurSel(hDeviceList); - enum { image_type_vhd = 1, image_type_vhdx = 2, image_type_ffu = 3 }; - static EXT_DECL(img_ext, filename, __VA_GROUP__("*.vhd", "*.vhdx", "*.ffu"), - __VA_GROUP__(lmprintf(MSG_343), lmprintf(MSG_342), lmprintf(MSG_344))); + enum { image_type_none = 0, image_type_vhd, image_type_vhdx, image_type_ffu, image_type_iso }; + static EXT_DECL(img_ext, filename, __VA_GROUP__("*.vhd", "*.vhdx", "*.ffu", "*.iso"), + __VA_GROUP__(lmprintf(MSG_343), lmprintf(MSG_342), lmprintf(MSG_344), lmprintf(MSG_036))); + int i_to_type[5] = { image_type_none, image_type_vhd, image_type_vhdx, image_type_ffu, image_type_iso }; ULARGE_INTEGER free_space; memset(&img_save, 0, sizeof(IMG_SAVE)); - if ((DriveIndex < 0) || (format_thread != NULL)) - return; + // Should have been validated prior to calling SaveImage() + if_assert_fails((DriveIndex >= 0) && (format_thread == NULL)) + return FALSE; static_sprintf(filename, "%s", rufus_drive[DriveIndex].label); img_save.DeviceNum = (DWORD)ComboBox_GetItemData(hDeviceList, DriveIndex); img_save.DevicePath = GetPhysicalName(img_save.DeviceNum); + img_ext.count = 2; // FFU support requires GPT - img_ext.count = (!has_ffu_support || SelectedDrive.PartitionStyle != PARTITION_STYLE_GPT) ? 2 : 3; - for (i = 1; i <= (UINT)img_ext.count && (safe_strcmp(save_image_type , &_img_ext_x[i - 1][2]) != 0); i++); + if (has_ffu_support && SelectedDrive.PartitionStyle == PARTITION_STYLE_GPT) { + img_ext.count += 1; + } else { + // Move the ISO extension one place down + img_ext.extension[image_type_ffu - 1] = img_ext.extension[image_type_iso - 1]; + img_ext.description[image_type_ffu - 1] = img_ext.description[image_type_iso - 1]; + i_to_type[image_type_ffu] = image_type_iso; + i_to_type[image_type_iso] = image_type_none; + } + // ISO support requires a mounted file system + if (GetDriveLetters(SelectedDrive.DeviceNumber, letters) && letters[0] != '\0') + img_ext.count += 1; + for (i = 1; i <= (UINT)img_ext.count && (safe_strcmp(save_image_type, &img_ext.extension[i - 1][2]) != '\0'); i++); if (i > (UINT)img_ext.count) i = image_type_vhdx; img_save.ImagePath = FileDialog(TRUE, NULL, &img_ext, &i); - if (img_save.ImagePath == NULL) + if (img_save.ImagePath == NULL) { + ErrorStatus = RUFUS_ERROR(ERROR_CANCELLED); goto out; + } // Start from the end of our extension array, since '.vhd' would match for '.vhdx' otherwise - for (i = (UINT)img_ext.count; (i > 0) && (strstr(img_save.ImagePath, &_img_ext_x[i - 1][1]) == NULL); i--); + for (i = (UINT)img_ext.count; (i > 0) && (strstr(img_save.ImagePath, &img_ext.extension[i - 1][1]) == NULL); i--); if (i == 0) { - uprintf("Warning: Can not determine image type from extension - Saving to uncompressed VHD."); + uprintf("WARNING: Can not determine image type from extension - Saving to uncompressed VHD."); i = image_type_vhd; } else { - save_image_type = (char*)&_img_ext_x[i - 1][2]; + save_image_type = (char*)&img_ext.extension[i - 1][2]; WriteSettingStr(SETTING_PREFERRED_SAVE_IMAGE_TYPE, save_image_type); } - switch (i) { + assert(i < ARRAYSIZE(i_to_type)); + switch (i_to_type[i]) { case image_type_vhd: img_save.Type = VIRTUAL_STORAGE_TYPE_DEVICE_VHD; break; case image_type_ffu: img_save.Type = VIRTUAL_STORAGE_TYPE_DEVICE_FFU; break; + case image_type_iso: + // ISO requires oscdimg.exe. If not already present, attempt to download it. + static_sprintf(path, "%s\\%s\\oscdimg_%s.exe", app_data_dir, FILES_DIR, APPLICATION_ARCH); + if (!PathFileExistsU(path)) { + if (Notification(MB_YESNO | MB_ICONWARNING, lmprintf(MSG_115), lmprintf(MSG_337, "oscdimg.exe")) != IDYES) { + ErrorStatus = RUFUS_ERROR(ERROR_CANCELLED); + goto out; + } + IGNORE_RETVAL(_chdirU(app_data_dir)); + IGNORE_RETVAL(_mkdir(FILES_DIR)); + if (DownloadToFileOrBufferEx(OSCDIMG_URL, path, SYMBOL_SERVER_USER_AGENT, NULL, hMainDialog, FALSE) < 64 * KB) { + ErrorStatus = GetLastError(); + goto out; + } + } + img_save.Type = VIRTUAL_STORAGE_TYPE_DEVICE_ISO; + break; default: img_save.Type = VIRTUAL_STORAGE_TYPE_DEVICE_VHDX; break; @@ -637,7 +682,6 @@ void VhdSaveImage(void) && ((LONGLONG)free_space.QuadPart < (SelectedDrive.DiskSize + 512))) { uprintf("The VHD size is too large for the target drive"); ErrorStatus = RUFUS_ERROR(ERROR_FILE_TOO_LARGE); - PostMessage(hMainDialog, UM_FORMAT_COMPLETED, (WPARAM)FALSE, 0); goto out; } } @@ -646,15 +690,12 @@ void VhdSaveImage(void) ErrorStatus = 0; InitProgress(TRUE); format_thread = CreateThread(NULL, 0, img_save.Type == VIRTUAL_STORAGE_TYPE_DEVICE_FFU ? - FfuSaveImageThread : VhdSaveImageThread, &img_save, 0, NULL); + FfuSaveImageThread : (img_save.Type == VIRTUAL_STORAGE_TYPE_DEVICE_ISO ? IsoSaveImageThread : VhdSaveImageThread), + &img_save, 0, NULL); if (format_thread != NULL) { - uprintf("\r\nSave to VHD operation started"); + uprintf("\r\nSave to image operation started"); PrintInfo(0, -1); SendMessage(hMainDialog, UM_TIMER_START, 0, 0); - } else { - uprintf("Unable to start VHD save thread"); - ErrorStatus = RUFUS_ERROR(APPERR(ERROR_CANT_START_THREAD)); - PostMessage(hMainDialog, UM_FORMAT_COMPLETED, (WPARAM)FALSE, 0); } } out: @@ -662,4 +703,5 @@ out: safe_free(img_save.DevicePath); safe_free(img_save.ImagePath); } + return (format_thread != NULL); } diff --git a/src/vhd.h b/src/vhd.h index a0ce4182..660a8b1a 100644 --- a/src/vhd.h +++ b/src/vhd.h @@ -111,5 +111,6 @@ extern int8_t IsBootableImage(const char* path); extern char* VhdMountImageAndGetSize(const char* path, uint64_t* disksize); #define VhdMountImage(path) VhdMountImageAndGetSize(path, NULL) extern void VhdUnmountImage(void); -extern void VhdSaveImage(void); -extern void IsoSaveImage(void); +extern BOOL SaveImage(void); +extern void OpticalDiscSaveImage(void); +extern DWORD WINAPI IsoSaveImageThread(void* param); diff --git a/src/wimlib/file_io.c b/src/wimlib/file_io.c index fa8872eb..3d51d028 100644 --- a/src/wimlib/file_io.c +++ b/src/wimlib/file_io.c @@ -346,7 +346,7 @@ off_t filedes_seek(struct filedes *fd, off_t offset) return -1; } if (fd->offset != offset) { - if (lseek(fd->fd, offset, SEEK_SET) == -1) + if (_lseeki64(fd->fd, offset, SEEK_SET) == -1) return -1; fd->offset = offset; } @@ -360,5 +360,5 @@ bool filedes_is_seekable(struct filedes *fd) if (fd->is_udf || fd->is_iso) return false; #endif - return !fd->is_pipe && lseek(fd->fd, 0, SEEK_CUR) != -1; + return !fd->is_pipe && _lseeki64(fd->fd, 0, SEEK_CUR) != -1; } diff --git a/src/wimlib/header.c b/src/wimlib/header.c index 10826836..dd671c46 100644 --- a/src/wimlib/header.c +++ b/src/wimlib/header.c @@ -90,7 +90,7 @@ read_wim_header(WIMStruct *wim, struct wim_header *hdr) * actually reading from a pipe. */ if (!in_fd->is_pipe) { ret = WIMLIB_ERR_READ; - if (-1 == lseek(in_fd->fd, -WIM_HEADER_DISK_SIZE, SEEK_END)) + if (-1 == _lseeki64(in_fd->fd, -WIM_HEADER_DISK_SIZE, SEEK_END)) goto read_error; ret = full_read(in_fd, &disk_hdr, sizeof(disk_hdr)); if (ret) diff --git a/src/wimlib/wimlib/file_io.h b/src/wimlib/wimlib/file_io.h index f7deef8c..22d3d8ce 100644 --- a/src/wimlib/wimlib/file_io.h +++ b/src/wimlib/wimlib/file_io.h @@ -81,7 +81,15 @@ static inline void filedes_invalidate(struct filedes *fd) static inline bool filedes_valid(const struct filedes *fd) { +#ifdef _MSC_VER + // The current wimlib code makes repeated attempts to close stdin (0) when a + // WIM cannot be opened, which doesn't sit too well with MSFT's _close() as + // it invokes the exception handler and can make the application crash... + // So we declare stdin as invalid for use with Visual Studio compiled apps. + return (fd->fd != -1 && fd->fd != 0); +#else return fd->fd != -1; +#endif } #endif /* _WIMLIB_FILE_IO_H */ diff --git a/src/wue.c b/src/wue.c index 7ab0fb5f..71af59bc 100644 --- a/src/wue.c +++ b/src/wue.c @@ -1,7 +1,7 @@ /* * Rufus: The Reliable USB Formatting Utility * Windows User Experience - * Copyright © 2022-2025 Pete Batard + * Copyright © 2022-2026 Pete Batard * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -46,14 +46,58 @@ const char* bypass_name[] = { "BypassTPMCheck", "BypassSecureBootCheck", "Bypass int unattend_xml_flags = 0, wintogo_index = -1, wininst_index = 0; int unattend_xml_mask = UNATTEND_DEFAULT_SELECTION_MASK; +int unattend_edition_index = 1; char *unattend_xml_path = NULL, unattend_username[MAX_USERNAME_LENGTH]; -BOOL is_bootloader_revoked = FALSE; +uint32_t removable_section[2] = { 0, 0 }; -extern BOOL validate_md5sum; +extern BOOL validate_md5sum, bcdboot_supports_ex; extern uint64_t md5sum_totalbytes; extern StrArray modified_files; extern const char* efi_archname[ARCH_MAX]; +// Get the UI language provided by the ISO's boot.wim +char* GetUILanguage(void) +{ + static char ui_language[8]; + int r; + char wim_path[4 * MAX_PATH] = ""; + wchar_t* xml = NULL; + ezxml_t pxml = NULL; + size_t xml_len; + WIMStruct* wim = NULL; + + assert(safe_strlen(image_path) + 32 < ARRAYSIZE(wim_path)); + static_strcpy(ui_language, "en-US"); + static_strcpy(wim_path, image_path); + static_strcat(wim_path, "|sources/boot.wim"); + + r = wimlib_open_wimU(wim_path, 0, &wim); + if (r != 0) { + uprintf("Could not open WIM: Error %d", r); + goto out; + } + + r = wimlib_get_xml_data(wim, (void**)&xml, &xml_len); + if (r != 0) { + uprintf("Could not read WIM XML index: Error %d", r); + goto out; + } + + pxml = ezxml_parse_str((char*)xml, xml_len); + if (pxml == NULL) + goto out; + + char* lang = ezxml_get_val(pxml, "IMAGE", 1, "WINDOWS", 0, "LANGUAGES", 0, "LANGUAGE", -1); + if (lang != NULL) + static_strcpy(ui_language, lang); + +out: + ezxml_free(pxml); + free(xml); + wimlib_free(wim); + return ui_language; +} + /// /// Create an installation answer file containing the sections specified by the flags. /// @@ -64,13 +108,18 @@ extern const char* efi_archname[ARCH_MAX]; char* CreateUnattendXml(int arch, int flags) { const static char* xml_arch_names[5] = { "x86", "amd64", "arm", "arm64" }; - const static char* unallowed_account_names[] = { "Administrator", "Guest", "KRBTGT", "Local" }; - static char path[MAX_PATH]; + const static char* unallowed_account_names[] = { + // From https://learn.microsoft.com/en-us/archive/technet-wiki/13813.localized-names-for-administrator-account-in-windows + "Administrator", "Järjestelmänvalvoja", "Administrateur", "Rendszergazda", "Administrador", "Администратор", "Administratör", + "Guest", "DefaultAccount", "WDAGUtilityAccount", "HelpAssistant", "KRBTGT", "Local", "NONE", "SYSTEM" + }; + static char path[MAX_PATH], tmp[MAX_PATH]; char* tzstr; FILE* fd; TIME_ZONE_INFORMATION tz_info; int i, order; unattend_xml_flags = flags; + StrArray commands = { 0 }; if (arch < ARCH_X86_32 || arch > ARCH_ARM_64 || flags == 0) { uprintf("Note: No Windows User Experience options selected"); return NULL; @@ -87,24 +136,111 @@ char* CreateUnattendXml(int arch, int flags) fprintf(fd, "\n"); fprintf(fd, "\n"); - // This part produces the unbecoming display of a command prompt window during initial setup as well - // as alters the layout and options of the initial Windows installer screens, which may scare users. - // So, in format.c, we'll try to insert the registry keys directly and drop this section. However, - // because Microsoft prevents Store apps from editing an offline registry, we do need this fallback. + StrArrayCreate(&commands, 16); if (flags & UNATTEND_WINPE_SETUP_MASK) { - order = 1; fprintf(fd, " \n"); fprintf(fd, " \n", xml_arch_names[arch]); // WinPE will complain if we don't provide a product key. *Any* product key. This is soooo idiotic... fprintf(fd, " \n"); + fprintf(fd, " true\n"); fprintf(fd, " \n"); fprintf(fd, " \n"); fprintf(fd, " \n"); fprintf(fd, " \n"); + if (flags & UNATTEND_SILENT_INSTALL) { + uprintf("• Silent Install"); + // Automatically partition the disk and set the installation target + fprintf(fd, " \n"); + fprintf(fd, " OnError\n"); + if (flags & UNATTEND_DISABLE_BITLOCKER) + fprintf(fd, " true\n"); + // The following ensures that we display the disk selection screen if only the boot media is + // available (i.e. if the system does not see any target for installation) or (in most cases) + // if the user happens to have more than one disk connected besides the instal USB. In that + // case the label assignment below fails and the UI is displayed allowing the user to provide + // drivers or pick their target disk explicitly. + // This also prevents the install media from being scratched. + // With a special mention to Claude AI, that explicitly said this could not be accomplished... + // Note that this may result in the disk partition screen being produced on systems that have + // card readers, but we'd rather inconvenience a few people, to prevent potential data loss, + // than the opposite. Also note that you do *NOT* want to try to use drive letter mapping for + // the detection here, as if your drive isn't of type FIXED, the file copy steps bails out at + // 75%. See https://github.com/pbatard/rufus/issues/2960 for more details. + fprintf(fd, " \n"); + fprintf(fd, " 1 \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " 1\n"); + fprintf(fd, " 2\n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " 0 \n"); + fprintf(fd, " true \n"); + fprintf(fd, " \n"); + // NB: Don't bother creating a recovery partition. Windows setup will do it for us. + fprintf(fd, " \n"); + fprintf(fd, " 1\n"); + fprintf(fd, " EFI\n"); + fprintf(fd, " 260\n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " 2\n"); + fprintf(fd, " MSR\n"); + fprintf(fd, " 16\n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " 3\n"); + fprintf(fd, " Primary\n"); + fprintf(fd, " true\n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " 1\n"); + fprintf(fd, " 1\n"); + fprintf(fd, " \n"); + fprintf(fd, " FAT32\n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " 2\n"); + fprintf(fd, " 3\n"); + fprintf(fd, " \n"); + fprintf(fd, " C\n"); + fprintf(fd, " NTFS\n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " OnError\n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " /IMAGE/INDEX\n"); + fprintf(fd, " %d\n", unattend_edition_index); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " 0\n"); + fprintf(fd, " 3\n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " \n"); + } if (flags & UNATTEND_SECUREBOOT_TPM_MINRAM) { + // This part produces the unbecoming display of a command prompt window during initial setup as well + // as alters the layout and options of the initial Windows installer screens, which may scare users. + // So, in format.c, we'll try to insert the registry keys directly and drop this section. However, + // because Microsoft prevents Store apps from editing an offline registry, we do need this fallback. + // NB: We could probably avoid this by running powershell with -WindowStyle "Hidden" but hey... uprintf("• Bypass SB/TPM/RAM"); + order = 1; + removable_section[0] = (uint32_t)ftell(fd); fprintf(fd, " \n"); for (i = 0; i < ARRAYSIZE(bypass_name); i++) { fprintf(fd, " \n"); @@ -113,46 +249,87 @@ char* CreateUnattendXml(int arch, int flags) fprintf(fd, " \n"); } fprintf(fd, " \n"); + removable_section[1] = (uint32_t)ftell(fd); } fprintf(fd, " \n"); + if (flags & UNATTEND_SILENT_INSTALL) { + fprintf(fd, " \n", xml_arch_names[arch]); + // Set the language from the tag of the boot.wim index + fprintf(fd, " %s\n", GetUILanguage()); + fprintf(fd, " \n"); + } fprintf(fd, " \n"); } if (flags & UNATTEND_SPECIALIZE_DEPLOYMENT_MASK) { - order = 1; fprintf(fd, " \n"); fprintf(fd, " \n", xml_arch_names[arch]); - fprintf(fd, " \n"); // This part was picked from https://github.com/AveYo/MediaCreationTool.bat/blob/main/bypass11/AutoUnattend.xml // NB: This is INCOMPATIBLE with S-Mode below if (flags & UNATTEND_NO_ONLINE_ACCOUNT) { + StrArrayAdd(&commands, "reg add \"HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\OOBE\" /v BypassNRO /t REG_DWORD /d 1 /f", TRUE); uprintf("• Bypass online account requirement"); - fprintf(fd, " \n"); - fprintf(fd, " %d\n", order++); - fprintf(fd, " reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\OOBE /v BypassNRO /t REG_DWORD /d 1 /f\n"); - fprintf(fd, " \n"); } - fprintf(fd, " \n"); + if (flags & UNATTEND_QOL_ENHANCEMENTS) { + uprintf("• QoL: Disable OneDrive and Outlook by default"); + // Remove OneDrive + StrArrayAdd(&commands, "reg add \"HKLM\\Software\\Policies\\Microsoft\\Windows\\OneDrive\" /v DisableFileSyncNGSC /t REG_DWORD /d 1 /f", TRUE); + StrArrayAdd(&commands, "PowerShell -NonInteractive -WindowStyle Hidden -Command " + "\"Remove-Item -Path $env:SystemRoot\\System32\\OneDriveSetup.exe -Force -Confirm:$false; " + "Remove-Item -Path $env:SystemRoot\\SysWOW64\\OneDriveSetup.exe -Force -Confirm:$false;\"", TRUE); + // Remove Outlook. How the frig is forcing Outlook on users legal when MS got pinned for bundling IE with Windows? + StrArrayAdd(&commands, "PowerShell -NonInteractive -WindowStyle Hidden -Command " + "\"Get-AppxProvisionedPackage -Online | Where-Object {$_.PackageName -like '*Outlook*'} |" + " Remove-AppxProvisionedPackage -Online\"", TRUE); + StrArrayAdd(&commands, "PowerShell -NonInteractive -WindowStyle Hidden -Command " + "\"Get-AppxPackage -AllUsers *Outlook* | Remove-AppxPackage -AllUsers\"", TRUE); + // Same for Teams. Also: "HEY, MICROSOFT, SCREW YOU!!!!" + StrArrayAdd(&commands, "PowerShell -NonInteractive -WindowStyle Hidden -Command " + "\"Get-AppxProvisionedPackage -Online | Where-Object {$_.PackageName -like '*Teams*'} |" + " Remove-AppxProvisionedPackage -Online\"", TRUE); + StrArrayAdd(&commands, "PowerShell -NonInteractive -WindowStyle Hidden -Command " + "\"Get-AppxPackage -AllUsers *Teams* | Remove-AppxPackage -AllUsers\"", TRUE); + } + // Now that we have all the commands to run, create the RunSynchronous section. + for (order = 1; order <= (int)commands.Index; order++) { + if (order == 1) + fprintf(fd, " \n"); + fprintf(fd, " \n"); + fprintf(fd, " %d\n", order); + fprintf(fd, " %s\n", commands.String[order - 1]); + fprintf(fd, " \n"); + if (order == commands.Index) + fprintf(fd, " \n"); + } fprintf(fd, " \n"); fprintf(fd, " \n"); + StrArrayClear(&commands); } if (flags & UNATTEND_OOBE_MASK) { - order = 1; fprintf(fd, " \n"); if (flags & UNATTEND_OOBE_SHELL_SETUP_MASK) { fprintf(fd, " \n", xml_arch_names[arch]); - // https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/microsoft-windows-shell-setup-oobe-protectyourpc - // It is really super insidous of Microsoft to call this option "ProtectYourPC", when it's really only about - // data collection. But of course, if it was called "AllowDataCollection", everyone would turn it off... - if (flags & UNATTEND_NO_DATA_COLLECTION) { + // We should always have UNATTEND_NO_DATA_COLLECTION if UNATTEND_SILENT_INSTALL is set but whatever... + if (flags & (UNATTEND_NO_DATA_COLLECTION | UNATTEND_SILENT_INSTALL)) { uprintf("• Disable data collection"); fprintf(fd, " \n"); + fprintf(fd, " true\n"); + // https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/microsoft-windows-shell-setup-oobe-protectyourpc + // It is really super disingenuous of Microsoft to call this option "ProtectYourPC", when it's really only about + // data collection. But of course, if it was called "AllowDataCollection", everyone would turn it off... fprintf(fd, " 3\n"); + // Without these, the "Let's connect you to a network" can appear in silent installs when Ethernet is disconnected. + if (flags & UNATTEND_SILENT_INSTALL) { + fprintf(fd, " true\n"); + fprintf(fd, " true\n"); + } fprintf(fd, " \n"); } if (flags & UNATTEND_DUPLICATE_LOCALE) { @@ -164,61 +341,123 @@ char* CreateUnattendXml(int arch, int flags) free(tzstr); } } - if (flags & UNATTEND_SET_USER || flags & UNATTEND_USE_MS2023_BOOTLOADERS) { - if (flags & UNATTEND_SET_USER) { - for (i = 0; (i < ARRAYSIZE(unallowed_account_names)) && (stricmp(unattend_username, unallowed_account_names[i]) != 0); i++); - if (i < ARRAYSIZE(unallowed_account_names)) { - uprintf("WARNING: '%s' is not allowed as local account name - Option ignored", unattend_username); - } else if (unattend_username[0] != 0) { - uprintf("• Use '%s' for local account name", unattend_username); - // If we create a local account in unattend.xml, then we can get Windows 11 - // 22H2 to skip MSA even if the network is connected during installation. - fprintf(fd, " \n"); - fprintf(fd, " \n"); - fprintf(fd, " \n"); - fprintf(fd, " %s\n", unattend_username); - fprintf(fd, " %s\n", unattend_username); - fprintf(fd, " Administrators;Power Users\n"); - // Sets an empty password for the account (which, in Microsoft's convoluted ways, - // needs to be initialized to the Base64 encoded UTF-16 string "Password"). - // The use of an empty password has both the advantage of not having to ask users - // to type in a password in Rufus (which they might be weary of) as well as allowing - // automated logon during setup. - fprintf(fd, " \n"); - fprintf(fd, " UABhAHMAcwB3AG8AcgBkAA==\n"); - fprintf(fd, " false</PlainText>\n"); - fprintf(fd, " </Password>\n"); - fprintf(fd, " </LocalAccount>\n"); - fprintf(fd, " </LocalAccounts>\n"); - fprintf(fd, " </UserAccounts>\n"); - // Since we set a blank password, we'll ask the user to change it at next logon. - fprintf(fd, " <FirstLogonCommands>\n"); - fprintf(fd, " <SynchronousCommand wcm:action=\"add\">\n"); - fprintf(fd, " <Order>%d</Order>\n", order++); - fprintf(fd, " <CommandLine>net user &quot;%s&quot; /logonpasswordchg:yes</CommandLine>\n", unattend_username); - fprintf(fd, " </SynchronousCommand>\n"); - // Some people report that using the `net user` command above might reset the password expiration to 90 days... - // To alleviate that, blanket set passwords on the target machine to never expire. - fprintf(fd, " <SynchronousCommand wcm:action=\"add\">\n"); - fprintf(fd, " <Order>%d</Order>\n", order++); - fprintf(fd, " <CommandLine>net accounts /maxpwage:unlimited</CommandLine>\n"); - fprintf(fd, " </SynchronousCommand>\n"); - fprintf(fd, " </FirstLogonCommands>\n"); - } - } - if (flags & UNATTEND_USE_MS2023_BOOTLOADERS) { - uprintf("• Use 'Windows UEFI CA 2023' signed bootloaders"); - // TODO: Validate that we can have multiple <FirstLogonCommands> sections - fprintf(fd, " <FirstLogonCommands>\n"); - fprintf(fd, " <SynchronousCommand wcm:action=\"add\">\n"); - fprintf(fd, " <Order>%d</Order>\n", order++); - // TODO: Validate the actual value on a machine where updates have been applied - fprintf(fd, " <CommandLine>reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Secureboot /v AvailableUpdates /t REG_DWORD /d 0x3c0 /f\n"); - fprintf(fd, " </SynchronousCommand>\n"); - fprintf(fd, " </FirstLogonCommands>\n"); + if (flags & UNATTEND_SET_USER) { + for (i = 0; (i < ARRAYSIZE(unallowed_account_names)) && (stricmp(unattend_username, unallowed_account_names[i]) != 0); i++); + if (i < ARRAYSIZE(unallowed_account_names)) { + uprintf("WARNING: '%s' is not allowed as local account name - Option ignored", unattend_username); + } else if (unattend_username[0] != 0) { + char* org_username = safe_strdup(unattend_username); + filter_chars(unattend_username, USERNAME_INVALID_CHARS, '_'); + uprintf("• Use '%s' for local account name", unattend_username); + if (strcmp(org_username, unattend_username) != 0) + uprintf("WARNING: Local account name contained unallowed characters and has been sanitized"); + free(org_username); + // If we create a local account in unattend.xml, then we can get Windows 11 + // 22H2 to skip MSA even if the network is connected during installation. + fprintf(fd, " <UserAccounts>\n"); + fprintf(fd, " <LocalAccounts>\n"); + fprintf(fd, " <LocalAccount wcm:action=\"add\">\n"); + fprintf(fd, " <Name>%s</Name>\n", unattend_username); + fprintf(fd, " <DisplayName>%s</DisplayName>\n", unattend_username); + fprintf(fd, " <Group>Administrators;Power Users</Group>\n"); + // Sets an empty password for the account (which, in Microsoft's convoluted ways, + // needs to be initialized to the Base64 encoded UTF-16 string "Password"). + // The use of an empty password has both the advantage of not having to ask users + // to type in a password in Rufus (which they might be weary of) as well as allowing + // automated logon during setup. + fprintf(fd, " <Password>\n"); + fprintf(fd, " <Value>UABhAHMAcwB3AG8AcgBkAA==</Value>\n"); + fprintf(fd, " <PlainText>false</PlainText>\n"); + fprintf(fd, " </Password>\n"); + fprintf(fd, " </LocalAccount>\n"); + fprintf(fd, " </LocalAccounts>\n"); + fprintf(fd, " </UserAccounts>\n"); + // Since we set a blank password, we'll ask the user to change it at next logon. + // NB: In case you wanna try, please be aware that Microsoft doesn't let you have multiple + // <FirstLogonCommands> sections in unattend.xml. Don't ask me how I know... :( + static_sprintf(tmp, "net user \"%s\" /logonpasswordchg:yes", unattend_username); + StrArrayAdd(&commands, tmp, TRUE); + // The `net user` command above might reset the password expiration to 90 days... + // To alleviate that, blanket set passwords on the target machine to never expire. + StrArrayAdd(&commands, "net accounts /maxpwage:unlimited", TRUE); } } + // Apply SkuSiPolicy.p7b, if the user requested it and we're not creating a Windows To Go drive. + // See https://support.microsoft.com/kb/5042562. We do it post install, on first logon, because + // we'd have to patch tons of files otherwise. And we *ALWAYS* use the installed system's + // SkuSiPolicy.p7b instead of the host system's, even if the latter might be more recent, on + // account that the bootloaders from the installed system might be trailing behind, and wills + // produce the 0xc0000428 signature validation error on (re)boot if the system hasn't gone + // through a full Windows Update cycle. + if (flags & UNATTEND_APPLY_SKUSIPOLICY) { + uprintf("• Apply SkuSiPolicy.p7b"); + StrArrayAdd(&commands, "cmd /c mountvol S: /S &amp;&amp; " + "copy %WINDIR%\\system32\\SecureBootUpdates\\SkuSiPolicy.p7b S:\\EFI\\Microsoft\\Boot &amp;&amp; " + "mountvol S: /D", TRUE); + } + if (flags & UNATTEND_QOL_ENHANCEMENTS) { + uprintf("• QoL: Disable Fast Startup, Copilot, Recommendations, News and Teams by default"); + // Disable Fast Startup + StrArrayAdd(&commands, "reg add \"HKLM\\System\\CurrentControlSet\\Control\\Session Manager\\Power\" " + "/v HiberbootEnabled /t REG_DWORD /d 0 /f", TRUE); + // Disable Copilot and set search as an icon rather than the default real-estate gobbler + StrArrayAdd(&commands, "reg add \"HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\" " + "/v ShowCopilotButton /t REG_DWORD /d 0 /f", TRUE); + StrArrayAdd(&commands, "reg add \"HKLM\\Software\\Policies\\Microsoft\\Windows\\WindowsCopilot\" " + "/v TurnOffWindowsCopilot /t REG_DWORD /d 1 /f", TRUE); + StrArrayAdd(&commands, "reg add \"HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Search\" " + "/v SearchboxTaskbarMode /t REG_DWORD /d 1 /f", TRUE); + StrArrayAdd(&commands, "reg add \"HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Search\" " + "/v SearchboxTaskbarModeCache /t REG_DWORD /d 1 /f", TRUE); + // Disable Windows Phone and similarly pushed unwanted crap + StrArrayAdd(&commands, "reg add \"HKLM\\Software\\Policies\\Microsoft\\Windows\\CloudContent\" " + "/v DisableWindowsConsumerFeatures /t REG_DWORD /d 1 /f", TRUE); + // Disable ads in menu + StrArrayAdd(&commands, "reg add \"HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\ContentDeliveryManager\" " + "/v SystemPaneSuggestionsEnabled /t REG_DWORD /d 0 /f", TRUE); + StrArrayAdd(&commands, "reg add \"HKCU\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Search\" " + "/v BingSearchEnabled /t REG_DWORD /d 0 /f", TRUE); + // Disable News + StrArrayAdd(&commands, "reg add \"HKLM\\Software\\Policies\\Microsoft\\Dsh\" " + "/v AllowNewsAndInterests /t REG_DWORD /d 0 /f", TRUE); + StrArrayAdd(&commands, "reg add \"HKLM\\Software\\Policies\\Microsoft\\Windows\\Windows Feeds\" " + "/v EnableFeeds /t REG_DWORD /d 0 /f", TRUE); + // Disable Teams + StrArrayAdd(&commands, "reg add \"HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Communications\" " + "/v ConfigureChatAutoInstall /t REG_DWORD /d 0 /f", TRUE); + // Prevent frigging Outlook from being forced into the user's taskbar + StrArrayAdd(&commands, "reg add \"HKLM\\Software\\Policies\\Microsoft\\Windows\\CloudContent\" " + "/v DisableCloudOptimizedContent /t REG_DWORD /d 1 /f", TRUE); + // Skip Edge's first run dialog + StrArrayAdd(&commands, "reg add \"HKLM\\Software\\Policies\\Microsoft\\Edge\" " + "/v HideFirstRunExperience /t REG_DWORD /d 1 /f", TRUE); + uprintf("• QoL: More pins for the Start Menu and enable useful shortcuts"); + // More pins by default on the Start Menu + // https://learn.microsoft.com/en-us/windows/apps/develop/settings/settings-windows-11 + StrArrayAdd(&commands, "reg add \"HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\" " + "/v Start_Layout /t REG_DWORD /d 1 /f", TRUE); + // Add Documents, Downloads, Network, Personal Folder, File Explorer and Settings as start menu shortcuts + // I wish there was a more transparent way of doing it, but Microsoft made it obscure. Oh, and for some + // reason, feeding the full hex string through 'reg add' doesn't create the key when ran through unattend + // (but doesn't produce an error and works post logon). PowerShell it is then... + StrArrayAdd(&commands, "PowerShell -NonInteractive -WindowStyle Hidden -Command " + "\"Set-ItemProperty -Path 'Registry::HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Start' " + "-Name 'VisiblePlaces' -Value $([convert]::FromBase64String('ztU0LVr6Q0WC8iLm6vd3PC+zZ+PeiVVDv85h83sYqTe8JIo" + "UDNaJQqCAbtm7okiCRIF1/g0IrkKL2jTtl7ZjlEqwvXRK+WhPi9ZDmAcdqLyGCHNSqlFDQp97J3ZYRlnU')) -Type 'Binary'\"", TRUE); + } + // Now that we have all the commands to run, create the FirstLogonCommands section. + for (order = 1; order <= (int)commands.Index; order++) { + if (order == 1) + fprintf(fd, " <FirstLogonCommands>\n"); + fprintf(fd, " <SynchronousCommand wcm:action=\"add\">\n"); + fprintf(fd, " <Order>%d</Order>\n", order); + fprintf(fd, " <CommandLine>%s</CommandLine>\n", commands.String[order - 1]); + fprintf(fd, " </SynchronousCommand>\n"); + if (order == commands.Index) + fprintf(fd, " </FirstLogonCommands>\n"); + } fprintf(fd, " </component>\n"); + StrArrayClear(&commands); } if (flags & UNATTEND_OOBE_INTERNATIONAL_MASK) { uprintf("• Use the same regional options as this user's"); @@ -239,7 +478,7 @@ char* CreateUnattendXml(int arch, int flags) fprintf(fd, " </component>\n"); } if (flags & UNATTEND_DISABLE_BITLOCKER) { - uprintf("• Disable bitlocker"); + uprintf("• Disable BitLocker"); fprintf(fd, " <component name=\"Microsoft-Windows-SecureStartup-FilterDriver\" processorArchitecture=\"%s\" language=\"neutral\" " "xmlns:wcm=\"http://schemas.microsoft.com/WMIConfig/2002/State\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" " "publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\">\n", xml_arch_names[arch]); @@ -275,6 +514,10 @@ char* CreateUnattendXml(int arch, int flags) fprintf(fd, " </settings>\n"); } + if (flags & UNATTEND_USE_MS2023_BOOTLOADERS) + uprintf("• Use 'Windows CA 2023' signed bootloaders"); + + StrArrayDestroy(&commands); fprintf(fd, "</unattend>\n"); fclose(fd); return path; @@ -475,15 +718,17 @@ static void PopulateWindowsVersionFromXml(const wchar_t* xml, size_t xml_len, in BOOL PopulateWindowsVersion(void) { int r; - char wim_path[MAX_PATH] = ""; + char wim_path[4 * MAX_PATH] = ""; wchar_t* xml = NULL; size_t xml_len; - WIMStruct* wim; + WIMStruct* wim = NULL; memset(&img_report.win_version, 0, sizeof(img_report.win_version)); + assert(safe_strlen(image_path) + 1 < ARRAYSIZE(wim_path)); static_strcpy(wim_path, image_path); if (!img_report.is_windows_img) { + assert(safe_strlen(image_path) + safe_strlen(&img_report.wininst_path[0][3]) + 1 < ARRAYSIZE(wim_path)); static_strcat(wim_path, "|"); static_strcat(wim_path, &img_report.wininst_path[0][3]); } @@ -500,7 +745,7 @@ BOOL PopulateWindowsVersion(void) goto out; } - PopulateWindowsVersionFromXml(xml, xml_len, 1); + PopulateWindowsVersionFromXml(xml, xml_len, 0); out: free(xml); @@ -509,68 +754,36 @@ out: return ((img_report.win_version.major != 0) && (img_report.win_version.build != 0)); } -// Copy this system's SkuSiPolicy.p7b to the target drive so that UEFI bootloaders -// revoked by Windows through WDAC policy do get flagged as revoked. -BOOL CopySKUSiPolicy(const char* drive_name) +int GetEditions(StrArray* version_name, StrArray* version_index) { - BOOL r = FALSE; - char src[MAX_PATH], dst[MAX_PATH]; - struct __stat64 stat64 = { 0 }; - - // Only copy SkuPolicy if we warned about the bootloader being revoked. - if ((target_type != TT_UEFI) || !IS_WINDOWS_1X(img_report) || - (pe256ssp_size == 0) || !is_bootloader_revoked) - return r; - - static_sprintf(src, "%s\\SecureBootUpdates\\SKUSiPolicy.p7b", system_dir); - static_sprintf(dst, "%s\\EFI\\Microsoft\\Boot\\SKUSiPolicy.p7b", drive_name); - if ((_stat64U(dst, &stat64) != 0) && (_stat64U(src, &stat64) == 0)) { - uprintf("Copying: %s (%s) (from %s)", dst, SizeToHumanReadable(stat64.st_size, FALSE, FALSE), src); - r = CopyFileU(src, dst, TRUE); - if (!r) - uprintf(" Error writing file: %s", WindowsErrorString()); - } - - return r; -} - -/// <summary> -/// Checks which versions of Windows are available in an install image -/// to set our extraction index. Asks the user to select one if needed. -/// </summary> -/// <param name="">(none)</param> -/// <returns>-2 on user cancel, -1 on other error, >=0 on success.</returns> -int SetWinToGoIndex(void) -{ - int i, r; + int i, r, n = -1; WIMStruct* wim = NULL; - char* install_names[MAX_WININST]; - wchar_t wim_path[MAX_PATH] = L"", *xml = NULL; + selection_dialog_options_t selection = { 0 }; + const char* edition_suffix; + char *edition_name; + wchar_t wim_path[4 * MAX_PATH] = L"", * xml = NULL; size_t xml_len; - StrArray version_name = { 0 }, version_index = { 0 }; BOOL bNonStandard = FALSE; ezxml_t index = NULL, image = NULL; - // Sanity checks - wintogo_index = -1; - wininst_index = 0; - if (ComboBox_GetCurItemData(hFileSystem) != FS_NTFS) - return -1; - // If we have multiple windows install images, ask the user the one to use if (img_report.wininst_index > 1) { + StrArrayCreate(&selection.choices, 16); for (i = 0; i < img_report.wininst_index; i++) - install_names[i] = &img_report.wininst_path[i][2]; - wininst_index = _log2(SelectionDialog(lmprintf(MSG_130), lmprintf(MSG_131), install_names, img_report.wininst_index)); + StrArrayAdd(&selection.choices, &img_report.wininst_path[i][2], TRUE); + wininst_index = _log2(SelectionDialog(lmprintf(MSG_130), lmprintf(MSG_131), &selection)); + StrArrayDestroy(&selection.choices); if (wininst_index < 0) return -2; if (wininst_index >= MAX_WININST) wininst_index = 0; } + assert(utf8_to_wchar_get_size(image_path) <= ARRAYSIZE(wim_path)); utf8_to_wchar_no_alloc(image_path, wim_path, ARRAYSIZE(wim_path)); if (!img_report.is_windows_img) { wcscat(wim_path, L"|"); + assert(utf8_to_wchar_get_size(image_path) + utf8_to_wchar_get_size(&img_report.wininst_path[wininst_index][2]) <= ARRAYSIZE(wim_path)); utf8_to_wchar_no_alloc(&img_report.wininst_path[wininst_index][2], &wim_path[wcslen(wim_path)], (int)ARRAYSIZE(wim_path) - wcslen(wim_path)); } @@ -586,51 +799,156 @@ int SetWinToGoIndex(void) goto out; } - StrArrayCreate(&version_name, 16); - StrArrayCreate(&version_index, 16); index = ezxml_parse_str((char*)xml, xml_len); if (index == NULL) { uprintf("Could not parse WIM XML"); goto out; } - for (i = 0, image = ezxml_child(index, "IMAGE"); - StrArrayAdd(&version_index, ezxml_attr(image, "INDEX"), TRUE) >= 0; - image = image->next, i++) { + edition_suffix = GetEditionName(WindowsVersion.Edition); + unattend_edition_index = 1; + for (n = 0, image = ezxml_child(index, "IMAGE"); + StrArrayAdd(version_index, ezxml_attr(image, "INDEX"), TRUE) >= 0; + image = image->next, n++) { + // Try to match this host's edition with an index from the image + edition_name = ezxml_child_val(image, "NAME"); + if (edition_name != NULL) { + if (strlen(edition_name) > safe_strlen(edition_suffix) && + stricmp(&edition_name[strlen(edition_name) - safe_strlen(edition_suffix)], edition_suffix) == 0) + unattend_edition_index = atoi(ezxml_attr(image, "INDEX")) - 1; + } // Some people are apparently creating *unofficial* Windows ISOs that don't have DISPLAYNAME elements. // If we are parsing such an ISO, try to fall back to using DESCRIPTION. - if (StrArrayAdd(&version_name, ezxml_child_val(image, "DISPLAYNAME"), TRUE) < 0) { - if (StrArrayAdd(&version_name, ezxml_child_val(image, "DESCRIPTION"), TRUE) < 0) { - uprintf("Warning: Could not find a description for image index %d", i + 1); - StrArrayAdd(&version_name, "Unknown Windows Version", TRUE); + if (StrArrayAdd(version_name, ezxml_child_val(image, "DISPLAYNAME"), TRUE) < 0) { + if (StrArrayAdd(version_name, ezxml_child_val(image, "DESCRIPTION"), TRUE) < 0) { + uprintf("WARNING: Could not find a description for image index %d", n + 1); + StrArrayAdd(version_name, "Unknown Windows Version", TRUE); } bNonStandard = TRUE; } } if (bNonStandard) - uprintf("Warning: Nonstandard Windows image (missing <DISPLAYNAME> entries)"); + uprintf("WARNING: Nonstandard Windows image (missing <DISPLAYNAME> entries)"); +out: + free(xml); + ezxml_free(index); + wimlib_free(wim); + return n; +} + +/// <summary> +/// Checks which versions of Windows are available in an install image +/// to set our extraction index. Asks the user to select one if needed. +/// </summary> +/// <param name="">(none)</param> +/// <returns>-2 on user cancel, -1 on other error, >=0 on success.</returns> +int SetWinToGoIndex(void) +{ + int i, r; + const char* edition_suffix; + char* edition_name; + WIMStruct* wim = NULL; + wchar_t wim_path[4 * MAX_PATH] = L"", *xml = NULL; + size_t xml_len; + StrArray edition_index = { 0 }; + BOOL bNonStandard = FALSE; + ezxml_t index = NULL, image = NULL; + selection_dialog_options_t selection = { 0 }; + + // Sanity checks + wintogo_index = -1; + wininst_index = 0; + if (ComboBox_GetCurItemData(hFileSystem) != FS_NTFS) + return -1; + + // If we have multiple windows install images, ask the user the one to use + if (img_report.wininst_index > 1) { + StrArrayCreate(&selection.choices, 16); + for (i = 0; i < img_report.wininst_index; i++) + StrArrayAdd(&selection.choices, &img_report.wininst_path[i][2], TRUE); + wininst_index = _log2(SelectionDialog(lmprintf(MSG_130), lmprintf(MSG_131), &selection)); + StrArrayDestroy(&selection.choices); + if (wininst_index < 0) + return -2; + if (wininst_index >= MAX_WININST) + wininst_index = 0; + } + + assert(utf8_to_wchar_get_size(image_path) <= ARRAYSIZE(wim_path)); + utf8_to_wchar_no_alloc(image_path, wim_path, ARRAYSIZE(wim_path)); + if (!img_report.is_windows_img) { + wcscat(wim_path, L"|"); + assert(utf8_to_wchar_get_size(image_path) + utf8_to_wchar_get_size(&img_report.wininst_path[wininst_index][2]) <= ARRAYSIZE(wim_path)); + utf8_to_wchar_no_alloc(&img_report.wininst_path[wininst_index][2], + &wim_path[wcslen(wim_path)], (int)ARRAYSIZE(wim_path) - wcslen(wim_path)); + } + + r = wimlib_open_wim(wim_path, 0, &wim); + if (r != 0) { + uprintf("Could not open WIM: %d", r); + goto out; + } + r = wimlib_get_xml_data(wim, (void**)&xml, &xml_len); + if (r != 0) { + uprintf("Could not read WIM XML index: %d", r); + goto out; + } + + StrArrayCreate(&selection.choices, 16); + StrArrayCreate(&edition_index, 16); + index = ezxml_parse_str((char*)xml, xml_len); + if (index == NULL) { + uprintf("Could not parse WIM XML"); + goto out; + } + + edition_suffix = GetEditionName(WindowsVersion.Edition); + unattend_edition_index = 1; + for (i = 0, image = ezxml_child(index, "IMAGE"); + StrArrayAdd(&edition_index, ezxml_attr(image, "INDEX"), TRUE) >= 0; + image = image->next, i++) { + // Try to match this host's edition with an index from the image + edition_name = ezxml_child_val(image, "NAME"); + if (edition_name != NULL) { + if (strlen(edition_name) > safe_strlen(edition_suffix) && + stricmp(&edition_name[strlen(edition_name) - safe_strlen(edition_suffix)], edition_suffix) == 0) + unattend_edition_index = atoi(ezxml_attr(image, "INDEX")) - 1; + } + // Some people are apparently creating *unofficial* Windows ISOs that don't have DISPLAYNAME elements. + // If we are parsing such an ISO, try to fall back to using DESCRIPTION. + if (StrArrayAdd(&selection.choices, ezxml_child_val(image, "DISPLAYNAME"), TRUE) < 0) { + if (StrArrayAdd(&selection.choices, ezxml_child_val(image, "DESCRIPTION"), TRUE) < 0) { + uprintf("WARNING: Could not find a description for image index %d", i + 1); + StrArrayAdd(&selection.choices, "Unknown Windows Version", TRUE); + } + bNonStandard = TRUE; + } + } + if (bNonStandard) + uprintf("WARNING: Nonstandard Windows image (missing <DISPLAYNAME> entries)"); + + selection.mask = 1 << unattend_edition_index; if (i > 1) // NB: _log2 returns -2 if SelectionDialog() returns negative (user cancelled) - i = _log2(SelectionDialog(lmprintf(MSG_291), lmprintf(MSG_292), version_name.String, i)) + 1; + i = _log2(SelectionDialog(lmprintf(MSG_291), lmprintf(MSG_292), &selection)) + 1; if (i < 0) wintogo_index = -2; // Cancelled by the user else if (i == 0) wintogo_index = 1; else - wintogo_index = atoi(version_index.String[i - 1]); + wintogo_index = atoi(edition_index.String[i - 1]); if (i > 0) { // re-populate the version data from the selected XML index - PopulateWindowsVersionFromXml(xml, xml_len, i); + PopulateWindowsVersionFromXml(xml, xml_len, i - 1); // If we couldn't obtain the major and build, we have a problem if (img_report.win_version.major == 0 || img_report.win_version.build == 0) - uprintf("Warning: Could not obtain version information from XML index (Nonstandard Windows image?)"); + uprintf("WARNING: Could not obtain version information from XML index (Nonstandard Windows image?)"); uprintf("Will use '%s' (Build: %d, Index %s) for Windows To Go", - version_name.String[i - 1], img_report.win_version.build, version_index.String[i - 1]); + selection.choices.String[i - 1], img_report.win_version.build, edition_index.String[i - 1]); // Need Windows 10 Creator Update or later for boot on REMOVABLE to work if ((img_report.win_version.build < 15000) && (SelectedDrive.MediaType != FixedMedia)) { - if (MessageBoxExU(hMainDialog, lmprintf(MSG_098), lmprintf(MSG_190), - MB_YESNO | MB_ICONWARNING | MB_IS_RTL, selected_langid) != IDYES) + if (Notification(MB_YESNO | MB_ICONWARNING, lmprintf(MSG_190), lmprintf(MSG_098)) != IDYES) wintogo_index = -2; } // Display a notice about WppRecorder.sys for 1809 ISOs @@ -638,13 +956,13 @@ int SetWinToGoIndex(void) notification_info more_info; more_info.id = MORE_INFO_URL; more_info.url = WPPRECORDER_MORE_INFO_URL; - Notification(MSG_INFO, NULL, &more_info, lmprintf(MSG_128, "Windows To Go"), lmprintf(MSG_133)); + NotificationEx(MB_ICONINFORMATION | MB_CLOSE, NULL, &more_info, lmprintf(MSG_128, "Windows To Go"), lmprintf(MSG_133)); } } out: - StrArrayDestroy(&version_name); - StrArrayDestroy(&version_index); + StrArrayDestroy(&selection.choices); + StrArrayDestroy(&edition_index); free(xml); ezxml_free(index); wimlib_free(wim); @@ -663,7 +981,8 @@ out: /// <returns>TRUE on success, FALSE on error.</returns> BOOL SetupWinToGo(DWORD DriveIndex, const char* drive_name, BOOL use_esp) { - char *ms_efi = NULL, wim_path[MAX_PATH], cmd[MAX_PATH]; + char *ms_efi = NULL, wim_path[4 * MAX_PATH], cmd[MAX_PATH], path[MAX_PATH]; + BOOL use_bootex = FALSE; ULONG cluster_size; uprintf("Windows To Go mode selected"); @@ -673,8 +992,10 @@ BOOL SetupWinToGo(DWORD DriveIndex, const char* drive_name, BOOL use_esp) return FALSE; } + assert(safe_strlen(image_path) < ARRAYSIZE(wim_path)); static_strcpy(wim_path, image_path); if (!img_report.is_windows_img) { + assert(safe_strlen(image_path) + safe_strlen(&img_report.wininst_path[wininst_index][3]) + 1 < ARRAYSIZE(wim_path)); static_strcat(wim_path, "|"); static_strcat(wim_path, &img_report.wininst_path[wininst_index][3]); } @@ -719,11 +1040,24 @@ BOOL SetupWinToGo(DWORD DriveIndex, const char* drive_name, BOOL use_esp) // We invoke the 'bcdboot' command from the host, as the one from the drive produces problems (#558) // and of course, we couldn't invoke an ARM64 'bcdboot' binary on an x86 host anyway... - // Also, since Rufus should (usually) be running as a 32 bit app, on 64 bit systems, we need to use + // Also, since Rufus may be running as a 32 bit app, on 64 bit systems, we need to use // 'C:\Windows\Sysnative' and not 'C:\Windows\System32' to invoke bcdboot, as 'C:\Windows\System32' // will get converted to 'C:\Windows\SysWOW64' behind the scenes, and there is no bcdboot.exe there. + // Finally, due to the whole _EX mess, we have to detect if the system bcdboot supports the /offline + // option, and if it does, whether the target has `Windows\Boot\EFI_EX\` so that we don't let bcdboot + // attempt to use the _EX files and fail. See https://github.com/pbatard/rufus/issues/2940. uprintf("Enabling boot using command:"); - static_sprintf(cmd, "%s\\bcdboot.exe %s\\Windows /v /f %s /s %s", sysnative_dir, drive_name, + // Create the EFI\Microsoft\Boot\ directory on the ESP, since bcdboot is apparently unable to do that! + static_sprintf(path, "%s\\EFI\\Microsoft\\Boot", (use_esp) ? ms_efi : drive_name); + _mkdirExU(path); + // The default of recent bcdboot is to try to use the EX files (even if they don't exist) unless + // /offline is specified *without* /bootex, which of course results in an error if, say, we try + // to create a Windows 10 Windows To Go drive on an up to date Windows platform. + // So we need to specify /offline and /bootex very carefully. + static_sprintf(path, "%s\\Windows\\Boot\\EFI_EX", drive_name); + use_bootex = (bcdboot_supports_ex && (unattend_xml_flags & UNATTEND_USE_MS2023_BOOTLOADERS) && PathFileExistsU(path)); + static_sprintf(cmd, "%s\\bcdboot.exe %s\\Windows /v %s%s/f %s /s %s", sysnative_dir, drive_name, + bcdboot_supports_ex ? "/offline " : "", use_bootex ? "/bootex " : "", HAS_BOOTMGR_BIOS(img_report) ? (HAS_BOOTMGR_EFI(img_report) ? "ALL" : "BIOS") : "UEFI", (use_esp) ? ms_efi : drive_name); // I don't believe we can ever have a stray '%' in cmd, but just in case... @@ -735,8 +1069,6 @@ BOOL SetupWinToGo(DWORD DriveIndex, const char* drive_name, BOOL use_esp) ErrorStatus = RUFUS_ERROR(APPERR(ERROR_ISO_EXTRACT)); } - CopySKUSiPolicy((use_esp) ? ms_efi : drive_name); - UpdateProgressWithInfo(OP_FILE_COPY, MSG_267, 99, 100); // Setting internal drives offline for Windows To Go is crucial if, for instance, you are using ReFS @@ -776,26 +1108,30 @@ BOOL SetupWinToGo(DWORD DriveIndex, const char* drive_name, BOOL use_esp) /// <param name="flags">A bitmap of unattend flags to apply.</param> /// <returns>TRUE on success, FALSE on error.</returns> BOOL ApplyWindowsCustomization(char drive_letter, int flags) -// NB: Work with a copy of unattend_xml_flags as a paremeter since we will modify it. +// NB: Work with a copy of unattend_xml_flags as a parameter since we will modify it. { BOOL r = FALSE, is_hive_mounted = FALSE, update_boot_wim = FALSE; - int i, wim_index = 2, wuc_index = 0; + int i, wim_index = 2, wuc_index = 0, num_replaced = 0; const char* offline_hive_name = "RUFUS_OFFLINE_HIVE"; + const char* reg_path = "Windows\\System32\\config\\SYSTEM"; + const char* efi_ex_path = "Windows\\Boot\\EFI_EX"; + const char* fonts_ex_path = "Windows\\Boot\\Fonts_EX"; char boot_wim_path[] = "?:\\sources\\boot.wim", key_path[64]; - char tmp_dir[2][MAX_PATH] = { "", "" }; + char tmp_path[2][MAX_PATH] = { "", "" }; char appraiserres_dll_src[] = "?:\\sources\\appraiserres.dll"; char appraiserres_dll_dst[] = "?:\\sources\\appraiserres.bak"; char setup_exe[] = "?:\\setup.exe"; char setup_dll[] = "?:\\setup.dll"; char md5sum_path[] = "?:\\md5sum.txt"; - char path[MAX_PATH]; + char path[MAX_PATH], *rep, *tmp_dir_end; uint8_t* buf = NULL; uint16_t setup_arch; + uint32_t len; HKEY hKey = NULL, hSubKey = NULL; LSTATUS status; DWORD dwDisp, dwVal = 1, dwSize; FILE* fd_md5sum; - WIMStruct* wim; + WIMStruct* wim = NULL; struct wimlib_update_command wuc[2] = { 0 }; assert(unattend_xml_path != NULL); @@ -843,7 +1179,7 @@ BOOL ApplyWindowsCustomization(char drive_letter, int flags) dwSize = read_file(setup_exe, &buf); if (dwSize != 0) { setup_arch = GetPeArch(buf); - free(buf); + safe_free(buf); if (setup_arch != IMAGE_FILE_MACHINE_AMD64 && setup_arch != IMAGE_FILE_MACHINE_ARM64) { uprintf("WARNING: Unsupported arch 0x%x -- in-place upgrade wrapper will not be added", setup_arch); } else if (!MoveFileExU(setup_exe, setup_dll, 0)) { @@ -868,6 +1204,7 @@ BOOL ApplyWindowsCustomization(char drive_letter, int flags) } else { uprintf("Could not create '%s' bypass wrapper", setup_exe); } + buf = NULL; } } } @@ -876,7 +1213,6 @@ BOOL ApplyWindowsCustomization(char drive_letter, int flags) UpdateProgressWithInfoForce(OP_PATCH, MSG_325, 0, PATCH_PROGRESS_TOTAL); // We only need to alter boot.wim if we have windowsPE data to deal with. // If not, we can just copy our unattend.xml in \sources\$OEM$\$$\Panther\. - // We also need to do so if we use the 'Windows UEFI CA 2023' signed bootloaders. if (flags & UNATTEND_WINPE_SETUP_MASK || flags & UNATTEND_USE_MS2023_BOOTLOADERS) { if (validate_md5sum) md5sum_totalbytes -= _filesizeU(boot_wim_path); @@ -899,18 +1235,16 @@ BOOL ApplyWindowsCustomization(char drive_letter, int flags) } if (flags & UNATTEND_SECUREBOOT_TPM_MINRAM) { - char tmp_path[MAX_PATH]; - const char* reg_path = "Windows\\System32\\config\\SYSTEM"; - if (GetTempDirNameU(temp_dir, APPLICATION_NAME, 0, tmp_dir[0]) == 0) { + if (GetTempDirNameU(temp_dir, APPLICATION_NAME, 0, tmp_path[0]) == 0) { uprintf("WARNING: Could not create temp dir for registry changes"); goto copy_unattend; } - static_sprintf(tmp_path, "%s\\SYSTEM", tmp_dir[0]); + static_sprintf(tmp_path[1], "%s\\SYSTEM", tmp_path[0]); // Try to create the registry keys directly, and fallback to using unattend // if that fails (which the Windows Store version is expected to do). - if (wimlib_extract_pathsU(wim, wim_index, tmp_dir[0], &reg_path, 1, + if (wimlib_extract_pathsU(wim, wim_index, tmp_path[0], &reg_path, 1, WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE) != 0 || - !MountRegistryHive(HKEY_LOCAL_MACHINE, offline_hive_name, tmp_path)) { + !MountRegistryHive(HKEY_LOCAL_MACHINE, offline_hive_name, tmp_path[1])) { uprintf("Falling back to creating the registry keys through unattend.xml"); goto copy_unattend; } @@ -944,23 +1278,32 @@ BOOL ApplyWindowsCustomization(char drive_letter, int flags) uprintf("Created 'HKLM\\SYSTEM\\Setup\\LabConfig\\%s' registry key", bypass_name[i]); } wuc[wuc_index].op = WIMLIB_UPDATE_OP_ADD; - wuc[wuc_index].add.fs_source_path = utf8_to_wchar(tmp_path); + wuc[wuc_index].add.fs_source_path = utf8_to_wchar(tmp_path[1]); + tmp_path[1][0] = '\0'; wuc[wuc_index].add.wim_target_path = L"Windows\\System32\\config\\SYSTEM"; wuc_index++; - // We were successfull in creating the keys so disable the windowsPE section from unattend.xml - // We do this by replacing '<settings pass="windowsPE">' with '<settings pass="disabled">' - // (provided that the registry key creation was the only item for this pass) + // We were successfull in creating the keys so remove this part from unattend.xml if ((flags & UNATTEND_WINPE_SETUP_MASK) == UNATTEND_SECUREBOOT_TPM_MINRAM) { + // If this is all we used the WindowsPE pass for, then we just replace + // '<settings pass="WindowsPE">' with '<settings pass="disabled">' if (replace_in_token_data(unattend_xml_path, "<settings", "windowsPE", "disabled", FALSE) == NULL) - uprintf("Warning: Could not disable 'windowsPE' pass from unattend.xml"); - // Remove the flags, since we accomplished the registry creation outside of unattend. - flags &= ~UNATTEND_SECUREBOOT_TPM_MINRAM; + uprintf("WARNING: Could not disable 'WindowsPE' pass from unattend.xml"); } else { - // TODO: If we add other tasks besides LabConfig reg keys, we'll need to figure out how - // to comment out the <RunSynchronous> entries from windowsPE (and only windowsPE). - assert(FALSE); + // Otherwise, remove the relevant section from our temporary unattend.xml + len = read_file(unattend_xml_path, &buf); + if (len != 0 && removable_section[0] != 0 && removable_section[0] < len && removable_section[1] < len) { + memmove(&buf[removable_section[0]], &buf[removable_section[1]], len - removable_section[1]); + len -= removable_section[1] - removable_section[0]; + if (write_file(unattend_xml_path, buf, len) != len) + uprintf("Failed to remove 'WindowsPE' section from unattend.xml"); + } else { + uprintf("Failed to remove 'WindowsPE' section from unattend.xml"); + } + safe_free(buf); } + // Remove the flags, since we accomplished the registry creation outside of unattend. + flags &= ~UNATTEND_SECUREBOOT_TPM_MINRAM; UpdateProgressWithInfoForce(OP_PATCH, MSG_325, 102, PATCH_PROGRESS_TOTAL); } @@ -969,7 +1312,7 @@ BOOL ApplyWindowsCustomization(char drive_letter, int flags) // If we have a windowsPE section, copy the answer files to the root of boot.wim as // Autounattend.xml. This also results in that file being automatically copied over // to %WINDIR%\Panther\unattend.xml for later passes processing. - if_not_assert(update_boot_wim) + if_assert_fails(update_boot_wim) goto out; wuc[wuc_index].op = WIMLIB_UPDATE_OP_ADD; wuc[wuc_index].add.fs_source_path = utf8_to_wchar(unattend_xml_path); @@ -999,51 +1342,72 @@ BOOL ApplyWindowsCustomization(char drive_letter, int flags) UpdateProgressWithInfoForce(OP_PATCH, MSG_325, 103, PATCH_PROGRESS_TOTAL); } - if (flags & UNATTEND_USE_MS2023_BOOTLOADERS) { - StrArray files; - char tmp_dir2[MAX_PATH], *rep; - const char* efi_ex_path = "Windows\\Boot\\EFI_EX"; - if_not_assert(update_boot_wim) + if ((flags & UNATTEND_USE_MS2023_BOOTLOADERS) && !(flags & UNATTEND_WINDOWS_TO_GO)) { + if_assert_fails(update_boot_wim) goto out; - if (GetTempDirNameU(temp_dir, APPLICATION_NAME, 0, tmp_dir[1]) == 0) { + if (GetTempDirNameU(temp_dir, APPLICATION_NAME, 0, tmp_path[1]) == 0) { uprintf("WARNING: Could not create temp dir for 2023 signed UEFI bootloaders"); goto out; } - if (wimlib_extract_pathsU(wim, wim_index, tmp_dir[1], &efi_ex_path, 1, - WIMLIB_EXTRACT_FLAG_NO_ACLS | WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE) != 0) { - uprintf("Could not find 2023 signed UEFI bootloaders - Ignoring option"); + // If we have a '_EX' in the tmp name, we will have an issue + if_assert_fails(strstr(tmp_path[1], "_EX") == NULL) + goto out; + // Extract the EFI_EX and Fonts_EX files + if (wimlib_extract_pathsU(wim, wim_index, tmp_path[1], &efi_ex_path, 1, + WIMLIB_EXTRACT_FLAG_NO_ACLS | WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE) != 0 || + wimlib_extract_pathsU(wim, wim_index, tmp_path[1], &fonts_ex_path, 1, + WIMLIB_EXTRACT_FLAG_NO_ACLS | WIMLIB_EXTRACT_FLAG_NO_PRESERVE_DIR_STRUCTURE) != 0) { + uprintf("Could not extract 2023 signed UEFI bootloaders - Ignoring option"); } else { - static_strcat(tmp_dir[1], "\\EFI"); - static_sprintf(tmp_dir2, "%s_EX", tmp_dir[1]); - MoveFileU(tmp_dir2, tmp_dir[1]); + StrArray files; + len = (uint32_t)strlen(tmp_path[1]); + tmp_dir_end = &tmp_path[1][len]; + + // Copy/override the Font files + static_strcat(tmp_path[1], "\\Fonts_EX"); StrArrayCreate(&files, 64); - ListDirectoryContent(&files, tmp_dir[1], LIST_DIR_TYPE_FILE | LIST_DIR_TYPE_RECURSIVE); + ListDirectoryContent(&files, tmp_path[1], LIST_DIR_TYPE_FILE); for (i = 0; i < (int)files.Index; i++) { - rep = remove_substr(files.String[i], "_EX"); - assert(rep != NULL); - if (!MoveFileU(files.String[i], rep)) - uprintf("WARNING: Could not rename '%s': %s", files.String[i], WindowsErrorString()); + static_sprintf(path, "%c:\\efi\\microsoft\\boot%s", drive_letter, &files.String[i][len]); + rep = remove_substr(path, "_EX"); + if (!CopyFileU(files.String[i], rep, FALSE)) + uprintf("WARNING: Could not copy '%s': %s", path, WindowsErrorString()); + else + num_replaced++; safe_free(rep); } StrArrayDestroy(&files); + // Replace /EFI/Boot/boot###.efi for (i = 1; i < ARRAYSIZE(efi_archname); i++) { - static_sprintf(tmp_dir2, "%c:\\efi\\boot\\boot%s.efi", drive_letter, efi_archname[i]); - if (!PathFileExistsA(tmp_dir2)) + *tmp_dir_end = '\0'; + static_strcat(tmp_path[1], "\\EFI_EX\\bootmgfw_EX.efi"); + static_sprintf(path, "%c:\\efi\\boot\\boot%s.efi", drive_letter, efi_archname[i]); + if (!PathFileExistsA(path)) continue; - static_sprintf(path, "%s\\bootmgfw.efi", tmp_dir[1]); - if (!CopyFileU(path, tmp_dir2, FALSE)) + if (!CopyFileU(tmp_path[1], path, FALSE)) uprintf("WARNING: Could not replace 'boot%s.efi': %s", efi_archname[i], WindowsErrorString()); + else + num_replaced++; break; } + // Replace /bootmgr.efi - static_sprintf(path, "%s\\bootmgr.efi", tmp_dir[1]); - if (!CopyFileU(path, tmp_dir2, FALSE)) + *tmp_dir_end = '\0'; + static_strcat(tmp_path[1], "\\EFI_EX\\bootmgr_EX.efi"); + static_sprintf(path, "%c:\\bootmgr.efi", drive_letter); + if (!CopyFileU(tmp_path[1], path, FALSE)) uprintf("WARNING: Could not replace 'bootmgr.efi': %s", WindowsErrorString()); - if (wimlib_add_treeU(wim, wim_index, tmp_dir[1], "Windows\\Boot\\EFI", 0)) - uprintf("WARNING: Could not replace EFI bootloader files with 'Windows UEFI CA 2023' versions"); else - uprintf("Replaced EFI bootloader files with 'Windows UEFI CA 2023' signed versions"); + num_replaced++; + if (num_replaced != 0) { + uprintf("Replaced %d EFI bootloader files with 'Windows UEFI CA 2023' compatible versions.", num_replaced); + uprintf("Note that to boot this media, you must have a system where the 'Windows UEFI CA 2023'"); + uprintf("Secure Boot certificate has been installed."); + uprintf("If needed, this can be accomplished using Mosby [https://github.com/pbatard/Mosby],"); + uprintf("which can be found, ready to use, in the UEFI Shell ISO images downloaded by Rufus."); + } + *tmp_dir_end = '\0'; // Else we won't be able to delete the temp dir } } @@ -1065,9 +1429,9 @@ out: uprintf("Error: Failed to update %s", boot_wim_path); r = FALSE; } - for (i = 0; i < ARRAYSIZE(tmp_dir); i++) - if (tmp_dir[i][0]) - SHDeleteDirectoryExU(NULL, tmp_dir[i], FOF_NO_UI); + for (i = 0; i < ARRAYSIZE(tmp_path); i++) + if (tmp_path[i][0]) + SHDeleteDirectoryExU(NULL, tmp_path[i], FOF_NO_UI); for (i = 0; i < wuc_index; i++) free(wuc[i].add.fs_source_path); wimlib_free(wim); diff --git a/src/xml.c b/src/xml.c index 4791788b..6c34e96d 100644 --- a/src/xml.c +++ b/src/xml.c @@ -42,8 +42,9 @@ #endif #define EZXML_NOMMAP -#define EZXML_WS "\t\r\n " // whitespace -#define EZXML_ERRL 256 // maximum error string length +#define EZXML_WS "\t\r\n " // whitespace +#define EZXML_ERRL 256 // maximum error string length +#define EZXML_MAXEXP (8 * MB) // max entity expansion (to prevent "billion laughs" blowup) #ifdef _MSC_VER #pragma warning(disable:6011) @@ -68,7 +69,7 @@ struct ezxml_root { // additional data for the root tag char *EZXML_NIL[] = { NULL }; // empty, null terminated array of strings // what realloc should be doing all along -static inline void* _realloc(void* ptr, unsigned int size) { +static inline void* _realloc(void* ptr, size_t size) { void* old_ptr = ptr; ptr = realloc(ptr, size); if (ptr == NULL) @@ -200,7 +201,8 @@ ezxml_t ezxml_err(ezxml_root_t root, char *s, const char *err, ...) char *ezxml_decode(char *s, char **ent, char t) { char *e, *r = s, *m = s; - long b, c, d, l; + ssize_t b, c, d; + size_t l, o, x = 0; for (; *s; s++) { // normalize line endings while (*s == '\r') { @@ -214,8 +216,8 @@ char *ezxml_decode(char *s, char **ent, char t) if (! *s) break; else if (t != 'c' && ! strncmp(s, "&#", 2)) { // character reference - if (s[2] == 'x') c = strtol(s + 3, &e, 16); // base 16 - else c = strtol(s + 2, &e, 10); // base 10 + if (s[2] == 'x') c = (ssize_t)strtoull(s + 3, &e, 16); // base 16 + else c = (ssize_t)strtoull(s + 2, &e, 10); // base 10 if (! c || *e != ';') { s++; continue; } // not a character ref if (c < 0x80) *(s++) = (char)c; // US-ASCII subset @@ -236,10 +238,14 @@ char *ezxml_decode(char *s, char **ent, char t) b += 2); // find entity in entity list if (ent[b++]) { // found a match - if ((c = (long)strlen(ent[b])) - 1 > (e = strchr(s, ';')) - s) { - l = (d = (long)(s - r)) + c + (long)(e ? strlen(e) : 0); // new length + c = strlen(ent[b]); + x += c; + if (x > EZXML_MAXEXP) break; + if ((e = strchr(s, ';')) && c - 1 > e - s) { + o = s - r; + l = o + c + (e ? strlen(e) : 0); // new length r = (r == m) ? strcpy(malloc(l), r) : _realloc(r, l); - e = strchr((s = r + d), ';'); // fix up pointers + e = strchr((s = r + o), ';'); // fix up pointers } if (!e) return r; @@ -254,7 +260,7 @@ char *ezxml_decode(char *s, char **ent, char t) if (t == '*') { // normalize spaces for non-cdata attributes for (s = r; *s; s++) { - if ((l = (long)strspn(s, " "))) memmove(s, s + l, strlen(s + l) + 1); + if ((l = strspn(s, " "))) memmove(s, s + l, strlen(s + l) + 1); while (*s && *s != ' ') s++; } if (--s >= r && *s == ' ') *s = '\0'; // trim any trailing space @@ -310,19 +316,27 @@ ezxml_t ezxml_close_tag(ezxml_root_t root, char *name, char *s) // checks for circular entity references, returns non-zero if no circular // references are found, zero otherwise -int ezxml_ent_ok(char *name, char *s, char **ent) +static int ezxml_ent_ok_r(char *name, char *s, char **ent, int depth) { int i; + if (depth <= 0) return 0; // treat deep nesting as circular + for (; ; s++) { while (*s && *s != '&') s++; // find next entity reference if (! *s) return 1; if (! strncmp(s + 1, name, strlen(name))) return 0; // circular ref. for (i = 0; ent[i] && strncmp(ent[i], s + 1, strlen(ent[i])); i += 2); - if (ent[i] && ! ezxml_ent_ok(name, ent[i + 1], ent)) return 0; + if (ent[i] && ! ezxml_ent_ok_r(name, ent[i + 1], ent, depth - 1)) + return 0; } } +int ezxml_ent_ok(char *name, char *s, char **ent) +{ + return ezxml_ent_ok_r(name, s, ent, 20); +} + // called when the parser finds a processing instruction void ezxml_proc_inst(ezxml_root_t root, char *s, size_t len) {