mirror of
https://github.com/ONLYOFFICE/desktop-apps.git
synced 2026-04-07 14:09:22 +08:00
Console error output for win xp
This commit is contained in:
@ -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',
|
||||
|
||||
@ -124,6 +124,7 @@ l10n.ru = {
|
||||
tplSearchResult: "Результаты для",
|
||||
tplNoResultsTitle: "Ничего не найдено",
|
||||
tplNoResultsText: "Результатов, соответствующих вашему запросу, не найдено",
|
||||
tplErrorTLS: "Windows XP не поддерживает актуальные версии протокола TLS 1.1 и 1.2, поэтому облачные шаблоны не могут использоваться в этой операционной системе.",
|
||||
fileName: "Имя файла",
|
||||
location: "Расположение",
|
||||
lastOpened: "Последнее открытие",
|
||||
|
||||
@ -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',
|
||||
|
||||
@ -374,6 +374,12 @@
|
||||
}
|
||||
}
|
||||
})
|
||||
.catch (function (err) {
|
||||
console.error(err);
|
||||
if (window.utils.isWinXp) {
|
||||
console.warn(utils.Lang.tplErrorTLS)
|
||||
}
|
||||
})
|
||||
};
|
||||
|
||||
const loadAllPages = function() {
|
||||
|
||||
Reference in New Issue
Block a user