Merge remote-tracking branch 'origin/fix/comments-i18n' into release/v9.4.0

This commit is contained in:
Oleg Korshul
2026-04-06 12:05:13 +03:00
950 changed files with 7093 additions and 7095 deletions

View File

@ -272,7 +272,7 @@ const std::vector<std::wstring> TxtFile::readUnicodeLines(int CodePage)
return result;
}
const std::vector<std::string> TxtFile::readAnsiOrCodePage() // == readUtf8withoutPref также
const std::vector<std::string> TxtFile::readAnsiOrCodePage() // == readUtf8withoutPref as well
{
std::vector<std::string> result;
NSFile::CFileBinary file_binary;
@ -424,7 +424,7 @@ const std::vector<std::string> TxtFile::readUtf8()
return result;
}
bool TxtFile::writeAnsiOrCodePage(const std::vector<std::string>& content) // === writeUtf8withoutPref также
bool TxtFile::writeAnsiOrCodePage(const std::vector<std::string>& content) // === writeUtf8withoutPref as well
{
NSFile::CFileBinary file;
if (!file.CreateFileW(m_path)) return false;