mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 02:27:09 -07:00
Apply i18n translation only to built-in WebUI
This commit is contained in:
parent
ee38124db7
commit
082e6f8830
1 changed files with 9 additions and 6 deletions
|
@ -428,12 +428,15 @@ void WebApplication::sendFile(const Path &path)
|
||||||
const QDateTime lastModified = Utils::Fs::lastModified(path);
|
const QDateTime lastModified = Utils::Fs::lastModified(path);
|
||||||
|
|
||||||
// find translated file in cache
|
// find translated file in cache
|
||||||
const auto it = m_translatedFiles.constFind(path);
|
if (!m_isAltUIUsed)
|
||||||
if ((it != m_translatedFiles.constEnd()) && (lastModified <= it->lastModified))
|
|
||||||
{
|
{
|
||||||
print(it->data, it->mimeType);
|
if (const auto it = m_translatedFiles.constFind(path);
|
||||||
setHeader({Http::HEADER_CACHE_CONTROL, getCachingInterval(it->mimeType)});
|
(it != m_translatedFiles.constEnd()) && (lastModified <= it->lastModified))
|
||||||
return;
|
{
|
||||||
|
print(it->data, it->mimeType);
|
||||||
|
setHeader({Http::HEADER_CACHE_CONTROL, getCachingInterval(it->mimeType)});
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QFile file {path.data()};
|
QFile file {path.data()};
|
||||||
|
@ -454,7 +457,7 @@ void WebApplication::sendFile(const Path &path)
|
||||||
file.close();
|
file.close();
|
||||||
|
|
||||||
const QMimeType mimeType = QMimeDatabase().mimeTypeForFileNameAndData(path.data(), data);
|
const QMimeType mimeType = QMimeDatabase().mimeTypeForFileNameAndData(path.data(), data);
|
||||||
const bool isTranslatable = mimeType.inherits(u"text/plain"_qs);
|
const bool isTranslatable = !m_isAltUIUsed && mimeType.inherits(u"text/plain"_qs);
|
||||||
|
|
||||||
// Translate the file
|
// Translate the file
|
||||||
if (isTranslatable)
|
if (isTranslatable)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue