Console error output for win xp

This commit is contained in:
Dmitry-Ilyushechkin
2025-06-30 14:05:03 +03:00
parent 098e179a53
commit a251d99f3a
4 changed files with 9 additions and 0 deletions

View File

@ -125,6 +125,7 @@ l10n.en_GB = {
tplSearchResult: "Results for",
tplNoResultsTitle: "Nothing found",
tplNoResultsText: "No results matching your query could be found",
tplErrorTLS: "Windows XP doesn't support current TLS 1.1 and TLS 1.2 protocol versions, so Cloud Templates cannot be used on this operating system.",
colFileName: "File name",
colLocation: 'Location',
colLastOpened: 'Last opened',

View File

@ -124,6 +124,7 @@ l10n.ru = {
tplSearchResult: "Результаты для",
tplNoResultsTitle: "Ничего не найдено",
tplNoResultsText: "Результатов, соответствующих вашему запросу, не найдено",
tplErrorTLS: "Windows XP не поддерживает актуальные версии протокола TLS 1.1 и 1.2, поэтому облачные шаблоны не могут использоваться в этой операционной системе.",
fileName: "Имя файла",
location: "Расположение",
lastOpened: "Последнее открытие",

View File

@ -158,6 +158,7 @@ l10n.en = {
tplSearchResult: "Results for",
tplNoResultsTitle: "Nothing found",
tplNoResultsText: "No results matching your query could be found",
tplErrorTLS: "Windows XP doesn't support current TLS 1.1 and TLS 1.2 protocol versions, so Cloud Templates cannot be used on this operating system.",
colFileName: "File name",
colLocation: 'Location',
colLastOpened: 'Last opened',

View File

@ -374,6 +374,12 @@
}
}
})
.catch (function (err) {
console.error(err);
if (window.utils.isWinXp) {
console.warn(utils.Lang.tplErrorTLS)
}
})
};
const loadAllPages = function() {