Browse Source

[efi] update UEFI:NTFS to latest

* Also fix missing original translator for Korean and remove an unwanted warning message.
pull/2458/head
Pete Batard 1 year ago
parent
commit
d3f78c4e01
No known key found for this signature in database GPG Key ID: 38E0CF5E69EDD671
  1. 8
      res/loc/po/ko-KR.po
  2. 2
      res/loc/rufus.loc
  3. BIN
      res/uefi/uefi-ntfs.img
  4. 2
      src/format.c
  5. 10
      src/rufus.rc

8
res/loc/po/ko-KR.po

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: 3.22\n"
"Report-Msgid-Bugs-To: pete@akeo.ie\n"
"POT-Creation-Date: 2023-03-10 13:36+0000\n"
"PO-Revision-Date: 2023-03-10 13:40+0000\n"
"PO-Revision-Date: 2024-03-25 17:47+0000\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.2.2\n"
"X-Generator: Poedit 3.4.2\n"
#. • IDD_DIALOG → IDS_DRIVE_PROPERTIES_TXT
msgid "Drive Properties"
@ -237,7 +237,7 @@ msgstr ""
"검사 완료: %d개의 불량 블록을 찾았습니다\n"
" %d개 읽기 오류\n"
" %d개 쓰기 오류\n"
" %d개 손상 오류"
" %d개 손상 오류"
#. • MSG_012
#.
@ -1095,7 +1095,7 @@ msgstr "버전 %d.%d (빌드 %d)"
#. • MSG_176
msgid "English translation: Pete Batard <mailto:pete@akeo.ie>"
msgstr "한국어 번역:\\line• Uk-Jin Jang <mailto:doublestat@gmail.com>\\line• 비너스걸-VᴇɴᴜsGɪʀʟ♥ <mailto:venusgirl@outlook.com>"
msgstr "한국어 번역:\\line• 세상사는이야기-나두 <mailto:ho82.kr@gmail.com>\\line• Uk-Jin Jang <mailto:doublestat@gmail.com>\\line• 비너스걸-VᴇɴᴜsGɪʀʟ♥ <mailto:venusgirl@outlook.com>"
#. • MSG_177
msgid "Report bugs or request enhancements at:"

2
res/loc/rufus.loc

@ -7798,7 +7798,7 @@ t MSG_172 "유효하지 않은 다운로드 서명"
t MSG_173 "선택하려면 클릭..."
t MSG_174 "Rufus - 신뢰할 수 있는 USB 포맷 유틸리티"
t MSG_175 "버전 %d.%d (빌드 %d)"
t MSG_176 "한국어 번역:\\line• Uk-Jin Jang <mailto:doublestat@gmail.com>\\line• 비너스걸-VᴇɴᴜsGɪʀʟ♥ <mailto:venusgirl@outlook.com>"
t MSG_176 "한국어 번역:\\line• 세상사는이야기-나두 <mailto:ho82.kr@gmail.com>\\line• Uk-Jin Jang <mailto:doublestat@gmail.com>\\line• 비너스걸-VᴇɴᴜsGɪʀʟ♥ <mailto:venusgirl@outlook.com>"
t MSG_177 "버그 보고 또는 향상된 기능 요청:"
t MSG_178 "추가 저작권:"
t MSG_179 "업데이트 정책:"

BIN
res/uefi/uefi-ntfs.img

2
src/format.c

@ -1987,7 +1987,7 @@ DWORD WINAPI FormatThread(void* param)
if (!IS_ERROR(FormatStatus)) {
UpdateProgress(OP_EXTRACT_ZIP, 0.0f);
drive_name[2] = 0;
if (fs_type < FS_EXT2 && !ExtractZip(archive_path, drive_name) && !IS_ERROR(FormatStatus))
if (archive_path != NULL && fs_type < FS_EXT2 && !ExtractZip(archive_path, drive_name) && !IS_ERROR(FormatStatus))
uprintf("Warning: Could not copy additional files");
}

10
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.5.2116"
CAPTION "Rufus 4.5.2117"
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
BEGIN
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
@ -392,8 +392,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 4,5,2116,0
PRODUCTVERSION 4,5,2116,0
FILEVERSION 4,5,2117,0
PRODUCTVERSION 4,5,2117,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -411,13 +411,13 @@ BEGIN
VALUE "Comments", "https://rufus.ie"
VALUE "CompanyName", "Akeo Consulting"
VALUE "FileDescription", "Rufus"
VALUE "FileVersion", "4.5.2116"
VALUE "FileVersion", "4.5.2117"
VALUE "InternalName", "Rufus"
VALUE "LegalCopyright", "© 2011-2024 Pete Batard (GPL v3)"
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
VALUE "OriginalFilename", "rufus-4.5.exe"
VALUE "ProductName", "Rufus"
VALUE "ProductVersion", "4.5.2116"
VALUE "ProductVersion", "4.5.2117"
END
END
BLOCK "VarFileInfo"

Loading…
Cancel
Save